msxsdk

package module
v1.0.11 Latest Latest
Warning

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

Go to latest
Published: Jan 11, 2022 License: MIT Imports: 22 Imported by: 0

README

Go API client for msxsdk

MSX SDK client.

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.9
  • Package version: 1.0.9
  • 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

Class Method HTTP request Description
AuditingGenericEventsApi CreateGenericEvent Post /auditing/api/v8/genericevents Create Generic Event
BillingCyclesApi AddBillingCycle Post /billing/api/v8/cycles Add a billing cycle.
BillingCyclesApi DeleteBillingCycle Delete /billing/api/v8/cycles/{id} Delete a billing cycle.
BillingCyclesApi GetBillingCycle Get /billing/api/v8/cycles/{id} Get a billing cycle.
BillingCyclesApi GetBillingCyclesPage Get /billing/api/v8/cycles Retrieve a page of billing cycles.
BillingCyclesApi ProcessBillingCycle Post /billing/api/v8/cycles/process Process a billing cycle.
BillingCyclesApi UpdateBillingCycle Put /billing/api/v8/cycles/{id} Update billing cycle for an event type and tenant.
BillingEventsApi GetCostSummary Get /billing/api/v8/events/costs Retrieve a summary for tenant cost.
BillingEventsApi GetEvent Get /billing/api/v8/events/{id} Get an Event.
BillingEventsApi GetEventsPage Get /billing/api/v8/events Retrieve a page of events for tenant.
BillingPricesApi AddPrice Post /billing/api/v8/prices Add price for tenant and event type.
BillingPricesApi DeletePrice Delete /billing/api/v8/prices/{id} Delete a price.
BillingPricesApi GetPrice Get /billing/api/v8/prices/{id} Get a price.
BillingPricesApi GetPricesPage Get /billing/api/v8/prices Retrieve a page of prices.
BillingPricesApi UpdatePrice Put /billing/api/v8/prices/{id} Update price for an event type and tenant.
DeviceTemplatesApi CreateDeviceTemplate Post /manage/api/v8/devicetemplates Creates a device template.
DeviceTemplatesApi CreateDeviceTemplateVersion Post /manage/api/v8/devicetemplates/versions Creates a new version of an existing 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 BatchAttachDeviceTemplates Post /manage/api/v8/devices/templates/attach Attaches one or more device templates to a batch of device instances.
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 PatchDevice Patch /manage/api/v8/devices/{id} Update a device.
DevicesApi RedeployDevice Post /manage/api/v8/devices/{id}/redeploy Dedeploys a device.
DevicesApi UpdateDevice Put /manage/api/v8/devices/{id} Update 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
IncidentChangeRequestsApi CreateChangeRequest Post /incident/api/v8/changerequests Create a change request.
IncidentChangeRequestsApi DeleteChangeRequest Delete /incident/api/v8/changerequests/{id} Deletes a change request.
IncidentChangeRequestsApi GetChangeRequest Get /incident/api/v8/changerequests/{id} Returns a change request.
IncidentChangeRequestsApi GetChangeRequestsPage Get /incident/api/v8/changerequests Returns a filtered list of change requests.
IncidentChangeRequestsApi UpdateChangeRequest Put /incident/api/v8/changerequests/{id} Updates a change request.
IncidentConfigurationsApi CreateServiceNowConfiguration Post /incident/api/v8/configurations Creates a ServiceNow configuration.
IncidentConfigurationsApi DeleteServiceNowConfiguration Delete /incident/api/v8/configurations/{id} Deletes a ServiceNow configuration.
IncidentConfigurationsApi GetConfiguration Get /incident/api/v1/config API to get configuration of encloud service.
IncidentConfigurationsApi GetServiceNowConfiguration Get /incident/api/v8/configurations/{id} Returns a ServiceNow configuration.
IncidentConfigurationsApi GetServiceNowConfigurationsPage Get /incident/api/v8/configurations Returns a ServiceNow configurations.
IncidentConfigurationsApi PatchConfiguration Patch /incident/api/v1/config API to patch configure encloud service
IncidentConfigurationsApi UpdateConfiguration Put /incident/api/v1/config API to configure encloud service.
IncidentsApi CancelIncident Patch /incident/api/v1/incidents/{id}/cancel Cancels an incident.
IncidentsApi CreateIncident Post /incident/api/v1/incidents Create a new Incident.
IncidentsApi DeleteIncident Delete /incident/api/v1/incidents/{id} Deletes an incident.
IncidentsApi GetIncident Get /incident/api/v1/incidents/{id} Get incident details.
IncidentsApi GetIncidents Get /incident/api/v1/incidents Get Incidents by filter.
IncidentsApi UpdateIncident Put /incident/api/v1/incidents/{id} Updates an incident.
LicensingAccountsApi GetUserAccountsList Get /licensing/api/v8/accounts/smart/list Returns a filtered page of smart accounts.
LicensingConfigurationsApi CreateSmartAccountConfiguration Post /licensing/api/v8/configuration Creates a smart account configuration.
LicensingConfigurationsApi GetSmartAccountConfiguration Get /licensing/api/v8/configuration Returns a smart account configuration.
LicensingConfigurationsApi UpdateSmartAccountConfiguration Put /licensing/api/v8/configuration Updates a smart account configuration.
LicensingLicensesApi GetLicensesList Get /licensing/api/v8/licensing/api/v8/licenses/list Returns a filtered list of licenses.
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 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 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 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.
RegistrationApi DeleteRegisteredProductVersion Delete /vulnerability/api/v8/vulnerabilities/registrations/{id} Delete a registration.
RegistrationApi GetRegisteredProductVersionPage Get /vulnerability/api/v8/vulnerabilities/registrations Returns a filtered page of registered products / versions.
RegistrationApi RegisterProductVersion Post /vulnerability/api/v8/vulnerabilities/registrations Register a product / verison combination for vulnerability inspection.
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.
ServicesApi UpdateService Put /manage/api/v8/services/{id} Updates a service.
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.
TemplateApplicationsApi ApplyTemplate Post /template/api/v8/templates/{id}/applications Applies a template to a target.
TemplateApplicationsApi DeleteTemplateApplication Delete /template/api/v8/templates/applications/{id} Deletes a template application.
TemplateApplicationsApi GetTemplateApplication Get /template/api/v8/templates/applications/{id} Gets a template application.
TemplateApplicationsApi GetTemplateApplicationHistory Get /template/api/v8/templates/applications/{id}/history Gets a template application history.
TemplateApplicationsApi GetTemplateApplicationsPage Get /template/api/v8/templates/applications Get a page of template applications.
TemplateApplicationsApi UpdateApplicationStatus Patch /template/api/v8/templates/applications/{id} Updates an application status.
TemplateAssignmentsApi BatchAssignTemplate Post /template/api/v8/templates/{id}/assignments/add Assigns a template to one or more tenants.
TemplateAssignmentsApi BatchUnassignTemplate Post /template/api/v8/templates/{id}/assignments/remove Unassigns a template from one or more tenants.
TemplateAssignmentsApi GetAssignment Get /template/api/v8/templates/assignments/{id} Gets a template assignment.
TemplateAssignmentsApi GetAssignmentHistory Get /template/api/v8/templates/assignments/{id}/history Gets a template assignment history.
TemplateAssignmentsApi GetTemplateAssignmentsPage Get /template/api/v8/templates/assignments Returns a page of template assignments.
TemplateAssignmentsApi UpdateAssignmentStatus Patch /template/api/v8/templates/assignments/{id} Updates a template assignment status.
TemplatesApi DeleteTemplate Delete /template/api/v8/templates/{id} Deletes a template.
TemplatesApi GetTemplate Get /template/api/v8/templates/{id} Returns a template by id.
TemplatesApi GetTemplateHistory Get /template/api/v8/templates/{id}/history Returns a template history by id.
TemplatesApi GetTemplatesPage Get /template/api/v8/templates Returns a page of templates.
TemplatesApi ImportTemplate Post /template/api/v8/templates Imports a template.
TemplatesApi UpdateTemplateStatus Patch /template/api/v8/templates/{id} Updates a template status.
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.
ValidationApi GetValidateProductVersionPage Get /vulnerability/api/v8/vulnerabilities/validations Returns a filtered page of validations.
ValidationApi ValidateProductVersion Post /vulnerability/api/v8/vulnerabilities/validations Validate registered product / verison combinations for vulnerabilities.
VulnerabilitiesApi GetIngestVulnerabilitiesTasksPage Get /vulnerability/api/v8/vulnerabilities/ingests Returns a filtered page of ingest tasks.
VulnerabilitiesApi GetVulnerabilitiesPage Get /vulnerability/api/v8/vulnerabilities Returns a filtered page of vulnerabilities.
VulnerabilitiesApi IngestVulnerabilities Post /vulnerability/api/v8/vulnerabilities/ingests Ingests a CVE JSON feed into the Vulnerability Service datastore.
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 {
	AuditingGenericEventsApi *AuditingGenericEventsApiService

	BillingCyclesApi *BillingCyclesApiService

	BillingEventsApi *BillingEventsApiService

	BillingPricesApi *BillingPricesApiService

	DeviceTemplatesApi *DeviceTemplatesApiService

	DevicesApi *DevicesApiService

	HealthApi *HealthApiService

	IncidentChangeRequestsApi *IncidentChangeRequestsApiService

	IncidentConfigurationsApi *IncidentConfigurationsApiService

	IncidentsApi *IncidentsApiService

	LicensingAccountsApi *LicensingAccountsApiService

	LicensingConfigurationsApi *LicensingConfigurationsApiService

	LicensingLicensesApi *LicensingLicensesApiService

	OffersApi *OffersApiService

	ProductsApi *ProductsApiService

	RegistrationApi *RegistrationApiService

	RolesApi *RolesApiService

	SecurityApi *SecurityApiService

	ServicesApi *ServicesApiService

	SitesApi *SitesApiService

	TemplateApplicationsApi *TemplateApplicationsApiService

	TemplateAssignmentsApi *TemplateAssignmentsApiService

	TemplatesApi *TemplatesApiService

	TenantsApi *TenantsApiService

	UsersApi *UsersApiService

	ValidationApi *ValidationApiService

	VulnerabilitiesApi *VulnerabilitiesApiService

	WorkflowCategoriesApi *WorkflowCategoriesApiService

	WorkflowEventsApi *WorkflowEventsApiService

	WorkflowInstancesApi *WorkflowInstancesApiService

	WorkflowSchemasApi *WorkflowSchemasApiService

	WorkflowTargetsApi *WorkflowTargetsApiService

	WorkflowsApi *WorkflowsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the MSX SDK API v1.0.9 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"`
	Expiry               NullableString `json:"expiry,omitempty"`
	Iat                  NullableString `json:"iat,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetExpiry added in v1.0.9

func (o *AccessToken) GetExpiry() string

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

func (*AccessToken) GetExpiryOk added in v1.0.9

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

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

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) GetIat added in v1.0.9

func (o *AccessToken) GetIat() string

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

func (*AccessToken) GetIatOk added in v1.0.9

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

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

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) HasExpiry added in v1.0.9

func (o *AccessToken) HasExpiry() bool

HasExpiry 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) HasIat added in v1.0.9

func (o *AccessToken) HasIat() bool

HasIat 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) SetExpiry added in v1.0.9

func (o *AccessToken) SetExpiry(v string)

SetExpiry gets a reference to the given NullableString and assigns it to the Expiry field.

func (*AccessToken) SetExpiryNil added in v1.0.9

func (o *AccessToken) SetExpiryNil()

SetExpiryNil sets the value for Expiry to be an explicit nil

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) SetIat added in v1.0.9

func (o *AccessToken) SetIat(v string)

SetIat gets a reference to the given NullableString and assigns it to the Iat field.

func (*AccessToken) SetIatNil added in v1.0.9

func (o *AccessToken) SetIatNil()

SetIatNil sets the value for Iat to be an explicit nil

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.

func (*AccessToken) UnmarshalJSON added in v1.0.5

func (o *AccessToken) UnmarshalJSON(bytes []byte) (err error)

func (*AccessToken) UnsetExpiry added in v1.0.9

func (o *AccessToken) UnsetExpiry()

UnsetExpiry ensures that no value is present for Expiry, not even an explicit nil

func (*AccessToken) UnsetIat added in v1.0.9

func (o *AccessToken) UnsetIat()

UnsetIat ensures that no value is present for Iat, not even an explicit nil

type ApiAddBillingCycleRequest added in v1.0.8

type ApiAddBillingCycleRequest struct {
	ApiService *BillingCyclesApiService
	// contains filtered or unexported fields
}

func (ApiAddBillingCycleRequest) BillingCycleCreate added in v1.0.8

func (r ApiAddBillingCycleRequest) BillingCycleCreate(billingCycleCreate BillingCycleCreate) ApiAddBillingCycleRequest

func (ApiAddBillingCycleRequest) Execute added in v1.0.8

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 ApiAddPriceRequest added in v1.0.8

type ApiAddPriceRequest struct {
	ApiService *BillingPricesApiService
	// contains filtered or unexported fields
}

func (ApiAddPriceRequest) BillingPriceCreate added in v1.0.8

func (r ApiAddPriceRequest) BillingPriceCreate(billingPriceCreate BillingPriceCreate) ApiAddPriceRequest

func (ApiAddPriceRequest) Execute added in v1.0.8

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 ApiApplyTemplateRequest added in v1.0.8

type ApiApplyTemplateRequest struct {
	ApiService *TemplateApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiApplyTemplateRequest) Execute added in v1.0.8

func (ApiApplyTemplateRequest) TemplateApplicationCreate added in v1.0.8

func (r ApiApplyTemplateRequest) TemplateApplicationCreate(templateApplicationCreate TemplateApplicationCreate) ApiApplyTemplateRequest

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 ApiBatchAssignTemplateRequest added in v1.0.8

type ApiBatchAssignTemplateRequest struct {
	ApiService *TemplateAssignmentsApiService
	// contains filtered or unexported fields
}

func (ApiBatchAssignTemplateRequest) Execute added in v1.0.8

func (ApiBatchAssignTemplateRequest) Inheritable added in v1.0.8

func (ApiBatchAssignTemplateRequest) RequestBody added in v1.0.8

type ApiBatchAttachDeviceTemplatesRequest added in v1.0.8

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

func (ApiBatchAttachDeviceTemplatesRequest) DeviceTemplateBatchAttachRequest added in v1.0.8

func (r ApiBatchAttachDeviceTemplatesRequest) DeviceTemplateBatchAttachRequest(deviceTemplateBatchAttachRequest DeviceTemplateBatchAttachRequest) ApiBatchAttachDeviceTemplatesRequest

func (ApiBatchAttachDeviceTemplatesRequest) Execute added in v1.0.8

type ApiBatchUnassignTemplateRequest added in v1.0.8

type ApiBatchUnassignTemplateRequest struct {
	ApiService *TemplateAssignmentsApiService
	// contains filtered or unexported fields
}

func (ApiBatchUnassignTemplateRequest) Execute added in v1.0.8

func (ApiBatchUnassignTemplateRequest) RequestBody added in v1.0.8

type ApiCancelIncidentRequest added in v1.0.8

type ApiCancelIncidentRequest struct {
	ApiService *IncidentsApiService
	// contains filtered or unexported fields
}

func (ApiCancelIncidentRequest) Execute added in v1.0.8

func (ApiCancelIncidentRequest) IncidentCancel added in v1.0.8

func (r ApiCancelIncidentRequest) IncidentCancel(incidentCancel IncidentCancel) ApiCancelIncidentRequest

type ApiCancelWorkflowInstanceRequest

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

func (ApiCancelWorkflowInstanceRequest) Execute

type ApiCreateChangeRequestRequest added in v1.0.8

type ApiCreateChangeRequestRequest struct {
	ApiService *IncidentChangeRequestsApiService
	// contains filtered or unexported fields
}

func (ApiCreateChangeRequestRequest) ChangeRequestCreate added in v1.0.8

func (r ApiCreateChangeRequestRequest) ChangeRequestCreate(changeRequestCreate ChangeRequestCreate) ApiCreateChangeRequestRequest

func (ApiCreateChangeRequestRequest) Execute added in v1.0.8

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 ApiCreateDeviceTemplateVersionRequest added in v1.0.5

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

func (ApiCreateDeviceTemplateVersionRequest) DeviceTemplateVersionCreate added in v1.0.5

func (r ApiCreateDeviceTemplateVersionRequest) DeviceTemplateVersionCreate(deviceTemplateVersionCreate DeviceTemplateVersionCreate) ApiCreateDeviceTemplateVersionRequest

func (ApiCreateDeviceTemplateVersionRequest) Execute added in v1.0.5

type ApiCreateGenericEventRequest added in v1.0.5

type ApiCreateGenericEventRequest struct {
	ApiService *AuditingGenericEventsApiService
	// contains filtered or unexported fields
}

func (ApiCreateGenericEventRequest) Execute added in v1.0.5

func (ApiCreateGenericEventRequest) GenericEventCreate added in v1.0.5

func (r ApiCreateGenericEventRequest) GenericEventCreate(genericEventCreate GenericEventCreate) ApiCreateGenericEventRequest

type ApiCreateIncidentRequest added in v1.0.8

type ApiCreateIncidentRequest struct {
	ApiService *IncidentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateIncidentRequest) Execute added in v1.0.8

func (ApiCreateIncidentRequest) IncidentCreate added in v1.0.8

func (r ApiCreateIncidentRequest) IncidentCreate(incidentCreate IncidentCreate) ApiCreateIncidentRequest

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 ApiCreateServiceNowConfigurationRequest added in v1.0.8

type ApiCreateServiceNowConfigurationRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiCreateServiceNowConfigurationRequest) Execute added in v1.0.8

func (ApiCreateServiceNowConfigurationRequest) ServiceNowConfigurationCreate added in v1.0.8

func (r ApiCreateServiceNowConfigurationRequest) ServiceNowConfigurationCreate(serviceNowConfigurationCreate ServiceNowConfigurationCreate) ApiCreateServiceNowConfigurationRequest

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 ApiCreateSmartAccountConfigurationRequest added in v1.0.8

type ApiCreateSmartAccountConfigurationRequest struct {
	ApiService *LicensingConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiCreateSmartAccountConfigurationRequest) Execute added in v1.0.8

func (ApiCreateSmartAccountConfigurationRequest) SmartAccountConfigurationCreate added in v1.0.8

func (r ApiCreateSmartAccountConfigurationRequest) SmartAccountConfigurationCreate(smartAccountConfigurationCreate SmartAccountConfigurationCreate) ApiCreateSmartAccountConfigurationRequest

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 ApiDeleteBillingCycleRequest added in v1.0.8

type ApiDeleteBillingCycleRequest struct {
	ApiService *BillingCyclesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteBillingCycleRequest) Execute added in v1.0.8

type ApiDeleteChangeRequestRequest added in v1.0.8

type ApiDeleteChangeRequestRequest struct {
	ApiService *IncidentChangeRequestsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteChangeRequestRequest) Execute added in v1.0.8

func (ApiDeleteChangeRequestRequest) TenantId added in v1.0.8

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 ApiDeleteIncidentRequest added in v1.0.8

type ApiDeleteIncidentRequest struct {
	ApiService *IncidentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteIncidentRequest) Execute added in v1.0.8

type ApiDeleteOfferRequest

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

func (ApiDeleteOfferRequest) Execute

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

type ApiDeletePriceRequest added in v1.0.8

type ApiDeletePriceRequest struct {
	ApiService *BillingPricesApiService
	// contains filtered or unexported fields
}

func (ApiDeletePriceRequest) Execute added in v1.0.8

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

type ApiDeleteProductRequest

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

func (ApiDeleteProductRequest) Execute

type ApiDeleteRegisteredProductVersionRequest added in v1.0.8

type ApiDeleteRegisteredProductVersionRequest struct {
	ApiService *RegistrationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteRegisteredProductVersionRequest) Execute added in v1.0.8

type ApiDeleteServiceNowConfigurationRequest added in v1.0.8

type ApiDeleteServiceNowConfigurationRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteServiceNowConfigurationRequest) Execute added in v1.0.8

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 ApiDeleteTemplateApplicationRequest added in v1.0.8

type ApiDeleteTemplateApplicationRequest struct {
	ApiService *TemplateApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTemplateApplicationRequest) Execute added in v1.0.8

type ApiDeleteTemplateRequest added in v1.0.8

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

func (ApiDeleteTemplateRequest) Execute added in v1.0.8

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

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

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 ApiGetAssignmentHistoryRequest added in v1.0.8

type ApiGetAssignmentHistoryRequest struct {
	ApiService *TemplateAssignmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetAssignmentHistoryRequest) Execute added in v1.0.8

type ApiGetAssignmentRequest added in v1.0.8

type ApiGetAssignmentRequest struct {
	ApiService *TemplateAssignmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetAssignmentRequest) Execute added in v1.0.8

type ApiGetBillingCycleRequest added in v1.0.8

type ApiGetBillingCycleRequest struct {
	ApiService *BillingCyclesApiService
	// contains filtered or unexported fields
}

func (ApiGetBillingCycleRequest) Execute added in v1.0.8

type ApiGetBillingCyclesPageRequest added in v1.0.8

type ApiGetBillingCyclesPageRequest struct {
	ApiService *BillingCyclesApiService
	// contains filtered or unexported fields
}

func (ApiGetBillingCyclesPageRequest) Execute added in v1.0.8

func (ApiGetBillingCyclesPageRequest) NextBilledOn added in v1.0.8

func (ApiGetBillingCyclesPageRequest) Page added in v1.0.8

func (ApiGetBillingCyclesPageRequest) PageSize added in v1.0.8

func (ApiGetBillingCyclesPageRequest) TenantId added in v1.0.8

type ApiGetChangeRequestRequest added in v1.0.8

type ApiGetChangeRequestRequest struct {
	ApiService *IncidentChangeRequestsApiService
	// contains filtered or unexported fields
}

func (ApiGetChangeRequestRequest) Execute added in v1.0.8

func (ApiGetChangeRequestRequest) TenantId added in v1.0.8

type ApiGetChangeRequestsPageRequest added in v1.0.8

type ApiGetChangeRequestsPageRequest struct {
	ApiService *IncidentChangeRequestsApiService
	// contains filtered or unexported fields
}

func (ApiGetChangeRequestsPageRequest) Execute added in v1.0.8

func (ApiGetChangeRequestsPageRequest) Page added in v1.0.8

func (ApiGetChangeRequestsPageRequest) PageSize added in v1.0.8

func (ApiGetChangeRequestsPageRequest) TenantId added in v1.0.8

type ApiGetConfigurationRequest added in v1.0.8

type ApiGetConfigurationRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiGetConfigurationRequest) Execute added in v1.0.8

type ApiGetCostSummaryRequest added in v1.0.8

type ApiGetCostSummaryRequest struct {
	ApiService *BillingEventsApiService
	// contains filtered or unexported fields
}

func (ApiGetCostSummaryRequest) Execute added in v1.0.8

func (ApiGetCostSummaryRequest) FromDate added in v1.0.8

func (ApiGetCostSummaryRequest) GroupBy added in v1.0.8

func (ApiGetCostSummaryRequest) TenantId added in v1.0.8

func (ApiGetCostSummaryRequest) ToDate added in v1.0.8

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) AllVersions added in v1.0.5

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) ComplianceStates added in v1.0.5

func (r ApiGetDevicesPageRequest) ComplianceStates(complianceStates []DeviceComplianceState) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) DeviceIds

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

func (ApiGetDevicesPageRequest) Execute

func (ApiGetDevicesPageRequest) IncludeSubtenants added in v1.0.5

func (r ApiGetDevicesPageRequest) IncludeSubtenants(includeSubtenants bool) ApiGetDevicesPageRequest

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

func (ApiGetDevicesPageRequest) VulnerabilityStates added in v1.0.5

func (r ApiGetDevicesPageRequest) VulnerabilityStates(vulnerabilityStates []DeviceVulnerabilityState) ApiGetDevicesPageRequest

type ApiGetEventRequest added in v1.0.8

type ApiGetEventRequest struct {
	ApiService *BillingEventsApiService
	// contains filtered or unexported fields
}

func (ApiGetEventRequest) Execute added in v1.0.8

type ApiGetEventsPageRequest added in v1.0.8

type ApiGetEventsPageRequest struct {
	ApiService *BillingEventsApiService
	// contains filtered or unexported fields
}

func (ApiGetEventsPageRequest) Execute added in v1.0.8

func (ApiGetEventsPageRequest) FromDate added in v1.0.8

func (ApiGetEventsPageRequest) Page added in v1.0.8

func (ApiGetEventsPageRequest) PageSize added in v1.0.8

func (ApiGetEventsPageRequest) Subtype added in v1.0.8

func (ApiGetEventsPageRequest) TenantId added in v1.0.8

func (ApiGetEventsPageRequest) ToDate added in v1.0.8

func (ApiGetEventsPageRequest) Type_ added in v1.0.8

type ApiGetIncidentRequest added in v1.0.8

type ApiGetIncidentRequest struct {
	ApiService *IncidentsApiService
	// contains filtered or unexported fields
}

func (ApiGetIncidentRequest) Execute added in v1.0.8

type ApiGetIncidentsRequest added in v1.0.8

type ApiGetIncidentsRequest struct {
	ApiService *IncidentsApiService
	// contains filtered or unexported fields
}

func (ApiGetIncidentsRequest) Category added in v1.0.8

func (ApiGetIncidentsRequest) Execute added in v1.0.8

func (ApiGetIncidentsRequest) ExternalId added in v1.0.8

func (r ApiGetIncidentsRequest) ExternalId(externalId string) ApiGetIncidentsRequest

func (ApiGetIncidentsRequest) Id added in v1.0.8

func (ApiGetIncidentsRequest) Page added in v1.0.8

func (ApiGetIncidentsRequest) PageSize added in v1.0.8

func (ApiGetIncidentsRequest) Priority added in v1.0.8

func (ApiGetIncidentsRequest) Severity added in v1.0.8

func (ApiGetIncidentsRequest) SortBy added in v1.0.8

func (ApiGetIncidentsRequest) SortOrder added in v1.0.8

func (r ApiGetIncidentsRequest) SortOrder(sortOrder string) ApiGetIncidentsRequest

func (ApiGetIncidentsRequest) State added in v1.0.8

func (ApiGetIncidentsRequest) Subcategory added in v1.0.8

func (r ApiGetIncidentsRequest) Subcategory(subcategory string) ApiGetIncidentsRequest

func (ApiGetIncidentsRequest) TenantId added in v1.0.8

type ApiGetIngestVulnerabilitiesTasksPageRequest added in v1.0.8

type ApiGetIngestVulnerabilitiesTasksPageRequest struct {
	ApiService *VulnerabilitiesApiService
	// contains filtered or unexported fields
}

func (ApiGetIngestVulnerabilitiesTasksPageRequest) EndDate added in v1.0.8

func (ApiGetIngestVulnerabilitiesTasksPageRequest) Execute added in v1.0.8

func (ApiGetIngestVulnerabilitiesTasksPageRequest) Page added in v1.0.8

func (ApiGetIngestVulnerabilitiesTasksPageRequest) PageSize added in v1.0.8

func (ApiGetIngestVulnerabilitiesTasksPageRequest) StartDate added in v1.0.8

type ApiGetLicensesListRequest added in v1.0.8

type ApiGetLicensesListRequest struct {
	ApiService *LicensingLicensesApiService
	// contains filtered or unexported fields
}

func (ApiGetLicensesListRequest) Execute added in v1.0.8

func (ApiGetLicensesListRequest) SmartAccountId added in v1.0.8

func (r ApiGetLicensesListRequest) SmartAccountId(smartAccountId string) ApiGetLicensesListRequest

func (ApiGetLicensesListRequest) VirtualAccountId added in v1.0.8

func (r ApiGetLicensesListRequest) VirtualAccountId(virtualAccountId string) ApiGetLicensesListRequest

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) TenantIds added in v1.0.2

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

type ApiGetPriceRequest added in v1.0.8

type ApiGetPriceRequest struct {
	ApiService *BillingPricesApiService
	// contains filtered or unexported fields
}

func (ApiGetPriceRequest) Execute added in v1.0.8

type ApiGetPricesPageRequest added in v1.0.8

type ApiGetPricesPageRequest struct {
	ApiService *BillingPricesApiService
	// contains filtered or unexported fields
}

func (ApiGetPricesPageRequest) Execute added in v1.0.8

func (ApiGetPricesPageRequest) Page added in v1.0.8

func (ApiGetPricesPageRequest) PageSize added in v1.0.8

func (ApiGetPricesPageRequest) Subtype added in v1.0.8

func (ApiGetPricesPageRequest) TenantId added in v1.0.8

func (ApiGetPricesPageRequest) Type_ added in v1.0.8

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 ApiGetRegisteredProductVersionPageRequest added in v1.0.8

type ApiGetRegisteredProductVersionPageRequest struct {
	ApiService *RegistrationApiService
	// contains filtered or unexported fields
}

func (ApiGetRegisteredProductVersionPageRequest) Execute added in v1.0.8

func (ApiGetRegisteredProductVersionPageRequest) Page added in v1.0.8

func (ApiGetRegisteredProductVersionPageRequest) PageSize added in v1.0.8

func (ApiGetRegisteredProductVersionPageRequest) Product added in v1.0.8

func (ApiGetRegisteredProductVersionPageRequest) Version added in v1.0.8

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 ApiGetServiceNowConfigurationRequest added in v1.0.8

type ApiGetServiceNowConfigurationRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiGetServiceNowConfigurationRequest) Execute added in v1.0.8

type ApiGetServiceNowConfigurationsPageRequest added in v1.0.8

type ApiGetServiceNowConfigurationsPageRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiGetServiceNowConfigurationsPageRequest) Domain added in v1.0.8

func (ApiGetServiceNowConfigurationsPageRequest) Execute added in v1.0.8

func (ApiGetServiceNowConfigurationsPageRequest) Page added in v1.0.8

func (ApiGetServiceNowConfigurationsPageRequest) PageSize added in v1.0.8

func (ApiGetServiceNowConfigurationsPageRequest) TenantId added in v1.0.8

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) IncludeSubtenants added in v1.0.5

func (r ApiGetSitesPageRequest) IncludeSubtenants(includeSubtenants bool) ApiGetSitesPageRequest

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 ApiGetSmartAccountConfigurationRequest added in v1.0.8

type ApiGetSmartAccountConfigurationRequest struct {
	ApiService *LicensingConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiGetSmartAccountConfigurationRequest) Execute added in v1.0.8

type ApiGetTemplateApplicationHistoryRequest added in v1.0.8

type ApiGetTemplateApplicationHistoryRequest struct {
	ApiService *TemplateApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetTemplateApplicationHistoryRequest) Execute added in v1.0.8

type ApiGetTemplateApplicationRequest added in v1.0.8

type ApiGetTemplateApplicationRequest struct {
	ApiService *TemplateApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetTemplateApplicationRequest) Execute added in v1.0.8

type ApiGetTemplateApplicationsPageRequest added in v1.0.8

type ApiGetTemplateApplicationsPageRequest struct {
	ApiService *TemplateApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetTemplateApplicationsPageRequest) CalculateTotalItems added in v1.0.8

func (r ApiGetTemplateApplicationsPageRequest) CalculateTotalItems(calculateTotalItems bool) ApiGetTemplateApplicationsPageRequest

func (ApiGetTemplateApplicationsPageRequest) Execute added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) Page added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) PageSize added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) SortBy added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) SortOrder added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) TargetId added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) TargetType added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) TemplateId added in v1.0.8

func (ApiGetTemplateApplicationsPageRequest) TenantId added in v1.0.8

type ApiGetTemplateAssignmentsPageRequest added in v1.0.8

type ApiGetTemplateAssignmentsPageRequest struct {
	ApiService *TemplateAssignmentsApiService
	// contains filtered or unexported fields
}

func (ApiGetTemplateAssignmentsPageRequest) CalculateTotalItems added in v1.0.8

func (r ApiGetTemplateAssignmentsPageRequest) CalculateTotalItems(calculateTotalItems bool) ApiGetTemplateAssignmentsPageRequest

func (ApiGetTemplateAssignmentsPageRequest) Execute added in v1.0.8

func (ApiGetTemplateAssignmentsPageRequest) Page added in v1.0.8

func (ApiGetTemplateAssignmentsPageRequest) PageSize added in v1.0.8

func (ApiGetTemplateAssignmentsPageRequest) TemplateId added in v1.0.8

func (ApiGetTemplateAssignmentsPageRequest) TenantId added in v1.0.8

type ApiGetTemplateHistoryRequest added in v1.0.8

type ApiGetTemplateHistoryRequest struct {
	ApiService *TemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetTemplateHistoryRequest) Execute added in v1.0.8

type ApiGetTemplateRequest added in v1.0.8

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

func (ApiGetTemplateRequest) Execute added in v1.0.8

type ApiGetTemplatesPageRequest added in v1.0.8

type ApiGetTemplatesPageRequest struct {
	ApiService *TemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetTemplatesPageRequest) CalculateTotalItems added in v1.0.8

func (r ApiGetTemplatesPageRequest) CalculateTotalItems(calculateTotalItems bool) ApiGetTemplatesPageRequest

func (ApiGetTemplatesPageRequest) Execute added in v1.0.8

func (ApiGetTemplatesPageRequest) ExternalId added in v1.0.8

func (ApiGetTemplatesPageRequest) Page added in v1.0.8

func (ApiGetTemplatesPageRequest) PageSize added in v1.0.8

func (ApiGetTemplatesPageRequest) Service added in v1.0.8

func (ApiGetTemplatesPageRequest) Tags added in v1.0.8

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 ApiGetUserAccountsListRequest added in v1.0.8

type ApiGetUserAccountsListRequest struct {
	ApiService *LicensingAccountsApiService
	// contains filtered or unexported fields
}

func (ApiGetUserAccountsListRequest) Domain added in v1.0.8

func (ApiGetUserAccountsListRequest) Execute added in v1.0.8

func (ApiGetUserAccountsListRequest) RoleName added in v1.0.8

func (ApiGetUserAccountsListRequest) Type_ added in v1.0.8

func (ApiGetUserAccountsListRequest) UserId added in v1.0.8

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 ApiGetValidateProductVersionPageRequest added in v1.0.8

type ApiGetValidateProductVersionPageRequest struct {
	ApiService *ValidationApiService
	// contains filtered or unexported fields
}

func (ApiGetValidateProductVersionPageRequest) EndDate added in v1.0.8

func (ApiGetValidateProductVersionPageRequest) Execute added in v1.0.8

func (ApiGetValidateProductVersionPageRequest) Page added in v1.0.8

func (ApiGetValidateProductVersionPageRequest) PageSize added in v1.0.8

func (ApiGetValidateProductVersionPageRequest) StartDate added in v1.0.8

type ApiGetVulnerabilitiesPageRequest added in v1.0.8

type ApiGetVulnerabilitiesPageRequest struct {
	ApiService *VulnerabilitiesApiService
	// contains filtered or unexported fields
}

func (ApiGetVulnerabilitiesPageRequest) CveId added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) EndDate added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Execute added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Page added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) PageSize added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Product added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Severity added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) SortBy added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) SortOrder added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) StartDate added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Vendor added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Version added in v1.0.8

func (ApiGetVulnerabilitiesPageRequest) Year added in v1.0.8

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 ApiImportTemplateRequest added in v1.0.8

type ApiImportTemplateRequest struct {
	ApiService *TemplatesApiService
	// contains filtered or unexported fields
}

func (ApiImportTemplateRequest) Execute added in v1.0.8

func (ApiImportTemplateRequest) TemplateCreate added in v1.0.8

func (r ApiImportTemplateRequest) TemplateCreate(templateCreate TemplateCreate) ApiImportTemplateRequest

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]interface{}) ApiImportWorkflowRequest

func (ApiImportWorkflowRequest) TenantIds

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

type ApiIngestVulnerabilitiesRequest added in v1.0.8

type ApiIngestVulnerabilitiesRequest struct {
	ApiService *VulnerabilitiesApiService
	// contains filtered or unexported fields
}

func (ApiIngestVulnerabilitiesRequest) Execute added in v1.0.8

func (ApiIngestVulnerabilitiesRequest) VulnerabilityFeed added in v1.0.8

type ApiPatchConfigurationRequest added in v1.0.8

type ApiPatchConfigurationRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiPatchConfigurationRequest) Execute added in v1.0.8

func (ApiPatchConfigurationRequest) IncidentConfigPatch added in v1.0.8

func (r ApiPatchConfigurationRequest) IncidentConfigPatch(incidentConfigPatch IncidentConfigPatch) ApiPatchConfigurationRequest

type ApiPatchDeviceRequest added in v1.0.5

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

func (ApiPatchDeviceRequest) DevicePatch added in v1.0.5

func (r ApiPatchDeviceRequest) DevicePatch(devicePatch DevicePatch) ApiPatchDeviceRequest

func (ApiPatchDeviceRequest) Execute added in v1.0.5

type ApiProcessBillingCycleRequest added in v1.0.8

type ApiProcessBillingCycleRequest struct {
	ApiService *BillingCyclesApiService
	// contains filtered or unexported fields
}

func (ApiProcessBillingCycleRequest) BillingCycleProcess added in v1.0.8

func (r ApiProcessBillingCycleRequest) BillingCycleProcess(billingCycleProcess BillingCycleProcess) ApiProcessBillingCycleRequest

func (ApiProcessBillingCycleRequest) Execute added in v1.0.8

type ApiRedeployDeviceRequest

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

func (ApiRedeployDeviceRequest) Execute

type ApiRegisterProductVersionRequest added in v1.0.8

type ApiRegisterProductVersionRequest struct {
	ApiService *RegistrationApiService
	// contains filtered or unexported fields
}

func (ApiRegisterProductVersionRequest) Execute added in v1.0.8

func (ApiRegisterProductVersionRequest) VulnerabilityRegistrationCreate added in v1.0.8

func (r ApiRegisterProductVersionRequest) VulnerabilityRegistrationCreate(vulnerabilityRegistrationCreate VulnerabilityRegistrationCreate) ApiRegisterProductVersionRequest

type ApiRemoveDevicesFromSiteRequest

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

func (ApiRemoveDevicesFromSiteRequest) Execute

func (ApiRemoveDevicesFromSiteRequest) 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 ApiUpdateApplicationStatusRequest added in v1.0.8

type ApiUpdateApplicationStatusRequest struct {
	ApiService *TemplateApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApplicationStatusRequest) Execute added in v1.0.8

func (ApiUpdateApplicationStatusRequest) TemplateApplicationStatusPatch added in v1.0.8

func (r ApiUpdateApplicationStatusRequest) TemplateApplicationStatusPatch(templateApplicationStatusPatch TemplateApplicationStatusPatch) ApiUpdateApplicationStatusRequest

type ApiUpdateAssignmentStatusRequest added in v1.0.8

type ApiUpdateAssignmentStatusRequest struct {
	ApiService *TemplateAssignmentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAssignmentStatusRequest) Execute added in v1.0.8

func (ApiUpdateAssignmentStatusRequest) TemplateAssignmentStatusPatch added in v1.0.8

func (r ApiUpdateAssignmentStatusRequest) TemplateAssignmentStatusPatch(templateAssignmentStatusPatch TemplateAssignmentStatusPatch) ApiUpdateAssignmentStatusRequest

type ApiUpdateBillingCycleRequest added in v1.0.8

type ApiUpdateBillingCycleRequest struct {
	ApiService *BillingCyclesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateBillingCycleRequest) BillingCycleUpdate added in v1.0.8

func (r ApiUpdateBillingCycleRequest) BillingCycleUpdate(billingCycleUpdate BillingCycleUpdate) ApiUpdateBillingCycleRequest

func (ApiUpdateBillingCycleRequest) Execute added in v1.0.8

type ApiUpdateChangeRequestRequest added in v1.0.8

type ApiUpdateChangeRequestRequest struct {
	ApiService *IncidentChangeRequestsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateChangeRequestRequest) ChangeRequestUpdate added in v1.0.8

func (r ApiUpdateChangeRequestRequest) ChangeRequestUpdate(changeRequestUpdate ChangeRequestUpdate) ApiUpdateChangeRequestRequest

func (ApiUpdateChangeRequestRequest) Execute added in v1.0.8

type ApiUpdateConfigurationRequest added in v1.0.8

type ApiUpdateConfigurationRequest struct {
	ApiService *IncidentConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateConfigurationRequest) Execute added in v1.0.8

func (ApiUpdateConfigurationRequest) IncidentConfigUpdate added in v1.0.8

func (r ApiUpdateConfigurationRequest) IncidentConfigUpdate(incidentConfigUpdate IncidentConfigUpdate) ApiUpdateConfigurationRequest

type ApiUpdateDeviceRequest added in v1.0.5

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

func (ApiUpdateDeviceRequest) DeviceUpdate added in v1.0.5

func (r ApiUpdateDeviceRequest) DeviceUpdate(deviceUpdate DeviceUpdate) ApiUpdateDeviceRequest

func (ApiUpdateDeviceRequest) Execute added in v1.0.5

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 ApiUpdateIncidentRequest added in v1.0.8

type ApiUpdateIncidentRequest struct {
	ApiService *IncidentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateIncidentRequest) Execute added in v1.0.8

func (ApiUpdateIncidentRequest) IncidentUpdate added in v1.0.8

func (r ApiUpdateIncidentRequest) IncidentUpdate(incidentUpdate IncidentUpdate) ApiUpdateIncidentRequest

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 ApiUpdatePriceRequest added in v1.0.8

type ApiUpdatePriceRequest struct {
	ApiService *BillingPricesApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePriceRequest) BillingPriceUpdate added in v1.0.8

func (r ApiUpdatePriceRequest) BillingPriceUpdate(billingPriceUpdate BillingPriceUpdate) ApiUpdatePriceRequest

func (ApiUpdatePriceRequest) Execute added in v1.0.8

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 ApiUpdateServiceRequest added in v1.0.5

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

func (ApiUpdateServiceRequest) Execute added in v1.0.5

func (ApiUpdateServiceRequest) ServiceUpdate added in v1.0.5

func (r ApiUpdateServiceRequest) ServiceUpdate(serviceUpdate ServiceUpdate) ApiUpdateServiceRequest

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 ApiUpdateSmartAccountConfigurationRequest added in v1.0.8

type ApiUpdateSmartAccountConfigurationRequest struct {
	ApiService *LicensingConfigurationsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSmartAccountConfigurationRequest) Execute added in v1.0.8

func (ApiUpdateSmartAccountConfigurationRequest) SmartAccountConfigurationUpdate added in v1.0.8

func (r ApiUpdateSmartAccountConfigurationRequest) SmartAccountConfigurationUpdate(smartAccountConfigurationUpdate SmartAccountConfigurationUpdate) ApiUpdateSmartAccountConfigurationRequest

type ApiUpdateTemplateStatusRequest added in v1.0.8

type ApiUpdateTemplateStatusRequest struct {
	ApiService *TemplatesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTemplateStatusRequest) Execute added in v1.0.8

func (ApiUpdateTemplateStatusRequest) TemplatePatch added in v1.0.8

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]interface{}) ApiUpdateWorkflowRequest

func (ApiUpdateWorkflowRequest) TenantIds added in v1.0.5

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

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 ApiValidateProductVersionRequest added in v1.0.8

type ApiValidateProductVersionRequest struct {
	ApiService *ValidationApiService
	// contains filtered or unexported fields
}

func (ApiValidateProductVersionRequest) Execute added in v1.0.8

type ApiValidateWorkflowRequest

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

func (ApiValidateWorkflowRequest) Execute

type AuditingGenericEventsApiService added in v1.0.5

type AuditingGenericEventsApiService service

AuditingGenericEventsApiService AuditingGenericEventsApi service

func (*AuditingGenericEventsApiService) CreateGenericEvent added in v1.0.5

* CreateGenericEvent Create Generic Event * Needs CREATE_AUDIT_GENERIC_EVENT_PERMISSION to create a Generic Event. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateGenericEventRequest

func (*AuditingGenericEventsApiService) CreateGenericEventExecute added in v1.0.5

* Execute executes the request * @return GenericEvent

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 BillingCostsReport added in v1.0.8

type BillingCostsReport struct {
	TenantId             *string        `json:"tenantId,omitempty"`
	Details              *[]CostSummary `json:"details,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingCostsReport struct for BillingCostsReport

func NewBillingCostsReport added in v1.0.8

func NewBillingCostsReport() *BillingCostsReport

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

func NewBillingCostsReportWithDefaults added in v1.0.8

func NewBillingCostsReportWithDefaults() *BillingCostsReport

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

func (*BillingCostsReport) GetDetails added in v1.0.8

func (o *BillingCostsReport) GetDetails() []CostSummary

GetDetails returns the Details field value if set, zero value otherwise.

func (*BillingCostsReport) GetDetailsOk added in v1.0.8

func (o *BillingCostsReport) GetDetailsOk() (*[]CostSummary, bool)

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

func (*BillingCostsReport) GetTenantId added in v1.0.8

func (o *BillingCostsReport) GetTenantId() string

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

func (*BillingCostsReport) GetTenantIdOk added in v1.0.8

func (o *BillingCostsReport) 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 (*BillingCostsReport) HasDetails added in v1.0.8

func (o *BillingCostsReport) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*BillingCostsReport) HasTenantId added in v1.0.8

func (o *BillingCostsReport) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (BillingCostsReport) MarshalJSON added in v1.0.8

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

func (*BillingCostsReport) SetDetails added in v1.0.8

func (o *BillingCostsReport) SetDetails(v []CostSummary)

SetDetails gets a reference to the given []CostSummary and assigns it to the Details field.

func (*BillingCostsReport) SetTenantId added in v1.0.8

func (o *BillingCostsReport) SetTenantId(v string)

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

func (*BillingCostsReport) UnmarshalJSON added in v1.0.8

func (o *BillingCostsReport) UnmarshalJSON(bytes []byte) (err error)

type BillingCycle added in v1.0.8

type BillingCycle struct {
	Id                   *string `json:"id,omitempty"`
	EventId              *string `json:"eventId,omitempty"`
	LastBilledOn         *string `json:"lastBilledOn,omitempty"`
	NextBilledOn         *string `json:"nextBilledOn,omitempty"`
	TenantId             *string `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingCycle struct for BillingCycle

func NewBillingCycle added in v1.0.8

func NewBillingCycle() *BillingCycle

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

func NewBillingCycleWithDefaults added in v1.0.8

func NewBillingCycleWithDefaults() *BillingCycle

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

func (*BillingCycle) GetEventId added in v1.0.8

func (o *BillingCycle) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*BillingCycle) GetEventIdOk added in v1.0.8

func (o *BillingCycle) GetEventIdOk() (*string, bool)

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

func (*BillingCycle) GetId added in v1.0.8

func (o *BillingCycle) GetId() string

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

func (*BillingCycle) GetIdOk added in v1.0.8

func (o *BillingCycle) 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 (*BillingCycle) GetLastBilledOn added in v1.0.8

func (o *BillingCycle) GetLastBilledOn() string

GetLastBilledOn returns the LastBilledOn field value if set, zero value otherwise.

func (*BillingCycle) GetLastBilledOnOk added in v1.0.8

func (o *BillingCycle) GetLastBilledOnOk() (*string, bool)

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

func (*BillingCycle) GetNextBilledOn added in v1.0.8

func (o *BillingCycle) GetNextBilledOn() string

GetNextBilledOn returns the NextBilledOn field value if set, zero value otherwise.

func (*BillingCycle) GetNextBilledOnOk added in v1.0.8

func (o *BillingCycle) GetNextBilledOnOk() (*string, bool)

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

func (*BillingCycle) GetTenantId added in v1.0.8

func (o *BillingCycle) GetTenantId() string

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

func (*BillingCycle) GetTenantIdOk added in v1.0.8

func (o *BillingCycle) 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 (*BillingCycle) HasEventId added in v1.0.8

func (o *BillingCycle) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*BillingCycle) HasId added in v1.0.8

func (o *BillingCycle) HasId() bool

HasId returns a boolean if a field has been set.

func (*BillingCycle) HasLastBilledOn added in v1.0.8

func (o *BillingCycle) HasLastBilledOn() bool

HasLastBilledOn returns a boolean if a field has been set.

func (*BillingCycle) HasNextBilledOn added in v1.0.8

func (o *BillingCycle) HasNextBilledOn() bool

HasNextBilledOn returns a boolean if a field has been set.

func (*BillingCycle) HasTenantId added in v1.0.8

func (o *BillingCycle) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (BillingCycle) MarshalJSON added in v1.0.8

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

func (*BillingCycle) SetEventId added in v1.0.8

func (o *BillingCycle) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (*BillingCycle) SetId added in v1.0.8

func (o *BillingCycle) SetId(v string)

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

func (*BillingCycle) SetLastBilledOn added in v1.0.8

func (o *BillingCycle) SetLastBilledOn(v string)

SetLastBilledOn gets a reference to the given string and assigns it to the LastBilledOn field.

func (*BillingCycle) SetNextBilledOn added in v1.0.8

func (o *BillingCycle) SetNextBilledOn(v string)

SetNextBilledOn gets a reference to the given string and assigns it to the NextBilledOn field.

func (*BillingCycle) SetTenantId added in v1.0.8

func (o *BillingCycle) SetTenantId(v string)

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

func (*BillingCycle) UnmarshalJSON added in v1.0.8

func (o *BillingCycle) UnmarshalJSON(bytes []byte) (err error)

type BillingCycleAllOf added in v1.0.8

type BillingCycleAllOf struct {
	Id                   *string `json:"id,omitempty"`
	EventId              *string `json:"eventId,omitempty"`
	LastBilledOn         *string `json:"lastBilledOn,omitempty"`
	NextBilledOn         *string `json:"nextBilledOn,omitempty"`
	TenantId             *string `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingCycleAllOf struct for BillingCycleAllOf

func NewBillingCycleAllOf added in v1.0.8

func NewBillingCycleAllOf() *BillingCycleAllOf

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

func NewBillingCycleAllOfWithDefaults added in v1.0.8

func NewBillingCycleAllOfWithDefaults() *BillingCycleAllOf

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

func (*BillingCycleAllOf) GetEventId added in v1.0.8

func (o *BillingCycleAllOf) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*BillingCycleAllOf) GetEventIdOk added in v1.0.8

func (o *BillingCycleAllOf) GetEventIdOk() (*string, bool)

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

func (*BillingCycleAllOf) GetId added in v1.0.8

func (o *BillingCycleAllOf) GetId() string

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

func (*BillingCycleAllOf) GetIdOk added in v1.0.8

func (o *BillingCycleAllOf) 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 (*BillingCycleAllOf) GetLastBilledOn added in v1.0.8

func (o *BillingCycleAllOf) GetLastBilledOn() string

GetLastBilledOn returns the LastBilledOn field value if set, zero value otherwise.

func (*BillingCycleAllOf) GetLastBilledOnOk added in v1.0.8

func (o *BillingCycleAllOf) GetLastBilledOnOk() (*string, bool)

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

func (*BillingCycleAllOf) GetNextBilledOn added in v1.0.8

func (o *BillingCycleAllOf) GetNextBilledOn() string

GetNextBilledOn returns the NextBilledOn field value if set, zero value otherwise.

func (*BillingCycleAllOf) GetNextBilledOnOk added in v1.0.8

func (o *BillingCycleAllOf) GetNextBilledOnOk() (*string, bool)

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

func (*BillingCycleAllOf) GetTenantId added in v1.0.8

func (o *BillingCycleAllOf) GetTenantId() string

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

func (*BillingCycleAllOf) GetTenantIdOk added in v1.0.8

func (o *BillingCycleAllOf) 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 (*BillingCycleAllOf) HasEventId added in v1.0.8

func (o *BillingCycleAllOf) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*BillingCycleAllOf) HasId added in v1.0.8

func (o *BillingCycleAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*BillingCycleAllOf) HasLastBilledOn added in v1.0.8

func (o *BillingCycleAllOf) HasLastBilledOn() bool

HasLastBilledOn returns a boolean if a field has been set.

func (*BillingCycleAllOf) HasNextBilledOn added in v1.0.8

func (o *BillingCycleAllOf) HasNextBilledOn() bool

HasNextBilledOn returns a boolean if a field has been set.

func (*BillingCycleAllOf) HasTenantId added in v1.0.8

func (o *BillingCycleAllOf) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (BillingCycleAllOf) MarshalJSON added in v1.0.8

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

func (*BillingCycleAllOf) SetEventId added in v1.0.8

func (o *BillingCycleAllOf) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (*BillingCycleAllOf) SetId added in v1.0.8

func (o *BillingCycleAllOf) SetId(v string)

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

func (*BillingCycleAllOf) SetLastBilledOn added in v1.0.8

func (o *BillingCycleAllOf) SetLastBilledOn(v string)

SetLastBilledOn gets a reference to the given string and assigns it to the LastBilledOn field.

func (*BillingCycleAllOf) SetNextBilledOn added in v1.0.8

func (o *BillingCycleAllOf) SetNextBilledOn(v string)

SetNextBilledOn gets a reference to the given string and assigns it to the NextBilledOn field.

func (*BillingCycleAllOf) SetTenantId added in v1.0.8

func (o *BillingCycleAllOf) SetTenantId(v string)

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

func (*BillingCycleAllOf) UnmarshalJSON added in v1.0.8

func (o *BillingCycleAllOf) UnmarshalJSON(bytes []byte) (err error)

type BillingCycleCreate added in v1.0.8

type BillingCycleCreate struct {
	EventId              string `json:"eventId"`
	LastBilledOn         string `json:"lastBilledOn"`
	NextBilledOn         string `json:"nextBilledOn"`
	TenantId             string `json:"tenantId"`
	AdditionalProperties map[string]interface{}
}

BillingCycleCreate struct for BillingCycleCreate

func NewBillingCycleCreate added in v1.0.8

func NewBillingCycleCreate(eventId string, lastBilledOn string, nextBilledOn string, tenantId string) *BillingCycleCreate

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

func NewBillingCycleCreateWithDefaults added in v1.0.8

func NewBillingCycleCreateWithDefaults() *BillingCycleCreate

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

func (*BillingCycleCreate) GetEventId added in v1.0.8

func (o *BillingCycleCreate) GetEventId() string

GetEventId returns the EventId field value

func (*BillingCycleCreate) GetEventIdOk added in v1.0.8

func (o *BillingCycleCreate) GetEventIdOk() (*string, bool)

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

func (*BillingCycleCreate) GetLastBilledOn added in v1.0.8

func (o *BillingCycleCreate) GetLastBilledOn() string

GetLastBilledOn returns the LastBilledOn field value

func (*BillingCycleCreate) GetLastBilledOnOk added in v1.0.8

func (o *BillingCycleCreate) GetLastBilledOnOk() (*string, bool)

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

func (*BillingCycleCreate) GetNextBilledOn added in v1.0.8

func (o *BillingCycleCreate) GetNextBilledOn() string

GetNextBilledOn returns the NextBilledOn field value

func (*BillingCycleCreate) GetNextBilledOnOk added in v1.0.8

func (o *BillingCycleCreate) GetNextBilledOnOk() (*string, bool)

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

func (*BillingCycleCreate) GetTenantId added in v1.0.8

func (o *BillingCycleCreate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*BillingCycleCreate) GetTenantIdOk added in v1.0.8

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

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

func (BillingCycleCreate) MarshalJSON added in v1.0.8

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

func (*BillingCycleCreate) SetEventId added in v1.0.8

func (o *BillingCycleCreate) SetEventId(v string)

SetEventId sets field value

func (*BillingCycleCreate) SetLastBilledOn added in v1.0.8

func (o *BillingCycleCreate) SetLastBilledOn(v string)

SetLastBilledOn sets field value

func (*BillingCycleCreate) SetNextBilledOn added in v1.0.8

func (o *BillingCycleCreate) SetNextBilledOn(v string)

SetNextBilledOn sets field value

func (*BillingCycleCreate) SetTenantId added in v1.0.8

func (o *BillingCycleCreate) SetTenantId(v string)

SetTenantId sets field value

func (*BillingCycleCreate) UnmarshalJSON added in v1.0.8

func (o *BillingCycleCreate) UnmarshalJSON(bytes []byte) (err error)

type BillingCycleProcess added in v1.0.8

type BillingCycleProcess struct {
	NextBilledOn         string `json:"nextBilledOn"`
	AdditionalProperties map[string]interface{}
}

BillingCycleProcess struct for BillingCycleProcess

func NewBillingCycleProcess added in v1.0.8

func NewBillingCycleProcess(nextBilledOn string) *BillingCycleProcess

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

func NewBillingCycleProcessWithDefaults added in v1.0.8

func NewBillingCycleProcessWithDefaults() *BillingCycleProcess

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

func (*BillingCycleProcess) GetNextBilledOn added in v1.0.8

func (o *BillingCycleProcess) GetNextBilledOn() string

GetNextBilledOn returns the NextBilledOn field value

func (*BillingCycleProcess) GetNextBilledOnOk added in v1.0.8

func (o *BillingCycleProcess) GetNextBilledOnOk() (*string, bool)

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

func (BillingCycleProcess) MarshalJSON added in v1.0.8

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

func (*BillingCycleProcess) SetNextBilledOn added in v1.0.8

func (o *BillingCycleProcess) SetNextBilledOn(v string)

SetNextBilledOn sets field value

func (*BillingCycleProcess) UnmarshalJSON added in v1.0.8

func (o *BillingCycleProcess) UnmarshalJSON(bytes []byte) (err error)

type BillingCycleProcessAccepted added in v1.0.8

type BillingCycleProcessAccepted struct {
	Id                   NullableString `json:"id,omitempty"`
	NextBilledOn         time.Time      `json:"nextBilledOn"`
	CreatedOn            *time.Time     `json:"createdOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingCycleProcessAccepted struct for BillingCycleProcessAccepted

func NewBillingCycleProcessAccepted added in v1.0.8

func NewBillingCycleProcessAccepted(nextBilledOn time.Time) *BillingCycleProcessAccepted

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

func NewBillingCycleProcessAcceptedWithDefaults added in v1.0.8

func NewBillingCycleProcessAcceptedWithDefaults() *BillingCycleProcessAccepted

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

func (*BillingCycleProcessAccepted) GetCreatedOn added in v1.0.8

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

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

func (*BillingCycleProcessAccepted) GetCreatedOnOk added in v1.0.8

func (o *BillingCycleProcessAccepted) 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 (*BillingCycleProcessAccepted) GetId added in v1.0.8

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

func (*BillingCycleProcessAccepted) GetIdOk added in v1.0.8

func (o *BillingCycleProcessAccepted) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingCycleProcessAccepted) GetNextBilledOn added in v1.0.8

func (o *BillingCycleProcessAccepted) GetNextBilledOn() time.Time

GetNextBilledOn returns the NextBilledOn field value

func (*BillingCycleProcessAccepted) GetNextBilledOnOk added in v1.0.8

func (o *BillingCycleProcessAccepted) GetNextBilledOnOk() (*time.Time, bool)

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

func (*BillingCycleProcessAccepted) HasCreatedOn added in v1.0.8

func (o *BillingCycleProcessAccepted) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*BillingCycleProcessAccepted) HasId added in v1.0.8

func (o *BillingCycleProcessAccepted) HasId() bool

HasId returns a boolean if a field has been set.

func (BillingCycleProcessAccepted) MarshalJSON added in v1.0.8

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

func (*BillingCycleProcessAccepted) SetCreatedOn added in v1.0.8

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

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

func (*BillingCycleProcessAccepted) SetId added in v1.0.8

func (o *BillingCycleProcessAccepted) SetId(v string)

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

func (*BillingCycleProcessAccepted) SetIdNil added in v1.0.8

func (o *BillingCycleProcessAccepted) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*BillingCycleProcessAccepted) SetNextBilledOn added in v1.0.8

func (o *BillingCycleProcessAccepted) SetNextBilledOn(v time.Time)

SetNextBilledOn sets field value

func (*BillingCycleProcessAccepted) UnmarshalJSON added in v1.0.8

func (o *BillingCycleProcessAccepted) UnmarshalJSON(bytes []byte) (err error)

func (*BillingCycleProcessAccepted) UnsetId added in v1.0.8

func (o *BillingCycleProcessAccepted) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type BillingCycleUpdate added in v1.0.8

type BillingCycleUpdate struct {
	EventId              string `json:"eventId"`
	LastBilledOn         string `json:"lastBilledOn"`
	NextBilledOn         string `json:"nextBilledOn"`
	TenantId             string `json:"tenantId"`
	AdditionalProperties map[string]interface{}
}

BillingCycleUpdate struct for BillingCycleUpdate

func NewBillingCycleUpdate added in v1.0.8

func NewBillingCycleUpdate(eventId string, lastBilledOn string, nextBilledOn string, tenantId string) *BillingCycleUpdate

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

func NewBillingCycleUpdateWithDefaults added in v1.0.8

func NewBillingCycleUpdateWithDefaults() *BillingCycleUpdate

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

func (*BillingCycleUpdate) GetEventId added in v1.0.8

func (o *BillingCycleUpdate) GetEventId() string

GetEventId returns the EventId field value

func (*BillingCycleUpdate) GetEventIdOk added in v1.0.8

func (o *BillingCycleUpdate) GetEventIdOk() (*string, bool)

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

func (*BillingCycleUpdate) GetLastBilledOn added in v1.0.8

func (o *BillingCycleUpdate) GetLastBilledOn() string

GetLastBilledOn returns the LastBilledOn field value

func (*BillingCycleUpdate) GetLastBilledOnOk added in v1.0.8

func (o *BillingCycleUpdate) GetLastBilledOnOk() (*string, bool)

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

func (*BillingCycleUpdate) GetNextBilledOn added in v1.0.8

func (o *BillingCycleUpdate) GetNextBilledOn() string

GetNextBilledOn returns the NextBilledOn field value

func (*BillingCycleUpdate) GetNextBilledOnOk added in v1.0.8

func (o *BillingCycleUpdate) GetNextBilledOnOk() (*string, bool)

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

func (*BillingCycleUpdate) GetTenantId added in v1.0.8

func (o *BillingCycleUpdate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*BillingCycleUpdate) GetTenantIdOk added in v1.0.8

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

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

func (BillingCycleUpdate) MarshalJSON added in v1.0.8

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

func (*BillingCycleUpdate) SetEventId added in v1.0.8

func (o *BillingCycleUpdate) SetEventId(v string)

SetEventId sets field value

func (*BillingCycleUpdate) SetLastBilledOn added in v1.0.8

func (o *BillingCycleUpdate) SetLastBilledOn(v string)

SetLastBilledOn sets field value

func (*BillingCycleUpdate) SetNextBilledOn added in v1.0.8

func (o *BillingCycleUpdate) SetNextBilledOn(v string)

SetNextBilledOn sets field value

func (*BillingCycleUpdate) SetTenantId added in v1.0.8

func (o *BillingCycleUpdate) SetTenantId(v string)

SetTenantId sets field value

func (*BillingCycleUpdate) UnmarshalJSON added in v1.0.8

func (o *BillingCycleUpdate) UnmarshalJSON(bytes []byte) (err error)

type BillingCyclesApiService added in v1.0.8

type BillingCyclesApiService service

BillingCyclesApiService BillingCyclesApi service

func (*BillingCyclesApiService) AddBillingCycle added in v1.0.8

* AddBillingCycle Add a billing cycle. * Needs MANAGE_BILLINGCYCLE permission to allow for the creation a billing cycle. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiAddBillingCycleRequest

func (*BillingCyclesApiService) AddBillingCycleExecute added in v1.0.8

* Execute executes the request * @return BillingCycle

func (*BillingCyclesApiService) DeleteBillingCycle added in v1.0.8

* DeleteBillingCycle Delete a billing cycle. * Needs MANAGE_BILLINGCYCLE permission to delete a billing cycle. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteBillingCycleRequest

func (*BillingCyclesApiService) DeleteBillingCycleExecute added in v1.0.8

func (a *BillingCyclesApiService) DeleteBillingCycleExecute(r ApiDeleteBillingCycleRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*BillingCyclesApiService) GetBillingCycle added in v1.0.8

* GetBillingCycle Get a billing cycle. * Needs VIEW_BILLINGCYCLE permission to get billing cycle detail. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetBillingCycleRequest

func (*BillingCyclesApiService) GetBillingCycleExecute added in v1.0.8

* Execute executes the request * @return BillingCycle

func (*BillingCyclesApiService) GetBillingCyclesPage added in v1.0.8

* GetBillingCyclesPage Retrieve a page of billing cycles. * Needs VIEW_BILLINGCYCLE permission to view the billing cycle details. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetBillingCyclesPageRequest

func (*BillingCyclesApiService) GetBillingCyclesPageExecute added in v1.0.8

* Execute executes the request * @return BillingCyclesPage

func (*BillingCyclesApiService) ProcessBillingCycle added in v1.0.8

* ProcessBillingCycle Process a billing cycle. * Needs MANAGE_BILLINGCYCLE permission to allow for the creation a billing cycle. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiProcessBillingCycleRequest

func (*BillingCyclesApiService) ProcessBillingCycleExecute added in v1.0.8

* Execute executes the request * @return BillingCycleProcessAccepted

func (*BillingCyclesApiService) UpdateBillingCycle added in v1.0.8

* UpdateBillingCycle Update billing cycle for an event type and tenant. * Needs MANAGE_BILLINGCYCLE permission to update a billing cycle detail. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateBillingCycleRequest

func (*BillingCyclesApiService) UpdateBillingCycleExecute added in v1.0.8

* Execute executes the request * @return BillingCycle

type BillingCyclesPage added in v1.0.8

type BillingCyclesPage struct {
	Page                 *int32          `json:"page,omitempty"`
	PageSize             *int32          `json:"pageSize,omitempty"`
	TotalItems           NullableInt64   `json:"totalItems,omitempty"`
	HasNext              NullableBool    `json:"hasNext,omitempty"`
	HasPrevious          NullableBool    `json:"hasPrevious,omitempty"`
	SortBy               NullableString  `json:"sortBy,omitempty"`
	SortOrder            NullableString  `json:"sortOrder,omitempty"`
	Contents             *[]BillingCycle `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingCyclesPage struct for BillingCyclesPage

func NewBillingCyclesPage added in v1.0.8

func NewBillingCyclesPage() *BillingCyclesPage

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

func NewBillingCyclesPageWithDefaults added in v1.0.8

func NewBillingCyclesPageWithDefaults() *BillingCyclesPage

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

func (*BillingCyclesPage) GetContents added in v1.0.8

func (o *BillingCyclesPage) GetContents() []BillingCycle

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

func (*BillingCyclesPage) GetContentsOk added in v1.0.8

func (o *BillingCyclesPage) GetContentsOk() (*[]BillingCycle, 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 (*BillingCyclesPage) GetHasNext added in v1.0.8

func (o *BillingCyclesPage) GetHasNext() bool

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

func (*BillingCyclesPage) GetHasNextOk added in v1.0.8

func (o *BillingCyclesPage) 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 (*BillingCyclesPage) GetHasPrevious added in v1.0.8

func (o *BillingCyclesPage) GetHasPrevious() bool

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

func (*BillingCyclesPage) GetHasPreviousOk added in v1.0.8

func (o *BillingCyclesPage) 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 (*BillingCyclesPage) GetPage added in v1.0.8

func (o *BillingCyclesPage) GetPage() int32

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

func (*BillingCyclesPage) GetPageOk added in v1.0.8

func (o *BillingCyclesPage) 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 (*BillingCyclesPage) GetPageSize added in v1.0.8

func (o *BillingCyclesPage) GetPageSize() int32

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

func (*BillingCyclesPage) GetPageSizeOk added in v1.0.8

func (o *BillingCyclesPage) 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 (*BillingCyclesPage) GetSortBy added in v1.0.8

func (o *BillingCyclesPage) GetSortBy() string

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

func (*BillingCyclesPage) GetSortByOk added in v1.0.8

func (o *BillingCyclesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingCyclesPage) GetSortOrder added in v1.0.8

func (o *BillingCyclesPage) GetSortOrder() string

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

func (*BillingCyclesPage) GetSortOrderOk added in v1.0.8

func (o *BillingCyclesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingCyclesPage) GetTotalItems added in v1.0.8

func (o *BillingCyclesPage) GetTotalItems() int64

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

func (*BillingCyclesPage) GetTotalItemsOk added in v1.0.8

func (o *BillingCyclesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingCyclesPage) HasContents added in v1.0.8

func (o *BillingCyclesPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*BillingCyclesPage) HasHasNext added in v1.0.8

func (o *BillingCyclesPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*BillingCyclesPage) HasHasPrevious added in v1.0.8

func (o *BillingCyclesPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*BillingCyclesPage) HasPage added in v1.0.8

func (o *BillingCyclesPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*BillingCyclesPage) HasPageSize added in v1.0.8

func (o *BillingCyclesPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*BillingCyclesPage) HasSortBy added in v1.0.8

func (o *BillingCyclesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*BillingCyclesPage) HasSortOrder added in v1.0.8

func (o *BillingCyclesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*BillingCyclesPage) HasTotalItems added in v1.0.8

func (o *BillingCyclesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (BillingCyclesPage) MarshalJSON added in v1.0.8

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

func (*BillingCyclesPage) SetContents added in v1.0.8

func (o *BillingCyclesPage) SetContents(v []BillingCycle)

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

func (*BillingCyclesPage) SetHasNext added in v1.0.8

func (o *BillingCyclesPage) SetHasNext(v bool)

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

func (*BillingCyclesPage) SetHasNextNil added in v1.0.8

func (o *BillingCyclesPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*BillingCyclesPage) SetHasPrevious added in v1.0.8

func (o *BillingCyclesPage) SetHasPrevious(v bool)

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

func (*BillingCyclesPage) SetHasPreviousNil added in v1.0.8

func (o *BillingCyclesPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*BillingCyclesPage) SetPage added in v1.0.8

func (o *BillingCyclesPage) SetPage(v int32)

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

func (*BillingCyclesPage) SetPageSize added in v1.0.8

func (o *BillingCyclesPage) SetPageSize(v int32)

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

func (*BillingCyclesPage) SetSortBy added in v1.0.8

func (o *BillingCyclesPage) SetSortBy(v string)

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

func (*BillingCyclesPage) SetSortByNil added in v1.0.8

func (o *BillingCyclesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*BillingCyclesPage) SetSortOrder added in v1.0.8

func (o *BillingCyclesPage) SetSortOrder(v string)

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

func (*BillingCyclesPage) SetSortOrderNil added in v1.0.8

func (o *BillingCyclesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*BillingCyclesPage) SetTotalItems added in v1.0.8

func (o *BillingCyclesPage) SetTotalItems(v int64)

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

func (*BillingCyclesPage) SetTotalItemsNil added in v1.0.8

func (o *BillingCyclesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*BillingCyclesPage) UnmarshalJSON added in v1.0.8

func (o *BillingCyclesPage) UnmarshalJSON(bytes []byte) (err error)

func (*BillingCyclesPage) UnsetHasNext added in v1.0.8

func (o *BillingCyclesPage) UnsetHasNext()

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

func (*BillingCyclesPage) UnsetHasPrevious added in v1.0.8

func (o *BillingCyclesPage) UnsetHasPrevious()

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

func (*BillingCyclesPage) UnsetSortBy added in v1.0.8

func (o *BillingCyclesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*BillingCyclesPage) UnsetSortOrder added in v1.0.8

func (o *BillingCyclesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*BillingCyclesPage) UnsetTotalItems added in v1.0.8

func (o *BillingCyclesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type BillingCyclesPageAllOf added in v1.0.8

type BillingCyclesPageAllOf struct {
	Contents             *[]BillingCycle `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingCyclesPageAllOf struct for BillingCyclesPageAllOf

func NewBillingCyclesPageAllOf added in v1.0.8

func NewBillingCyclesPageAllOf() *BillingCyclesPageAllOf

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

func NewBillingCyclesPageAllOfWithDefaults added in v1.0.8

func NewBillingCyclesPageAllOfWithDefaults() *BillingCyclesPageAllOf

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

func (*BillingCyclesPageAllOf) GetContents added in v1.0.8

func (o *BillingCyclesPageAllOf) GetContents() []BillingCycle

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

func (*BillingCyclesPageAllOf) GetContentsOk added in v1.0.8

func (o *BillingCyclesPageAllOf) GetContentsOk() (*[]BillingCycle, 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 (*BillingCyclesPageAllOf) HasContents added in v1.0.8

func (o *BillingCyclesPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (BillingCyclesPageAllOf) MarshalJSON added in v1.0.8

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

func (*BillingCyclesPageAllOf) SetContents added in v1.0.8

func (o *BillingCyclesPageAllOf) SetContents(v []BillingCycle)

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

func (*BillingCyclesPageAllOf) UnmarshalJSON added in v1.0.8

func (o *BillingCyclesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type BillingEvent added in v1.0.8

type BillingEvent struct {
	Id                   *string                `json:"id,omitempty"`
	ModifiedOn           *time.Time             `json:"modifiedOn,omitempty"`
	CreatedOn            *time.Time             `json:"createdOn,omitempty"`
	Name                 *string                `json:"name,omitempty"`
	Description          *string                `json:"description,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	Subtype              *string                `json:"subtype,omitempty"`
	Severity             *string                `json:"severity,omitempty"`
	Action               *string                `json:"action,omitempty"`
	Details              map[string]interface{} `json:"details,omitempty"`
	Price                *float64               `json:"price,omitempty"`
	TenantId             *string                `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingEvent struct for BillingEvent

func NewBillingEvent added in v1.0.8

func NewBillingEvent() *BillingEvent

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

func NewBillingEventWithDefaults added in v1.0.8

func NewBillingEventWithDefaults() *BillingEvent

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

func (*BillingEvent) GetAction added in v1.0.8

func (o *BillingEvent) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*BillingEvent) GetActionOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetCreatedOn added in v1.0.8

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

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

func (*BillingEvent) GetCreatedOnOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetDescription added in v1.0.8

func (o *BillingEvent) GetDescription() string

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

func (*BillingEvent) GetDescriptionOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetDetails added in v1.0.8

func (o *BillingEvent) GetDetails() map[string]interface{}

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

func (*BillingEvent) GetDetailsOk added in v1.0.8

func (o *BillingEvent) GetDetailsOk() (*map[string]interface{}, bool)

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

func (*BillingEvent) GetId added in v1.0.8

func (o *BillingEvent) GetId() string

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

func (*BillingEvent) GetIdOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetModifiedOn added in v1.0.8

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

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

func (*BillingEvent) GetModifiedOnOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetName added in v1.0.8

func (o *BillingEvent) GetName() string

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

func (*BillingEvent) GetNameOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetPrice added in v1.0.8

func (o *BillingEvent) GetPrice() float64

GetPrice returns the Price field value if set, zero value otherwise.

func (*BillingEvent) GetPriceOk added in v1.0.8

func (o *BillingEvent) GetPriceOk() (*float64, 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 (*BillingEvent) GetSeverity added in v1.0.8

func (o *BillingEvent) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*BillingEvent) GetSeverityOk added in v1.0.8

func (o *BillingEvent) GetSeverityOk() (*string, bool)

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

func (*BillingEvent) GetSubtype added in v1.0.8

func (o *BillingEvent) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*BillingEvent) GetSubtypeOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetTenantId added in v1.0.8

func (o *BillingEvent) GetTenantId() string

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

func (*BillingEvent) GetTenantIdOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) GetType added in v1.0.8

func (o *BillingEvent) GetType() string

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

func (*BillingEvent) GetTypeOk added in v1.0.8

func (o *BillingEvent) 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 (*BillingEvent) HasAction added in v1.0.8

func (o *BillingEvent) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*BillingEvent) HasCreatedOn added in v1.0.8

func (o *BillingEvent) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*BillingEvent) HasDescription added in v1.0.8

func (o *BillingEvent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BillingEvent) HasDetails added in v1.0.8

func (o *BillingEvent) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*BillingEvent) HasId added in v1.0.8

func (o *BillingEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*BillingEvent) HasModifiedOn added in v1.0.8

func (o *BillingEvent) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*BillingEvent) HasName added in v1.0.8

func (o *BillingEvent) HasName() bool

HasName returns a boolean if a field has been set.

func (*BillingEvent) HasPrice added in v1.0.8

func (o *BillingEvent) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*BillingEvent) HasSeverity added in v1.0.8

func (o *BillingEvent) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*BillingEvent) HasSubtype added in v1.0.8

func (o *BillingEvent) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*BillingEvent) HasTenantId added in v1.0.8

func (o *BillingEvent) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*BillingEvent) HasType added in v1.0.8

func (o *BillingEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (BillingEvent) MarshalJSON added in v1.0.8

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

func (*BillingEvent) SetAction added in v1.0.8

func (o *BillingEvent) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*BillingEvent) SetCreatedOn added in v1.0.8

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

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

func (*BillingEvent) SetDescription added in v1.0.8

func (o *BillingEvent) SetDescription(v string)

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

func (*BillingEvent) SetDetails added in v1.0.8

func (o *BillingEvent) SetDetails(v map[string]interface{})

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

func (*BillingEvent) SetId added in v1.0.8

func (o *BillingEvent) SetId(v string)

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

func (*BillingEvent) SetModifiedOn added in v1.0.8

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

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

func (*BillingEvent) SetName added in v1.0.8

func (o *BillingEvent) SetName(v string)

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

func (*BillingEvent) SetPrice added in v1.0.8

func (o *BillingEvent) SetPrice(v float64)

SetPrice gets a reference to the given float64 and assigns it to the Price field.

func (*BillingEvent) SetSeverity added in v1.0.8

func (o *BillingEvent) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*BillingEvent) SetSubtype added in v1.0.8

func (o *BillingEvent) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*BillingEvent) SetTenantId added in v1.0.8

func (o *BillingEvent) SetTenantId(v string)

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

func (*BillingEvent) SetType added in v1.0.8

func (o *BillingEvent) SetType(v string)

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

func (*BillingEvent) UnmarshalJSON added in v1.0.8

func (o *BillingEvent) UnmarshalJSON(bytes []byte) (err error)

type BillingEventAllOf added in v1.0.8

type BillingEventAllOf struct {
	Id                   *string    `json:"id,omitempty"`
	ModifiedOn           *time.Time `json:"modifiedOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingEventAllOf struct for BillingEventAllOf

func NewBillingEventAllOf added in v1.0.8

func NewBillingEventAllOf() *BillingEventAllOf

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

func NewBillingEventAllOfWithDefaults added in v1.0.8

func NewBillingEventAllOfWithDefaults() *BillingEventAllOf

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

func (*BillingEventAllOf) GetId added in v1.0.8

func (o *BillingEventAllOf) GetId() string

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

func (*BillingEventAllOf) GetIdOk added in v1.0.8

func (o *BillingEventAllOf) 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 (*BillingEventAllOf) GetModifiedOn added in v1.0.8

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

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

func (*BillingEventAllOf) GetModifiedOnOk added in v1.0.8

func (o *BillingEventAllOf) 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 (*BillingEventAllOf) HasId added in v1.0.8

func (o *BillingEventAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*BillingEventAllOf) HasModifiedOn added in v1.0.8

func (o *BillingEventAllOf) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (BillingEventAllOf) MarshalJSON added in v1.0.8

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

func (*BillingEventAllOf) SetId added in v1.0.8

func (o *BillingEventAllOf) SetId(v string)

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

func (*BillingEventAllOf) SetModifiedOn added in v1.0.8

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

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

func (*BillingEventAllOf) UnmarshalJSON added in v1.0.8

func (o *BillingEventAllOf) UnmarshalJSON(bytes []byte) (err error)

type BillingEventCreate added in v1.0.8

type BillingEventCreate struct {
	CreatedOn            *time.Time             `json:"createdOn,omitempty"`
	Name                 *string                `json:"name,omitempty"`
	Description          *string                `json:"description,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	Subtype              *string                `json:"subtype,omitempty"`
	Severity             *string                `json:"severity,omitempty"`
	Action               *string                `json:"action,omitempty"`
	Details              map[string]interface{} `json:"details,omitempty"`
	Price                *float64               `json:"price,omitempty"`
	TenantId             *string                `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingEventCreate struct for BillingEventCreate

func NewBillingEventCreate added in v1.0.8

func NewBillingEventCreate() *BillingEventCreate

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

func NewBillingEventCreateWithDefaults added in v1.0.8

func NewBillingEventCreateWithDefaults() *BillingEventCreate

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

func (*BillingEventCreate) GetAction added in v1.0.8

func (o *BillingEventCreate) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*BillingEventCreate) GetActionOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) GetCreatedOn added in v1.0.8

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

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

func (*BillingEventCreate) GetCreatedOnOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) GetDescription added in v1.0.8

func (o *BillingEventCreate) GetDescription() string

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

func (*BillingEventCreate) GetDescriptionOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) GetDetails added in v1.0.8

func (o *BillingEventCreate) GetDetails() map[string]interface{}

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

func (*BillingEventCreate) GetDetailsOk added in v1.0.8

func (o *BillingEventCreate) GetDetailsOk() (*map[string]interface{}, bool)

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

func (*BillingEventCreate) GetName added in v1.0.8

func (o *BillingEventCreate) GetName() string

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

func (*BillingEventCreate) GetNameOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) GetPrice added in v1.0.8

func (o *BillingEventCreate) GetPrice() float64

GetPrice returns the Price field value if set, zero value otherwise.

func (*BillingEventCreate) GetPriceOk added in v1.0.8

func (o *BillingEventCreate) GetPriceOk() (*float64, 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 (*BillingEventCreate) GetSeverity added in v1.0.8

func (o *BillingEventCreate) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*BillingEventCreate) GetSeverityOk added in v1.0.8

func (o *BillingEventCreate) GetSeverityOk() (*string, bool)

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

func (*BillingEventCreate) GetSubtype added in v1.0.8

func (o *BillingEventCreate) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*BillingEventCreate) GetSubtypeOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) GetTenantId added in v1.0.8

func (o *BillingEventCreate) GetTenantId() string

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

func (*BillingEventCreate) GetTenantIdOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) GetType added in v1.0.8

func (o *BillingEventCreate) GetType() string

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

func (*BillingEventCreate) GetTypeOk added in v1.0.8

func (o *BillingEventCreate) 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 (*BillingEventCreate) HasAction added in v1.0.8

func (o *BillingEventCreate) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*BillingEventCreate) HasCreatedOn added in v1.0.8

func (o *BillingEventCreate) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*BillingEventCreate) HasDescription added in v1.0.8

func (o *BillingEventCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BillingEventCreate) HasDetails added in v1.0.8

func (o *BillingEventCreate) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*BillingEventCreate) HasName added in v1.0.8

func (o *BillingEventCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*BillingEventCreate) HasPrice added in v1.0.8

func (o *BillingEventCreate) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*BillingEventCreate) HasSeverity added in v1.0.8

func (o *BillingEventCreate) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*BillingEventCreate) HasSubtype added in v1.0.8

func (o *BillingEventCreate) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*BillingEventCreate) HasTenantId added in v1.0.8

func (o *BillingEventCreate) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*BillingEventCreate) HasType added in v1.0.8

func (o *BillingEventCreate) HasType() bool

HasType returns a boolean if a field has been set.

func (BillingEventCreate) MarshalJSON added in v1.0.8

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

func (*BillingEventCreate) SetAction added in v1.0.8

func (o *BillingEventCreate) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*BillingEventCreate) SetCreatedOn added in v1.0.8

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

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

func (*BillingEventCreate) SetDescription added in v1.0.8

func (o *BillingEventCreate) SetDescription(v string)

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

func (*BillingEventCreate) SetDetails added in v1.0.8

func (o *BillingEventCreate) SetDetails(v map[string]interface{})

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

func (*BillingEventCreate) SetName added in v1.0.8

func (o *BillingEventCreate) SetName(v string)

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

func (*BillingEventCreate) SetPrice added in v1.0.8

func (o *BillingEventCreate) SetPrice(v float64)

SetPrice gets a reference to the given float64 and assigns it to the Price field.

func (*BillingEventCreate) SetSeverity added in v1.0.8

func (o *BillingEventCreate) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*BillingEventCreate) SetSubtype added in v1.0.8

func (o *BillingEventCreate) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*BillingEventCreate) SetTenantId added in v1.0.8

func (o *BillingEventCreate) SetTenantId(v string)

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

func (*BillingEventCreate) SetType added in v1.0.8

func (o *BillingEventCreate) SetType(v string)

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

func (*BillingEventCreate) UnmarshalJSON added in v1.0.8

func (o *BillingEventCreate) UnmarshalJSON(bytes []byte) (err error)

type BillingEventUpdate added in v1.0.8

type BillingEventUpdate struct {
	CreatedOn            *time.Time             `json:"createdOn,omitempty"`
	Name                 *string                `json:"name,omitempty"`
	Description          *string                `json:"description,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	Subtype              *string                `json:"subtype,omitempty"`
	Severity             *string                `json:"severity,omitempty"`
	Action               *string                `json:"action,omitempty"`
	Details              map[string]interface{} `json:"details,omitempty"`
	Price                *float64               `json:"price,omitempty"`
	TenantId             *string                `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingEventUpdate struct for BillingEventUpdate

func NewBillingEventUpdate added in v1.0.8

func NewBillingEventUpdate() *BillingEventUpdate

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

func NewBillingEventUpdateWithDefaults added in v1.0.8

func NewBillingEventUpdateWithDefaults() *BillingEventUpdate

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

func (*BillingEventUpdate) GetAction added in v1.0.8

func (o *BillingEventUpdate) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*BillingEventUpdate) GetActionOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) GetCreatedOn added in v1.0.8

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

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

func (*BillingEventUpdate) GetCreatedOnOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) GetDescription added in v1.0.8

func (o *BillingEventUpdate) GetDescription() string

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

func (*BillingEventUpdate) GetDescriptionOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) GetDetails added in v1.0.8

func (o *BillingEventUpdate) GetDetails() map[string]interface{}

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

func (*BillingEventUpdate) GetDetailsOk added in v1.0.8

func (o *BillingEventUpdate) GetDetailsOk() (*map[string]interface{}, bool)

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

func (*BillingEventUpdate) GetName added in v1.0.8

func (o *BillingEventUpdate) GetName() string

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

func (*BillingEventUpdate) GetNameOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) GetPrice added in v1.0.8

func (o *BillingEventUpdate) GetPrice() float64

GetPrice returns the Price field value if set, zero value otherwise.

func (*BillingEventUpdate) GetPriceOk added in v1.0.8

func (o *BillingEventUpdate) GetPriceOk() (*float64, 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 (*BillingEventUpdate) GetSeverity added in v1.0.8

func (o *BillingEventUpdate) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*BillingEventUpdate) GetSeverityOk added in v1.0.8

func (o *BillingEventUpdate) GetSeverityOk() (*string, bool)

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

func (*BillingEventUpdate) GetSubtype added in v1.0.8

func (o *BillingEventUpdate) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*BillingEventUpdate) GetSubtypeOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) GetTenantId added in v1.0.8

func (o *BillingEventUpdate) GetTenantId() string

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

func (*BillingEventUpdate) GetTenantIdOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) GetType added in v1.0.8

func (o *BillingEventUpdate) GetType() string

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

func (*BillingEventUpdate) GetTypeOk added in v1.0.8

func (o *BillingEventUpdate) 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 (*BillingEventUpdate) HasAction added in v1.0.8

func (o *BillingEventUpdate) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*BillingEventUpdate) HasCreatedOn added in v1.0.8

func (o *BillingEventUpdate) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*BillingEventUpdate) HasDescription added in v1.0.8

func (o *BillingEventUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BillingEventUpdate) HasDetails added in v1.0.8

func (o *BillingEventUpdate) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*BillingEventUpdate) HasName added in v1.0.8

func (o *BillingEventUpdate) HasName() bool

HasName returns a boolean if a field has been set.

func (*BillingEventUpdate) HasPrice added in v1.0.8

func (o *BillingEventUpdate) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*BillingEventUpdate) HasSeverity added in v1.0.8

func (o *BillingEventUpdate) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*BillingEventUpdate) HasSubtype added in v1.0.8

func (o *BillingEventUpdate) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*BillingEventUpdate) HasTenantId added in v1.0.8

func (o *BillingEventUpdate) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*BillingEventUpdate) HasType added in v1.0.8

func (o *BillingEventUpdate) HasType() bool

HasType returns a boolean if a field has been set.

func (BillingEventUpdate) MarshalJSON added in v1.0.8

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

func (*BillingEventUpdate) SetAction added in v1.0.8

func (o *BillingEventUpdate) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*BillingEventUpdate) SetCreatedOn added in v1.0.8

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

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

func (*BillingEventUpdate) SetDescription added in v1.0.8

func (o *BillingEventUpdate) SetDescription(v string)

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

func (*BillingEventUpdate) SetDetails added in v1.0.8

func (o *BillingEventUpdate) SetDetails(v map[string]interface{})

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

func (*BillingEventUpdate) SetName added in v1.0.8

func (o *BillingEventUpdate) SetName(v string)

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

func (*BillingEventUpdate) SetPrice added in v1.0.8

func (o *BillingEventUpdate) SetPrice(v float64)

SetPrice gets a reference to the given float64 and assigns it to the Price field.

func (*BillingEventUpdate) SetSeverity added in v1.0.8

func (o *BillingEventUpdate) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*BillingEventUpdate) SetSubtype added in v1.0.8

func (o *BillingEventUpdate) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*BillingEventUpdate) SetTenantId added in v1.0.8

func (o *BillingEventUpdate) SetTenantId(v string)

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

func (*BillingEventUpdate) SetType added in v1.0.8

func (o *BillingEventUpdate) SetType(v string)

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

func (*BillingEventUpdate) UnmarshalJSON added in v1.0.8

func (o *BillingEventUpdate) UnmarshalJSON(bytes []byte) (err error)

type BillingEventsApiService added in v1.0.8

type BillingEventsApiService service

BillingEventsApiService BillingEventsApi service

func (*BillingEventsApiService) GetCostSummary added in v1.0.8

* GetCostSummary Retrieve a summary for tenant cost. * Needs VIEW_COSTS permission to view cost details. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetCostSummaryRequest

func (*BillingEventsApiService) GetCostSummaryExecute added in v1.0.8

* Execute executes the request * @return BillingCostsReport

func (*BillingEventsApiService) GetEvent added in v1.0.8

* GetEvent Get an Event. * Needs VIEW_EVENTS permission to get a billing event. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetEventRequest

func (*BillingEventsApiService) GetEventExecute added in v1.0.8

* Execute executes the request * @return BillingEvent

func (*BillingEventsApiService) GetEventsPage added in v1.0.8

* GetEventsPage Retrieve a page of events for tenant. * Needs VIEW_EVENTS permission to view the billing events. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetEventsPageRequest

func (*BillingEventsApiService) GetEventsPageExecute added in v1.0.8

* Execute executes the request * @return BillingEventsPage

type BillingEventsPage added in v1.0.8

type BillingEventsPage struct {
	Page                 *int32          `json:"page,omitempty"`
	PageSize             *int32          `json:"pageSize,omitempty"`
	TotalItems           NullableInt64   `json:"totalItems,omitempty"`
	HasNext              NullableBool    `json:"hasNext,omitempty"`
	HasPrevious          NullableBool    `json:"hasPrevious,omitempty"`
	SortBy               NullableString  `json:"sortBy,omitempty"`
	SortOrder            NullableString  `json:"sortOrder,omitempty"`
	Contents             *[]BillingEvent `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingEventsPage struct for BillingEventsPage

func NewBillingEventsPage added in v1.0.8

func NewBillingEventsPage() *BillingEventsPage

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

func NewBillingEventsPageWithDefaults added in v1.0.8

func NewBillingEventsPageWithDefaults() *BillingEventsPage

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

func (*BillingEventsPage) GetContents added in v1.0.8

func (o *BillingEventsPage) GetContents() []BillingEvent

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

func (*BillingEventsPage) GetContentsOk added in v1.0.8

func (o *BillingEventsPage) GetContentsOk() (*[]BillingEvent, 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 (*BillingEventsPage) GetHasNext added in v1.0.8

func (o *BillingEventsPage) GetHasNext() bool

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

func (*BillingEventsPage) GetHasNextOk added in v1.0.8

func (o *BillingEventsPage) 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 (*BillingEventsPage) GetHasPrevious added in v1.0.8

func (o *BillingEventsPage) GetHasPrevious() bool

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

func (*BillingEventsPage) GetHasPreviousOk added in v1.0.8

func (o *BillingEventsPage) 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 (*BillingEventsPage) GetPage added in v1.0.8

func (o *BillingEventsPage) GetPage() int32

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

func (*BillingEventsPage) GetPageOk added in v1.0.8

func (o *BillingEventsPage) 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 (*BillingEventsPage) GetPageSize added in v1.0.8

func (o *BillingEventsPage) GetPageSize() int32

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

func (*BillingEventsPage) GetPageSizeOk added in v1.0.8

func (o *BillingEventsPage) 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 (*BillingEventsPage) GetSortBy added in v1.0.8

func (o *BillingEventsPage) GetSortBy() string

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

func (*BillingEventsPage) GetSortByOk added in v1.0.8

func (o *BillingEventsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingEventsPage) GetSortOrder added in v1.0.8

func (o *BillingEventsPage) GetSortOrder() string

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

func (*BillingEventsPage) GetSortOrderOk added in v1.0.8

func (o *BillingEventsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingEventsPage) GetTotalItems added in v1.0.8

func (o *BillingEventsPage) GetTotalItems() int64

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

func (*BillingEventsPage) GetTotalItemsOk added in v1.0.8

func (o *BillingEventsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingEventsPage) HasContents added in v1.0.8

func (o *BillingEventsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*BillingEventsPage) HasHasNext added in v1.0.8

func (o *BillingEventsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*BillingEventsPage) HasHasPrevious added in v1.0.8

func (o *BillingEventsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*BillingEventsPage) HasPage added in v1.0.8

func (o *BillingEventsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*BillingEventsPage) HasPageSize added in v1.0.8

func (o *BillingEventsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*BillingEventsPage) HasSortBy added in v1.0.8

func (o *BillingEventsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*BillingEventsPage) HasSortOrder added in v1.0.8

func (o *BillingEventsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*BillingEventsPage) HasTotalItems added in v1.0.8

func (o *BillingEventsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (BillingEventsPage) MarshalJSON added in v1.0.8

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

func (*BillingEventsPage) SetContents added in v1.0.8

func (o *BillingEventsPage) SetContents(v []BillingEvent)

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

func (*BillingEventsPage) SetHasNext added in v1.0.8

func (o *BillingEventsPage) SetHasNext(v bool)

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

func (*BillingEventsPage) SetHasNextNil added in v1.0.8

func (o *BillingEventsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*BillingEventsPage) SetHasPrevious added in v1.0.8

func (o *BillingEventsPage) SetHasPrevious(v bool)

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

func (*BillingEventsPage) SetHasPreviousNil added in v1.0.8

func (o *BillingEventsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*BillingEventsPage) SetPage added in v1.0.8

func (o *BillingEventsPage) SetPage(v int32)

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

func (*BillingEventsPage) SetPageSize added in v1.0.8

func (o *BillingEventsPage) SetPageSize(v int32)

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

func (*BillingEventsPage) SetSortBy added in v1.0.8

func (o *BillingEventsPage) SetSortBy(v string)

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

func (*BillingEventsPage) SetSortByNil added in v1.0.8

func (o *BillingEventsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*BillingEventsPage) SetSortOrder added in v1.0.8

func (o *BillingEventsPage) SetSortOrder(v string)

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

func (*BillingEventsPage) SetSortOrderNil added in v1.0.8

func (o *BillingEventsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*BillingEventsPage) SetTotalItems added in v1.0.8

func (o *BillingEventsPage) SetTotalItems(v int64)

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

func (*BillingEventsPage) SetTotalItemsNil added in v1.0.8

func (o *BillingEventsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*BillingEventsPage) UnmarshalJSON added in v1.0.8

func (o *BillingEventsPage) UnmarshalJSON(bytes []byte) (err error)

func (*BillingEventsPage) UnsetHasNext added in v1.0.8

func (o *BillingEventsPage) UnsetHasNext()

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

func (*BillingEventsPage) UnsetHasPrevious added in v1.0.8

func (o *BillingEventsPage) UnsetHasPrevious()

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

func (*BillingEventsPage) UnsetSortBy added in v1.0.8

func (o *BillingEventsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*BillingEventsPage) UnsetSortOrder added in v1.0.8

func (o *BillingEventsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*BillingEventsPage) UnsetTotalItems added in v1.0.8

func (o *BillingEventsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type BillingEventsPageAllOf added in v1.0.8

type BillingEventsPageAllOf struct {
	Contents             *[]BillingEvent `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingEventsPageAllOf struct for BillingEventsPageAllOf

func NewBillingEventsPageAllOf added in v1.0.8

func NewBillingEventsPageAllOf() *BillingEventsPageAllOf

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

func NewBillingEventsPageAllOfWithDefaults added in v1.0.8

func NewBillingEventsPageAllOfWithDefaults() *BillingEventsPageAllOf

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

func (*BillingEventsPageAllOf) GetContents added in v1.0.8

func (o *BillingEventsPageAllOf) GetContents() []BillingEvent

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

func (*BillingEventsPageAllOf) GetContentsOk added in v1.0.8

func (o *BillingEventsPageAllOf) GetContentsOk() (*[]BillingEvent, 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 (*BillingEventsPageAllOf) HasContents added in v1.0.8

func (o *BillingEventsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (BillingEventsPageAllOf) MarshalJSON added in v1.0.8

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

func (*BillingEventsPageAllOf) SetContents added in v1.0.8

func (o *BillingEventsPageAllOf) SetContents(v []BillingEvent)

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

func (*BillingEventsPageAllOf) UnmarshalJSON added in v1.0.8

func (o *BillingEventsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type BillingPrice added in v1.0.8

type BillingPrice struct {
	Id                   *string        `json:"id,omitempty"`
	CreatedOn            *time.Time     `json:"createdOn,omitempty"`
	ModifiedOn           *time.Time     `json:"modifiedOn,omitempty"`
	Name                 string         `json:"name"`
	Description          *string        `json:"description,omitempty"`
	Type                 string         `json:"type"`
	Subtype              *string        `json:"subtype,omitempty"`
	Source               *string        `json:"source,omitempty"`
	Price                float64        `json:"price"`
	BillingPeriod        *int64         `json:"billingPeriod,omitempty"`
	Service              NullableString `json:"service,omitempty"`
	TenantId             string         `json:"tenantId"`
	AdditionalProperties map[string]interface{}
}

BillingPrice struct for BillingPrice

func NewBillingPrice added in v1.0.8

func NewBillingPrice(name string, type_ string, price float64, tenantId string) *BillingPrice

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

func NewBillingPriceWithDefaults added in v1.0.8

func NewBillingPriceWithDefaults() *BillingPrice

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

func (*BillingPrice) GetBillingPeriod added in v1.0.8

func (o *BillingPrice) GetBillingPeriod() int64

GetBillingPeriod returns the BillingPeriod field value if set, zero value otherwise.

func (*BillingPrice) GetBillingPeriodOk added in v1.0.8

func (o *BillingPrice) GetBillingPeriodOk() (*int64, bool)

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

func (*BillingPrice) GetCreatedOn added in v1.0.8

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

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

func (*BillingPrice) GetCreatedOnOk added in v1.0.8

func (o *BillingPrice) 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 (*BillingPrice) GetDescription added in v1.0.8

func (o *BillingPrice) GetDescription() string

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

func (*BillingPrice) GetDescriptionOk added in v1.0.8

func (o *BillingPrice) 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 (*BillingPrice) GetId added in v1.0.8

func (o *BillingPrice) GetId() string

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

func (*BillingPrice) GetIdOk added in v1.0.8

func (o *BillingPrice) 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 (*BillingPrice) GetModifiedOn added in v1.0.8

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

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

func (*BillingPrice) GetModifiedOnOk added in v1.0.8

func (o *BillingPrice) 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 (*BillingPrice) GetName added in v1.0.8

func (o *BillingPrice) GetName() string

GetName returns the Name field value

func (*BillingPrice) GetNameOk added in v1.0.8

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

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

func (*BillingPrice) GetPrice added in v1.0.8

func (o *BillingPrice) GetPrice() float64

GetPrice returns the Price field value

func (*BillingPrice) GetPriceOk added in v1.0.8

func (o *BillingPrice) GetPriceOk() (*float64, bool)

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

func (*BillingPrice) GetService added in v1.0.8

func (o *BillingPrice) GetService() string

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

func (*BillingPrice) GetServiceOk added in v1.0.8

func (o *BillingPrice) GetServiceOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingPrice) GetSource added in v1.0.8

func (o *BillingPrice) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*BillingPrice) GetSourceOk added in v1.0.8

func (o *BillingPrice) GetSourceOk() (*string, bool)

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

func (*BillingPrice) GetSubtype added in v1.0.8

func (o *BillingPrice) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*BillingPrice) GetSubtypeOk added in v1.0.8

func (o *BillingPrice) 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 (*BillingPrice) GetTenantId added in v1.0.8

func (o *BillingPrice) GetTenantId() string

GetTenantId returns the TenantId field value

func (*BillingPrice) GetTenantIdOk added in v1.0.8

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

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

func (*BillingPrice) GetType added in v1.0.8

func (o *BillingPrice) GetType() string

GetType returns the Type field value

func (*BillingPrice) GetTypeOk added in v1.0.8

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

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

func (*BillingPrice) HasBillingPeriod added in v1.0.8

func (o *BillingPrice) HasBillingPeriod() bool

HasBillingPeriod returns a boolean if a field has been set.

func (*BillingPrice) HasCreatedOn added in v1.0.8

func (o *BillingPrice) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*BillingPrice) HasDescription added in v1.0.8

func (o *BillingPrice) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BillingPrice) HasId added in v1.0.8

func (o *BillingPrice) HasId() bool

HasId returns a boolean if a field has been set.

func (*BillingPrice) HasModifiedOn added in v1.0.8

func (o *BillingPrice) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*BillingPrice) HasService added in v1.0.8

func (o *BillingPrice) HasService() bool

HasService returns a boolean if a field has been set.

func (*BillingPrice) HasSource added in v1.0.8

func (o *BillingPrice) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*BillingPrice) HasSubtype added in v1.0.8

func (o *BillingPrice) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (BillingPrice) MarshalJSON added in v1.0.8

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

func (*BillingPrice) SetBillingPeriod added in v1.0.8

func (o *BillingPrice) SetBillingPeriod(v int64)

SetBillingPeriod gets a reference to the given int64 and assigns it to the BillingPeriod field.

func (*BillingPrice) SetCreatedOn added in v1.0.8

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

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

func (*BillingPrice) SetDescription added in v1.0.8

func (o *BillingPrice) SetDescription(v string)

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

func (*BillingPrice) SetId added in v1.0.8

func (o *BillingPrice) SetId(v string)

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

func (*BillingPrice) SetModifiedOn added in v1.0.8

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

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

func (*BillingPrice) SetName added in v1.0.8

func (o *BillingPrice) SetName(v string)

SetName sets field value

func (*BillingPrice) SetPrice added in v1.0.8

func (o *BillingPrice) SetPrice(v float64)

SetPrice sets field value

func (*BillingPrice) SetService added in v1.0.8

func (o *BillingPrice) SetService(v string)

SetService gets a reference to the given NullableString and assigns it to the Service field.

func (*BillingPrice) SetServiceNil added in v1.0.8

func (o *BillingPrice) SetServiceNil()

SetServiceNil sets the value for Service to be an explicit nil

func (*BillingPrice) SetSource added in v1.0.8

func (o *BillingPrice) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*BillingPrice) SetSubtype added in v1.0.8

func (o *BillingPrice) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*BillingPrice) SetTenantId added in v1.0.8

func (o *BillingPrice) SetTenantId(v string)

SetTenantId sets field value

func (*BillingPrice) SetType added in v1.0.8

func (o *BillingPrice) SetType(v string)

SetType sets field value

func (*BillingPrice) UnmarshalJSON added in v1.0.8

func (o *BillingPrice) UnmarshalJSON(bytes []byte) (err error)

func (*BillingPrice) UnsetService added in v1.0.8

func (o *BillingPrice) UnsetService()

UnsetService ensures that no value is present for Service, not even an explicit nil

type BillingPriceAllOf added in v1.0.8

type BillingPriceAllOf struct {
	Id                   *string    `json:"id,omitempty"`
	CreatedOn            *time.Time `json:"createdOn,omitempty"`
	ModifiedOn           *time.Time `json:"modifiedOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingPriceAllOf struct for BillingPriceAllOf

func NewBillingPriceAllOf added in v1.0.8

func NewBillingPriceAllOf() *BillingPriceAllOf

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

func NewBillingPriceAllOfWithDefaults added in v1.0.8

func NewBillingPriceAllOfWithDefaults() *BillingPriceAllOf

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

func (*BillingPriceAllOf) GetCreatedOn added in v1.0.8

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

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

func (*BillingPriceAllOf) GetCreatedOnOk added in v1.0.8

func (o *BillingPriceAllOf) 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 (*BillingPriceAllOf) GetId added in v1.0.8

func (o *BillingPriceAllOf) GetId() string

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

func (*BillingPriceAllOf) GetIdOk added in v1.0.8

func (o *BillingPriceAllOf) 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 (*BillingPriceAllOf) GetModifiedOn added in v1.0.8

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

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

func (*BillingPriceAllOf) GetModifiedOnOk added in v1.0.8

func (o *BillingPriceAllOf) 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 (*BillingPriceAllOf) HasCreatedOn added in v1.0.8

func (o *BillingPriceAllOf) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*BillingPriceAllOf) HasId added in v1.0.8

func (o *BillingPriceAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*BillingPriceAllOf) HasModifiedOn added in v1.0.8

func (o *BillingPriceAllOf) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (BillingPriceAllOf) MarshalJSON added in v1.0.8

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

func (*BillingPriceAllOf) SetCreatedOn added in v1.0.8

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

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

func (*BillingPriceAllOf) SetId added in v1.0.8

func (o *BillingPriceAllOf) SetId(v string)

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

func (*BillingPriceAllOf) SetModifiedOn added in v1.0.8

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

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

func (*BillingPriceAllOf) UnmarshalJSON added in v1.0.8

func (o *BillingPriceAllOf) UnmarshalJSON(bytes []byte) (err error)

type BillingPriceCreate added in v1.0.8

type BillingPriceCreate struct {
	Name                 string         `json:"name"`
	Description          *string        `json:"description,omitempty"`
	Type                 string         `json:"type"`
	Subtype              *string        `json:"subtype,omitempty"`
	Source               *string        `json:"source,omitempty"`
	Price                float64        `json:"price"`
	BillingPeriod        *int64         `json:"billingPeriod,omitempty"`
	Service              NullableString `json:"service,omitempty"`
	TenantId             string         `json:"tenantId"`
	AdditionalProperties map[string]interface{}
}

BillingPriceCreate struct for BillingPriceCreate

func NewBillingPriceCreate added in v1.0.8

func NewBillingPriceCreate(name string, type_ string, price float64, tenantId string) *BillingPriceCreate

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

func NewBillingPriceCreateWithDefaults added in v1.0.8

func NewBillingPriceCreateWithDefaults() *BillingPriceCreate

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

func (*BillingPriceCreate) GetBillingPeriod added in v1.0.8

func (o *BillingPriceCreate) GetBillingPeriod() int64

GetBillingPeriod returns the BillingPeriod field value if set, zero value otherwise.

func (*BillingPriceCreate) GetBillingPeriodOk added in v1.0.8

func (o *BillingPriceCreate) GetBillingPeriodOk() (*int64, bool)

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

func (*BillingPriceCreate) GetDescription added in v1.0.8

func (o *BillingPriceCreate) GetDescription() string

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

func (*BillingPriceCreate) GetDescriptionOk added in v1.0.8

func (o *BillingPriceCreate) 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 (*BillingPriceCreate) GetName added in v1.0.8

func (o *BillingPriceCreate) GetName() string

GetName returns the Name field value

func (*BillingPriceCreate) GetNameOk added in v1.0.8

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

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

func (*BillingPriceCreate) GetPrice added in v1.0.8

func (o *BillingPriceCreate) GetPrice() float64

GetPrice returns the Price field value

func (*BillingPriceCreate) GetPriceOk added in v1.0.8

func (o *BillingPriceCreate) GetPriceOk() (*float64, bool)

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

func (*BillingPriceCreate) GetService added in v1.0.8

func (o *BillingPriceCreate) GetService() string

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

func (*BillingPriceCreate) GetServiceOk added in v1.0.8

func (o *BillingPriceCreate) GetServiceOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingPriceCreate) GetSource added in v1.0.8

func (o *BillingPriceCreate) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*BillingPriceCreate) GetSourceOk added in v1.0.8

func (o *BillingPriceCreate) GetSourceOk() (*string, bool)

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

func (*BillingPriceCreate) GetSubtype added in v1.0.8

func (o *BillingPriceCreate) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*BillingPriceCreate) GetSubtypeOk added in v1.0.8

func (o *BillingPriceCreate) 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 (*BillingPriceCreate) GetTenantId added in v1.0.8

func (o *BillingPriceCreate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*BillingPriceCreate) GetTenantIdOk added in v1.0.8

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

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

func (*BillingPriceCreate) GetType added in v1.0.8

func (o *BillingPriceCreate) GetType() string

GetType returns the Type field value

func (*BillingPriceCreate) GetTypeOk added in v1.0.8

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

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

func (*BillingPriceCreate) HasBillingPeriod added in v1.0.8

func (o *BillingPriceCreate) HasBillingPeriod() bool

HasBillingPeriod returns a boolean if a field has been set.

func (*BillingPriceCreate) HasDescription added in v1.0.8

func (o *BillingPriceCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BillingPriceCreate) HasService added in v1.0.8

func (o *BillingPriceCreate) HasService() bool

HasService returns a boolean if a field has been set.

func (*BillingPriceCreate) HasSource added in v1.0.8

func (o *BillingPriceCreate) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*BillingPriceCreate) HasSubtype added in v1.0.8

func (o *BillingPriceCreate) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (BillingPriceCreate) MarshalJSON added in v1.0.8

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

func (*BillingPriceCreate) SetBillingPeriod added in v1.0.8

func (o *BillingPriceCreate) SetBillingPeriod(v int64)

SetBillingPeriod gets a reference to the given int64 and assigns it to the BillingPeriod field.

func (*BillingPriceCreate) SetDescription added in v1.0.8

func (o *BillingPriceCreate) SetDescription(v string)

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

func (*BillingPriceCreate) SetName added in v1.0.8

func (o *BillingPriceCreate) SetName(v string)

SetName sets field value

func (*BillingPriceCreate) SetPrice added in v1.0.8

func (o *BillingPriceCreate) SetPrice(v float64)

SetPrice sets field value

func (*BillingPriceCreate) SetService added in v1.0.8

func (o *BillingPriceCreate) SetService(v string)

SetService gets a reference to the given NullableString and assigns it to the Service field.

func (*BillingPriceCreate) SetServiceNil added in v1.0.8

func (o *BillingPriceCreate) SetServiceNil()

SetServiceNil sets the value for Service to be an explicit nil

func (*BillingPriceCreate) SetSource added in v1.0.8

func (o *BillingPriceCreate) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*BillingPriceCreate) SetSubtype added in v1.0.8

func (o *BillingPriceCreate) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*BillingPriceCreate) SetTenantId added in v1.0.8

func (o *BillingPriceCreate) SetTenantId(v string)

SetTenantId sets field value

func (*BillingPriceCreate) SetType added in v1.0.8

func (o *BillingPriceCreate) SetType(v string)

SetType sets field value

func (*BillingPriceCreate) UnmarshalJSON added in v1.0.8

func (o *BillingPriceCreate) UnmarshalJSON(bytes []byte) (err error)

func (*BillingPriceCreate) UnsetService added in v1.0.8

func (o *BillingPriceCreate) UnsetService()

UnsetService ensures that no value is present for Service, not even an explicit nil

type BillingPriceUpdate added in v1.0.8

type BillingPriceUpdate struct {
	Name                 string         `json:"name"`
	Description          *string        `json:"description,omitempty"`
	Type                 string         `json:"type"`
	Subtype              *string        `json:"subtype,omitempty"`
	Source               *string        `json:"source,omitempty"`
	Price                float64        `json:"price"`
	BillingPeriod        *int64         `json:"billingPeriod,omitempty"`
	Service              NullableString `json:"service,omitempty"`
	TenantId             string         `json:"tenantId"`
	AdditionalProperties map[string]interface{}
}

BillingPriceUpdate struct for BillingPriceUpdate

func NewBillingPriceUpdate added in v1.0.8

func NewBillingPriceUpdate(name string, type_ string, price float64, tenantId string) *BillingPriceUpdate

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

func NewBillingPriceUpdateWithDefaults added in v1.0.8

func NewBillingPriceUpdateWithDefaults() *BillingPriceUpdate

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

func (*BillingPriceUpdate) GetBillingPeriod added in v1.0.8

func (o *BillingPriceUpdate) GetBillingPeriod() int64

GetBillingPeriod returns the BillingPeriod field value if set, zero value otherwise.

func (*BillingPriceUpdate) GetBillingPeriodOk added in v1.0.8

func (o *BillingPriceUpdate) GetBillingPeriodOk() (*int64, bool)

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

func (*BillingPriceUpdate) GetDescription added in v1.0.8

func (o *BillingPriceUpdate) GetDescription() string

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

func (*BillingPriceUpdate) GetDescriptionOk added in v1.0.8

func (o *BillingPriceUpdate) 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 (*BillingPriceUpdate) GetName added in v1.0.8

func (o *BillingPriceUpdate) GetName() string

GetName returns the Name field value

func (*BillingPriceUpdate) GetNameOk added in v1.0.8

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

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

func (*BillingPriceUpdate) GetPrice added in v1.0.8

func (o *BillingPriceUpdate) GetPrice() float64

GetPrice returns the Price field value

func (*BillingPriceUpdate) GetPriceOk added in v1.0.8

func (o *BillingPriceUpdate) GetPriceOk() (*float64, bool)

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

func (*BillingPriceUpdate) GetService added in v1.0.8

func (o *BillingPriceUpdate) GetService() string

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

func (*BillingPriceUpdate) GetServiceOk added in v1.0.8

func (o *BillingPriceUpdate) GetServiceOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingPriceUpdate) GetSource added in v1.0.8

func (o *BillingPriceUpdate) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*BillingPriceUpdate) GetSourceOk added in v1.0.8

func (o *BillingPriceUpdate) GetSourceOk() (*string, bool)

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

func (*BillingPriceUpdate) GetSubtype added in v1.0.8

func (o *BillingPriceUpdate) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*BillingPriceUpdate) GetSubtypeOk added in v1.0.8

func (o *BillingPriceUpdate) 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 (*BillingPriceUpdate) GetTenantId added in v1.0.8

func (o *BillingPriceUpdate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*BillingPriceUpdate) GetTenantIdOk added in v1.0.8

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

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

func (*BillingPriceUpdate) GetType added in v1.0.8

func (o *BillingPriceUpdate) GetType() string

GetType returns the Type field value

func (*BillingPriceUpdate) GetTypeOk added in v1.0.8

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

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

func (*BillingPriceUpdate) HasBillingPeriod added in v1.0.8

func (o *BillingPriceUpdate) HasBillingPeriod() bool

HasBillingPeriod returns a boolean if a field has been set.

func (*BillingPriceUpdate) HasDescription added in v1.0.8

func (o *BillingPriceUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BillingPriceUpdate) HasService added in v1.0.8

func (o *BillingPriceUpdate) HasService() bool

HasService returns a boolean if a field has been set.

func (*BillingPriceUpdate) HasSource added in v1.0.8

func (o *BillingPriceUpdate) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*BillingPriceUpdate) HasSubtype added in v1.0.8

func (o *BillingPriceUpdate) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (BillingPriceUpdate) MarshalJSON added in v1.0.8

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

func (*BillingPriceUpdate) SetBillingPeriod added in v1.0.8

func (o *BillingPriceUpdate) SetBillingPeriod(v int64)

SetBillingPeriod gets a reference to the given int64 and assigns it to the BillingPeriod field.

func (*BillingPriceUpdate) SetDescription added in v1.0.8

func (o *BillingPriceUpdate) SetDescription(v string)

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

func (*BillingPriceUpdate) SetName added in v1.0.8

func (o *BillingPriceUpdate) SetName(v string)

SetName sets field value

func (*BillingPriceUpdate) SetPrice added in v1.0.8

func (o *BillingPriceUpdate) SetPrice(v float64)

SetPrice sets field value

func (*BillingPriceUpdate) SetService added in v1.0.8

func (o *BillingPriceUpdate) SetService(v string)

SetService gets a reference to the given NullableString and assigns it to the Service field.

func (*BillingPriceUpdate) SetServiceNil added in v1.0.8

func (o *BillingPriceUpdate) SetServiceNil()

SetServiceNil sets the value for Service to be an explicit nil

func (*BillingPriceUpdate) SetSource added in v1.0.8

func (o *BillingPriceUpdate) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*BillingPriceUpdate) SetSubtype added in v1.0.8

func (o *BillingPriceUpdate) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*BillingPriceUpdate) SetTenantId added in v1.0.8

func (o *BillingPriceUpdate) SetTenantId(v string)

SetTenantId sets field value

func (*BillingPriceUpdate) SetType added in v1.0.8

func (o *BillingPriceUpdate) SetType(v string)

SetType sets field value

func (*BillingPriceUpdate) UnmarshalJSON added in v1.0.8

func (o *BillingPriceUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*BillingPriceUpdate) UnsetService added in v1.0.8

func (o *BillingPriceUpdate) UnsetService()

UnsetService ensures that no value is present for Service, not even an explicit nil

type BillingPricesApiService added in v1.0.8

type BillingPricesApiService service

BillingPricesApiService BillingPricesApi service

func (*BillingPricesApiService) AddPrice added in v1.0.8

* AddPrice Add price for tenant and event type. * Needs MANAGE_PRICES permission to allow for the creation of a price. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiAddPriceRequest

func (*BillingPricesApiService) AddPriceExecute added in v1.0.8

* Execute executes the request * @return BillingPrice

func (*BillingPricesApiService) DeletePrice added in v1.0.8

* DeletePrice Delete a price. * Needs MANAGE_PRICES permission to delete a price. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeletePriceRequest

func (*BillingPricesApiService) DeletePriceExecute added in v1.0.8

* Execute executes the request

func (*BillingPricesApiService) GetPrice added in v1.0.8

* GetPrice Get a price. * Needs VIEW_PRICES permission to get pricing detail. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetPriceRequest

func (*BillingPricesApiService) GetPriceExecute added in v1.0.8

* Execute executes the request * @return BillingPrice

func (*BillingPricesApiService) GetPricesPage added in v1.0.8

* GetPricesPage Retrieve a page of prices. * Needs VIEW_PRICES permission to view the pricing details. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetPricesPageRequest

func (*BillingPricesApiService) GetPricesPageExecute added in v1.0.8

* Execute executes the request * @return BillingPricesPage

func (*BillingPricesApiService) UpdatePrice added in v1.0.8

* UpdatePrice Update price for an event type and tenant. * Needs MANAGE_PRICES permission to update a pricing detail. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdatePriceRequest

func (*BillingPricesApiService) UpdatePriceExecute added in v1.0.8

* Execute executes the request * @return BillingPrice

type BillingPricesPage added in v1.0.8

type BillingPricesPage struct {
	Page                 *int32          `json:"page,omitempty"`
	PageSize             *int32          `json:"pageSize,omitempty"`
	TotalItems           NullableInt64   `json:"totalItems,omitempty"`
	HasNext              NullableBool    `json:"hasNext,omitempty"`
	HasPrevious          NullableBool    `json:"hasPrevious,omitempty"`
	SortBy               NullableString  `json:"sortBy,omitempty"`
	SortOrder            NullableString  `json:"sortOrder,omitempty"`
	Contents             *[]BillingPrice `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingPricesPage struct for BillingPricesPage

func NewBillingPricesPage added in v1.0.8

func NewBillingPricesPage() *BillingPricesPage

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

func NewBillingPricesPageWithDefaults added in v1.0.8

func NewBillingPricesPageWithDefaults() *BillingPricesPage

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

func (*BillingPricesPage) GetContents added in v1.0.8

func (o *BillingPricesPage) GetContents() []BillingPrice

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

func (*BillingPricesPage) GetContentsOk added in v1.0.8

func (o *BillingPricesPage) GetContentsOk() (*[]BillingPrice, 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 (*BillingPricesPage) GetHasNext added in v1.0.8

func (o *BillingPricesPage) GetHasNext() bool

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

func (*BillingPricesPage) GetHasNextOk added in v1.0.8

func (o *BillingPricesPage) 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 (*BillingPricesPage) GetHasPrevious added in v1.0.8

func (o *BillingPricesPage) GetHasPrevious() bool

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

func (*BillingPricesPage) GetHasPreviousOk added in v1.0.8

func (o *BillingPricesPage) 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 (*BillingPricesPage) GetPage added in v1.0.8

func (o *BillingPricesPage) GetPage() int32

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

func (*BillingPricesPage) GetPageOk added in v1.0.8

func (o *BillingPricesPage) 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 (*BillingPricesPage) GetPageSize added in v1.0.8

func (o *BillingPricesPage) GetPageSize() int32

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

func (*BillingPricesPage) GetPageSizeOk added in v1.0.8

func (o *BillingPricesPage) 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 (*BillingPricesPage) GetSortBy added in v1.0.8

func (o *BillingPricesPage) GetSortBy() string

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

func (*BillingPricesPage) GetSortByOk added in v1.0.8

func (o *BillingPricesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingPricesPage) GetSortOrder added in v1.0.8

func (o *BillingPricesPage) GetSortOrder() string

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

func (*BillingPricesPage) GetSortOrderOk added in v1.0.8

func (o *BillingPricesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingPricesPage) GetTotalItems added in v1.0.8

func (o *BillingPricesPage) GetTotalItems() int64

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

func (*BillingPricesPage) GetTotalItemsOk added in v1.0.8

func (o *BillingPricesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BillingPricesPage) HasContents added in v1.0.8

func (o *BillingPricesPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*BillingPricesPage) HasHasNext added in v1.0.8

func (o *BillingPricesPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*BillingPricesPage) HasHasPrevious added in v1.0.8

func (o *BillingPricesPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*BillingPricesPage) HasPage added in v1.0.8

func (o *BillingPricesPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*BillingPricesPage) HasPageSize added in v1.0.8

func (o *BillingPricesPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*BillingPricesPage) HasSortBy added in v1.0.8

func (o *BillingPricesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*BillingPricesPage) HasSortOrder added in v1.0.8

func (o *BillingPricesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*BillingPricesPage) HasTotalItems added in v1.0.8

func (o *BillingPricesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (BillingPricesPage) MarshalJSON added in v1.0.8

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

func (*BillingPricesPage) SetContents added in v1.0.8

func (o *BillingPricesPage) SetContents(v []BillingPrice)

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

func (*BillingPricesPage) SetHasNext added in v1.0.8

func (o *BillingPricesPage) SetHasNext(v bool)

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

func (*BillingPricesPage) SetHasNextNil added in v1.0.8

func (o *BillingPricesPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*BillingPricesPage) SetHasPrevious added in v1.0.8

func (o *BillingPricesPage) SetHasPrevious(v bool)

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

func (*BillingPricesPage) SetHasPreviousNil added in v1.0.8

func (o *BillingPricesPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*BillingPricesPage) SetPage added in v1.0.8

func (o *BillingPricesPage) SetPage(v int32)

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

func (*BillingPricesPage) SetPageSize added in v1.0.8

func (o *BillingPricesPage) SetPageSize(v int32)

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

func (*BillingPricesPage) SetSortBy added in v1.0.8

func (o *BillingPricesPage) SetSortBy(v string)

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

func (*BillingPricesPage) SetSortByNil added in v1.0.8

func (o *BillingPricesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*BillingPricesPage) SetSortOrder added in v1.0.8

func (o *BillingPricesPage) SetSortOrder(v string)

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

func (*BillingPricesPage) SetSortOrderNil added in v1.0.8

func (o *BillingPricesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*BillingPricesPage) SetTotalItems added in v1.0.8

func (o *BillingPricesPage) SetTotalItems(v int64)

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

func (*BillingPricesPage) SetTotalItemsNil added in v1.0.8

func (o *BillingPricesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*BillingPricesPage) UnmarshalJSON added in v1.0.8

func (o *BillingPricesPage) UnmarshalJSON(bytes []byte) (err error)

func (*BillingPricesPage) UnsetHasNext added in v1.0.8

func (o *BillingPricesPage) UnsetHasNext()

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

func (*BillingPricesPage) UnsetHasPrevious added in v1.0.8

func (o *BillingPricesPage) UnsetHasPrevious()

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

func (*BillingPricesPage) UnsetSortBy added in v1.0.8

func (o *BillingPricesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*BillingPricesPage) UnsetSortOrder added in v1.0.8

func (o *BillingPricesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*BillingPricesPage) UnsetTotalItems added in v1.0.8

func (o *BillingPricesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type BillingPricesPageAllOf added in v1.0.8

type BillingPricesPageAllOf struct {
	Contents             *[]BillingPrice `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

BillingPricesPageAllOf struct for BillingPricesPageAllOf

func NewBillingPricesPageAllOf added in v1.0.8

func NewBillingPricesPageAllOf() *BillingPricesPageAllOf

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

func NewBillingPricesPageAllOfWithDefaults added in v1.0.8

func NewBillingPricesPageAllOfWithDefaults() *BillingPricesPageAllOf

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

func (*BillingPricesPageAllOf) GetContents added in v1.0.8

func (o *BillingPricesPageAllOf) GetContents() []BillingPrice

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

func (*BillingPricesPageAllOf) GetContentsOk added in v1.0.8

func (o *BillingPricesPageAllOf) GetContentsOk() (*[]BillingPrice, 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 (*BillingPricesPageAllOf) HasContents added in v1.0.8

func (o *BillingPricesPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (BillingPricesPageAllOf) MarshalJSON added in v1.0.8

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

func (*BillingPricesPageAllOf) SetContents added in v1.0.8

func (o *BillingPricesPageAllOf) SetContents(v []BillingPrice)

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

func (*BillingPricesPageAllOf) UnmarshalJSON added in v1.0.8

func (o *BillingPricesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type CatalogAssignment

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

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.

func (*CatalogAssignment) UnmarshalJSON added in v1.0.5

func (o *CatalogAssignment) UnmarshalJSON(bytes []byte) (err error)

type ChangeRequest added in v1.0.8

type ChangeRequest struct {
	Id                   *string                            `json:"id,omitempty"`
	ExternalId           *string                            `json:"externalId,omitempty"`
	Name                 *string                            `json:"name,omitempty"`
	Description          *string                            `json:"description,omitempty"`
	Attributes           *map[string]map[string]interface{} `json:"attributes,omitempty"`
	TenantId             NullableString                     `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequest struct for ChangeRequest

func NewChangeRequest added in v1.0.8

func NewChangeRequest() *ChangeRequest

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

func NewChangeRequestWithDefaults added in v1.0.8

func NewChangeRequestWithDefaults() *ChangeRequest

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

func (*ChangeRequest) GetAttributes added in v1.0.8

func (o *ChangeRequest) GetAttributes() map[string]map[string]interface{}

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

func (*ChangeRequest) GetAttributesOk added in v1.0.8

func (o *ChangeRequest) 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 (*ChangeRequest) GetDescription added in v1.0.8

func (o *ChangeRequest) GetDescription() string

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

func (*ChangeRequest) GetDescriptionOk added in v1.0.8

func (o *ChangeRequest) 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 (*ChangeRequest) GetExternalId added in v1.0.8

func (o *ChangeRequest) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ChangeRequest) GetExternalIdOk added in v1.0.8

func (o *ChangeRequest) GetExternalIdOk() (*string, bool)

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

func (*ChangeRequest) GetId added in v1.0.8

func (o *ChangeRequest) GetId() string

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

func (*ChangeRequest) GetIdOk added in v1.0.8

func (o *ChangeRequest) 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 (*ChangeRequest) GetName added in v1.0.8

func (o *ChangeRequest) GetName() string

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

func (*ChangeRequest) GetNameOk added in v1.0.8

func (o *ChangeRequest) 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 (*ChangeRequest) GetTenantId added in v1.0.8

func (o *ChangeRequest) GetTenantId() string

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

func (*ChangeRequest) GetTenantIdOk added in v1.0.8

func (o *ChangeRequest) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequest) HasAttributes added in v1.0.8

func (o *ChangeRequest) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ChangeRequest) HasDescription added in v1.0.8

func (o *ChangeRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ChangeRequest) HasExternalId added in v1.0.8

func (o *ChangeRequest) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ChangeRequest) HasId added in v1.0.8

func (o *ChangeRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ChangeRequest) HasName added in v1.0.8

func (o *ChangeRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*ChangeRequest) HasTenantId added in v1.0.8

func (o *ChangeRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ChangeRequest) MarshalJSON added in v1.0.8

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

func (*ChangeRequest) SetAttributes added in v1.0.8

func (o *ChangeRequest) 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 (*ChangeRequest) SetDescription added in v1.0.8

func (o *ChangeRequest) SetDescription(v string)

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

func (*ChangeRequest) SetExternalId added in v1.0.8

func (o *ChangeRequest) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ChangeRequest) SetId added in v1.0.8

func (o *ChangeRequest) SetId(v string)

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

func (*ChangeRequest) SetName added in v1.0.8

func (o *ChangeRequest) SetName(v string)

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

func (*ChangeRequest) SetTenantId added in v1.0.8

func (o *ChangeRequest) SetTenantId(v string)

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

func (*ChangeRequest) SetTenantIdNil added in v1.0.8

func (o *ChangeRequest) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ChangeRequest) UnmarshalJSON added in v1.0.8

func (o *ChangeRequest) UnmarshalJSON(bytes []byte) (err error)

func (*ChangeRequest) UnsetTenantId added in v1.0.8

func (o *ChangeRequest) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ChangeRequestAllOf added in v1.0.8

type ChangeRequestAllOf struct {
	Id                   *string `json:"id,omitempty"`
	ExternalId           *string `json:"externalId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequestAllOf struct for ChangeRequestAllOf

func NewChangeRequestAllOf added in v1.0.8

func NewChangeRequestAllOf() *ChangeRequestAllOf

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

func NewChangeRequestAllOfWithDefaults added in v1.0.8

func NewChangeRequestAllOfWithDefaults() *ChangeRequestAllOf

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

func (*ChangeRequestAllOf) GetExternalId added in v1.0.8

func (o *ChangeRequestAllOf) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ChangeRequestAllOf) GetExternalIdOk added in v1.0.8

func (o *ChangeRequestAllOf) GetExternalIdOk() (*string, bool)

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

func (*ChangeRequestAllOf) GetId added in v1.0.8

func (o *ChangeRequestAllOf) GetId() string

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

func (*ChangeRequestAllOf) GetIdOk added in v1.0.8

func (o *ChangeRequestAllOf) 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 (*ChangeRequestAllOf) HasExternalId added in v1.0.8

func (o *ChangeRequestAllOf) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ChangeRequestAllOf) HasId added in v1.0.8

func (o *ChangeRequestAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (ChangeRequestAllOf) MarshalJSON added in v1.0.8

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

func (*ChangeRequestAllOf) SetExternalId added in v1.0.8

func (o *ChangeRequestAllOf) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ChangeRequestAllOf) SetId added in v1.0.8

func (o *ChangeRequestAllOf) SetId(v string)

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

func (*ChangeRequestAllOf) UnmarshalJSON added in v1.0.8

func (o *ChangeRequestAllOf) UnmarshalJSON(bytes []byte) (err error)

type ChangeRequestCreate added in v1.0.8

type ChangeRequestCreate struct {
	Name                 *string                            `json:"name,omitempty"`
	Description          *string                            `json:"description,omitempty"`
	Attributes           *map[string]map[string]interface{} `json:"attributes,omitempty"`
	TenantId             NullableString                     `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequestCreate struct for ChangeRequestCreate

func NewChangeRequestCreate added in v1.0.8

func NewChangeRequestCreate() *ChangeRequestCreate

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

func NewChangeRequestCreateWithDefaults added in v1.0.8

func NewChangeRequestCreateWithDefaults() *ChangeRequestCreate

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

func (*ChangeRequestCreate) GetAttributes added in v1.0.8

func (o *ChangeRequestCreate) GetAttributes() map[string]map[string]interface{}

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

func (*ChangeRequestCreate) GetAttributesOk added in v1.0.8

func (o *ChangeRequestCreate) 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 (*ChangeRequestCreate) GetDescription added in v1.0.8

func (o *ChangeRequestCreate) GetDescription() string

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

func (*ChangeRequestCreate) GetDescriptionOk added in v1.0.8

func (o *ChangeRequestCreate) 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 (*ChangeRequestCreate) GetName added in v1.0.8

func (o *ChangeRequestCreate) GetName() string

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

func (*ChangeRequestCreate) GetNameOk added in v1.0.8

func (o *ChangeRequestCreate) 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 (*ChangeRequestCreate) GetTenantId added in v1.0.8

func (o *ChangeRequestCreate) GetTenantId() string

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

func (*ChangeRequestCreate) GetTenantIdOk added in v1.0.8

func (o *ChangeRequestCreate) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequestCreate) HasAttributes added in v1.0.8

func (o *ChangeRequestCreate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ChangeRequestCreate) HasDescription added in v1.0.8

func (o *ChangeRequestCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ChangeRequestCreate) HasName added in v1.0.8

func (o *ChangeRequestCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ChangeRequestCreate) HasTenantId added in v1.0.8

func (o *ChangeRequestCreate) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ChangeRequestCreate) MarshalJSON added in v1.0.8

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

func (*ChangeRequestCreate) SetAttributes added in v1.0.8

func (o *ChangeRequestCreate) 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 (*ChangeRequestCreate) SetDescription added in v1.0.8

func (o *ChangeRequestCreate) SetDescription(v string)

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

func (*ChangeRequestCreate) SetName added in v1.0.8

func (o *ChangeRequestCreate) SetName(v string)

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

func (*ChangeRequestCreate) SetTenantId added in v1.0.8

func (o *ChangeRequestCreate) SetTenantId(v string)

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

func (*ChangeRequestCreate) SetTenantIdNil added in v1.0.8

func (o *ChangeRequestCreate) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ChangeRequestCreate) UnmarshalJSON added in v1.0.8

func (o *ChangeRequestCreate) UnmarshalJSON(bytes []byte) (err error)

func (*ChangeRequestCreate) UnsetTenantId added in v1.0.8

func (o *ChangeRequestCreate) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ChangeRequestSummary added in v1.0.8

type ChangeRequestSummary struct {
	Id                   *string                            `json:"id,omitempty"`
	ExternalId           *string                            `json:"externalId,omitempty"`
	Name                 *string                            `json:"name,omitempty"`
	Description          *string                            `json:"description,omitempty"`
	TenantId             NullableString                     `json:"tenantId,omitempty"`
	Attributes           *map[string]map[string]interface{} `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequestSummary struct for ChangeRequestSummary

func NewChangeRequestSummary added in v1.0.8

func NewChangeRequestSummary() *ChangeRequestSummary

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

func NewChangeRequestSummaryWithDefaults added in v1.0.8

func NewChangeRequestSummaryWithDefaults() *ChangeRequestSummary

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

func (*ChangeRequestSummary) GetAttributes added in v1.0.8

func (o *ChangeRequestSummary) GetAttributes() map[string]map[string]interface{}

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

func (*ChangeRequestSummary) GetAttributesOk added in v1.0.8

func (o *ChangeRequestSummary) 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 (*ChangeRequestSummary) GetDescription added in v1.0.8

func (o *ChangeRequestSummary) GetDescription() string

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

func (*ChangeRequestSummary) GetDescriptionOk added in v1.0.8

func (o *ChangeRequestSummary) 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 (*ChangeRequestSummary) GetExternalId added in v1.0.8

func (o *ChangeRequestSummary) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ChangeRequestSummary) GetExternalIdOk added in v1.0.8

func (o *ChangeRequestSummary) GetExternalIdOk() (*string, bool)

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

func (*ChangeRequestSummary) GetId added in v1.0.8

func (o *ChangeRequestSummary) GetId() string

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

func (*ChangeRequestSummary) GetIdOk added in v1.0.8

func (o *ChangeRequestSummary) 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 (*ChangeRequestSummary) GetName added in v1.0.8

func (o *ChangeRequestSummary) GetName() string

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

func (*ChangeRequestSummary) GetNameOk added in v1.0.8

func (o *ChangeRequestSummary) 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 (*ChangeRequestSummary) GetTenantId added in v1.0.8

func (o *ChangeRequestSummary) GetTenantId() string

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

func (*ChangeRequestSummary) GetTenantIdOk added in v1.0.8

func (o *ChangeRequestSummary) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequestSummary) HasAttributes added in v1.0.8

func (o *ChangeRequestSummary) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ChangeRequestSummary) HasDescription added in v1.0.8

func (o *ChangeRequestSummary) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ChangeRequestSummary) HasExternalId added in v1.0.8

func (o *ChangeRequestSummary) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ChangeRequestSummary) HasId added in v1.0.8

func (o *ChangeRequestSummary) HasId() bool

HasId returns a boolean if a field has been set.

func (*ChangeRequestSummary) HasName added in v1.0.8

func (o *ChangeRequestSummary) HasName() bool

HasName returns a boolean if a field has been set.

func (*ChangeRequestSummary) HasTenantId added in v1.0.8

func (o *ChangeRequestSummary) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ChangeRequestSummary) MarshalJSON added in v1.0.8

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

func (*ChangeRequestSummary) SetAttributes added in v1.0.8

func (o *ChangeRequestSummary) 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 (*ChangeRequestSummary) SetDescription added in v1.0.8

func (o *ChangeRequestSummary) SetDescription(v string)

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

func (*ChangeRequestSummary) SetExternalId added in v1.0.8

func (o *ChangeRequestSummary) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ChangeRequestSummary) SetId added in v1.0.8

func (o *ChangeRequestSummary) SetId(v string)

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

func (*ChangeRequestSummary) SetName added in v1.0.8

func (o *ChangeRequestSummary) SetName(v string)

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

func (*ChangeRequestSummary) SetTenantId added in v1.0.8

func (o *ChangeRequestSummary) SetTenantId(v string)

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

func (*ChangeRequestSummary) SetTenantIdNil added in v1.0.8

func (o *ChangeRequestSummary) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ChangeRequestSummary) UnmarshalJSON added in v1.0.8

func (o *ChangeRequestSummary) UnmarshalJSON(bytes []byte) (err error)

func (*ChangeRequestSummary) UnsetTenantId added in v1.0.8

func (o *ChangeRequestSummary) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ChangeRequestUpdate added in v1.0.8

type ChangeRequestUpdate struct {
	Name                 *string                            `json:"name,omitempty"`
	Description          *string                            `json:"description,omitempty"`
	Attributes           *map[string]map[string]interface{} `json:"attributes,omitempty"`
	TenantId             NullableString                     `json:"tenantId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequestUpdate struct for ChangeRequestUpdate

func NewChangeRequestUpdate added in v1.0.8

func NewChangeRequestUpdate() *ChangeRequestUpdate

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

func NewChangeRequestUpdateWithDefaults added in v1.0.8

func NewChangeRequestUpdateWithDefaults() *ChangeRequestUpdate

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

func (*ChangeRequestUpdate) GetAttributes added in v1.0.8

func (o *ChangeRequestUpdate) GetAttributes() map[string]map[string]interface{}

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

func (*ChangeRequestUpdate) GetAttributesOk added in v1.0.8

func (o *ChangeRequestUpdate) 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 (*ChangeRequestUpdate) GetDescription added in v1.0.8

func (o *ChangeRequestUpdate) GetDescription() string

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

func (*ChangeRequestUpdate) GetDescriptionOk added in v1.0.8

func (o *ChangeRequestUpdate) 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 (*ChangeRequestUpdate) GetName added in v1.0.8

func (o *ChangeRequestUpdate) GetName() string

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

func (*ChangeRequestUpdate) GetNameOk added in v1.0.8

func (o *ChangeRequestUpdate) 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 (*ChangeRequestUpdate) GetTenantId added in v1.0.8

func (o *ChangeRequestUpdate) GetTenantId() string

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

func (*ChangeRequestUpdate) GetTenantIdOk added in v1.0.8

func (o *ChangeRequestUpdate) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequestUpdate) HasAttributes added in v1.0.8

func (o *ChangeRequestUpdate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ChangeRequestUpdate) HasDescription added in v1.0.8

func (o *ChangeRequestUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ChangeRequestUpdate) HasName added in v1.0.8

func (o *ChangeRequestUpdate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ChangeRequestUpdate) HasTenantId added in v1.0.8

func (o *ChangeRequestUpdate) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ChangeRequestUpdate) MarshalJSON added in v1.0.8

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

func (*ChangeRequestUpdate) SetAttributes added in v1.0.8

func (o *ChangeRequestUpdate) 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 (*ChangeRequestUpdate) SetDescription added in v1.0.8

func (o *ChangeRequestUpdate) SetDescription(v string)

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

func (*ChangeRequestUpdate) SetName added in v1.0.8

func (o *ChangeRequestUpdate) SetName(v string)

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

func (*ChangeRequestUpdate) SetTenantId added in v1.0.8

func (o *ChangeRequestUpdate) SetTenantId(v string)

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

func (*ChangeRequestUpdate) SetTenantIdNil added in v1.0.8

func (o *ChangeRequestUpdate) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ChangeRequestUpdate) UnmarshalJSON added in v1.0.8

func (o *ChangeRequestUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*ChangeRequestUpdate) UnsetTenantId added in v1.0.8

func (o *ChangeRequestUpdate) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ChangeRequestsPage added in v1.0.8

type ChangeRequestsPage struct {
	Page                 *int32                  `json:"page,omitempty"`
	PageSize             *int32                  `json:"pageSize,omitempty"`
	TotalItems           NullableInt64           `json:"totalItems,omitempty"`
	HasNext              NullableBool            `json:"hasNext,omitempty"`
	HasPrevious          NullableBool            `json:"hasPrevious,omitempty"`
	SortBy               NullableString          `json:"sortBy,omitempty"`
	SortOrder            NullableString          `json:"sortOrder,omitempty"`
	Contents             *[]ChangeRequestSummary `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequestsPage struct for ChangeRequestsPage

func NewChangeRequestsPage added in v1.0.8

func NewChangeRequestsPage() *ChangeRequestsPage

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

func NewChangeRequestsPageWithDefaults added in v1.0.8

func NewChangeRequestsPageWithDefaults() *ChangeRequestsPage

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

func (*ChangeRequestsPage) GetContents added in v1.0.8

func (o *ChangeRequestsPage) GetContents() []ChangeRequestSummary

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

func (*ChangeRequestsPage) GetContentsOk added in v1.0.8

func (o *ChangeRequestsPage) GetContentsOk() (*[]ChangeRequestSummary, 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 (*ChangeRequestsPage) GetHasNext added in v1.0.8

func (o *ChangeRequestsPage) GetHasNext() bool

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

func (*ChangeRequestsPage) GetHasNextOk added in v1.0.8

func (o *ChangeRequestsPage) 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 (*ChangeRequestsPage) GetHasPrevious added in v1.0.8

func (o *ChangeRequestsPage) GetHasPrevious() bool

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

func (*ChangeRequestsPage) GetHasPreviousOk added in v1.0.8

func (o *ChangeRequestsPage) 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 (*ChangeRequestsPage) GetPage added in v1.0.8

func (o *ChangeRequestsPage) GetPage() int32

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

func (*ChangeRequestsPage) GetPageOk added in v1.0.8

func (o *ChangeRequestsPage) 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 (*ChangeRequestsPage) GetPageSize added in v1.0.8

func (o *ChangeRequestsPage) GetPageSize() int32

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

func (*ChangeRequestsPage) GetPageSizeOk added in v1.0.8

func (o *ChangeRequestsPage) 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 (*ChangeRequestsPage) GetSortBy added in v1.0.8

func (o *ChangeRequestsPage) GetSortBy() string

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

func (*ChangeRequestsPage) GetSortByOk added in v1.0.8

func (o *ChangeRequestsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequestsPage) GetSortOrder added in v1.0.8

func (o *ChangeRequestsPage) GetSortOrder() string

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

func (*ChangeRequestsPage) GetSortOrderOk added in v1.0.8

func (o *ChangeRequestsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequestsPage) GetTotalItems added in v1.0.8

func (o *ChangeRequestsPage) GetTotalItems() int64

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

func (*ChangeRequestsPage) GetTotalItemsOk added in v1.0.8

func (o *ChangeRequestsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeRequestsPage) HasContents added in v1.0.8

func (o *ChangeRequestsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasHasNext added in v1.0.8

func (o *ChangeRequestsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasHasPrevious added in v1.0.8

func (o *ChangeRequestsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasPage added in v1.0.8

func (o *ChangeRequestsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasPageSize added in v1.0.8

func (o *ChangeRequestsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasSortBy added in v1.0.8

func (o *ChangeRequestsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasSortOrder added in v1.0.8

func (o *ChangeRequestsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*ChangeRequestsPage) HasTotalItems added in v1.0.8

func (o *ChangeRequestsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ChangeRequestsPage) MarshalJSON added in v1.0.8

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

func (*ChangeRequestsPage) SetContents added in v1.0.8

func (o *ChangeRequestsPage) SetContents(v []ChangeRequestSummary)

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

func (*ChangeRequestsPage) SetHasNext added in v1.0.8

func (o *ChangeRequestsPage) SetHasNext(v bool)

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

func (*ChangeRequestsPage) SetHasNextNil added in v1.0.8

func (o *ChangeRequestsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*ChangeRequestsPage) SetHasPrevious added in v1.0.8

func (o *ChangeRequestsPage) SetHasPrevious(v bool)

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

func (*ChangeRequestsPage) SetHasPreviousNil added in v1.0.8

func (o *ChangeRequestsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*ChangeRequestsPage) SetPage added in v1.0.8

func (o *ChangeRequestsPage) SetPage(v int32)

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

func (*ChangeRequestsPage) SetPageSize added in v1.0.8

func (o *ChangeRequestsPage) SetPageSize(v int32)

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

func (*ChangeRequestsPage) SetSortBy added in v1.0.8

func (o *ChangeRequestsPage) SetSortBy(v string)

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

func (*ChangeRequestsPage) SetSortByNil added in v1.0.8

func (o *ChangeRequestsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*ChangeRequestsPage) SetSortOrder added in v1.0.8

func (o *ChangeRequestsPage) SetSortOrder(v string)

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

func (*ChangeRequestsPage) SetSortOrderNil added in v1.0.8

func (o *ChangeRequestsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*ChangeRequestsPage) SetTotalItems added in v1.0.8

func (o *ChangeRequestsPage) SetTotalItems(v int64)

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

func (*ChangeRequestsPage) SetTotalItemsNil added in v1.0.8

func (o *ChangeRequestsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*ChangeRequestsPage) UnmarshalJSON added in v1.0.8

func (o *ChangeRequestsPage) UnmarshalJSON(bytes []byte) (err error)

func (*ChangeRequestsPage) UnsetHasNext added in v1.0.8

func (o *ChangeRequestsPage) UnsetHasNext()

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

func (*ChangeRequestsPage) UnsetHasPrevious added in v1.0.8

func (o *ChangeRequestsPage) UnsetHasPrevious()

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

func (*ChangeRequestsPage) UnsetSortBy added in v1.0.8

func (o *ChangeRequestsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*ChangeRequestsPage) UnsetSortOrder added in v1.0.8

func (o *ChangeRequestsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*ChangeRequestsPage) UnsetTotalItems added in v1.0.8

func (o *ChangeRequestsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type ChangeRequestsPageAllOf added in v1.0.8

type ChangeRequestsPageAllOf struct {
	Contents             *[]ChangeRequestSummary `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

ChangeRequestsPageAllOf struct for ChangeRequestsPageAllOf

func NewChangeRequestsPageAllOf added in v1.0.8

func NewChangeRequestsPageAllOf() *ChangeRequestsPageAllOf

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

func NewChangeRequestsPageAllOfWithDefaults added in v1.0.8

func NewChangeRequestsPageAllOfWithDefaults() *ChangeRequestsPageAllOf

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

func (*ChangeRequestsPageAllOf) GetContents added in v1.0.8

func (o *ChangeRequestsPageAllOf) GetContents() []ChangeRequestSummary

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

func (*ChangeRequestsPageAllOf) GetContentsOk added in v1.0.8

func (o *ChangeRequestsPageAllOf) GetContentsOk() (*[]ChangeRequestSummary, 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 (*ChangeRequestsPageAllOf) HasContents added in v1.0.8

func (o *ChangeRequestsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (ChangeRequestsPageAllOf) MarshalJSON added in v1.0.8

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

func (*ChangeRequestsPageAllOf) SetContents added in v1.0.8

func (o *ChangeRequestsPageAllOf) SetContents(v []ChangeRequestSummary)

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

func (*ChangeRequestsPageAllOf) UnmarshalJSON added in v1.0.8

func (o *ChangeRequestsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CostSummary added in v1.0.8

type CostSummary struct {
	Type                 *string         `json:"type,omitempty"`
	Subtype              *string         `json:"subtype,omitempty"`
	Cost                 NullableFloat64 `json:"cost,omitempty"`
	Price                NullableFloat64 `json:"price,omitempty"`
	AdditionalProperties map[string]interface{}
}

CostSummary struct for CostSummary

func NewCostSummary added in v1.0.8

func NewCostSummary() *CostSummary

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

func NewCostSummaryWithDefaults added in v1.0.8

func NewCostSummaryWithDefaults() *CostSummary

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

func (*CostSummary) GetCost added in v1.0.8

func (o *CostSummary) GetCost() float64

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

func (*CostSummary) GetCostOk added in v1.0.8

func (o *CostSummary) GetCostOk() (*float64, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CostSummary) GetPrice added in v1.0.8

func (o *CostSummary) GetPrice() float64

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

func (*CostSummary) GetPriceOk added in v1.0.8

func (o *CostSummary) GetPriceOk() (*float64, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CostSummary) GetSubtype added in v1.0.8

func (o *CostSummary) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*CostSummary) GetSubtypeOk added in v1.0.8

func (o *CostSummary) 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 (*CostSummary) GetType added in v1.0.8

func (o *CostSummary) GetType() string

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

func (*CostSummary) GetTypeOk added in v1.0.8

func (o *CostSummary) 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 (*CostSummary) HasCost added in v1.0.8

func (o *CostSummary) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*CostSummary) HasPrice added in v1.0.8

func (o *CostSummary) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CostSummary) HasSubtype added in v1.0.8

func (o *CostSummary) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*CostSummary) HasType added in v1.0.8

func (o *CostSummary) HasType() bool

HasType returns a boolean if a field has been set.

func (CostSummary) MarshalJSON added in v1.0.8

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

func (*CostSummary) SetCost added in v1.0.8

func (o *CostSummary) SetCost(v float64)

SetCost gets a reference to the given NullableFloat64 and assigns it to the Cost field.

func (*CostSummary) SetCostNil added in v1.0.8

func (o *CostSummary) SetCostNil()

SetCostNil sets the value for Cost to be an explicit nil

func (*CostSummary) SetPrice added in v1.0.8

func (o *CostSummary) SetPrice(v float64)

SetPrice gets a reference to the given NullableFloat64 and assigns it to the Price field.

func (*CostSummary) SetPriceNil added in v1.0.8

func (o *CostSummary) SetPriceNil()

SetPriceNil sets the value for Price to be an explicit nil

func (*CostSummary) SetSubtype added in v1.0.8

func (o *CostSummary) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*CostSummary) SetType added in v1.0.8

func (o *CostSummary) SetType(v string)

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

func (*CostSummary) UnmarshalJSON added in v1.0.8

func (o *CostSummary) UnmarshalJSON(bytes []byte) (err error)

func (*CostSummary) UnsetCost added in v1.0.8

func (o *CostSummary) UnsetCost()

UnsetCost ensures that no value is present for Cost, not even an explicit nil

func (*CostSummary) UnsetPrice added in v1.0.8

func (o *CostSummary) UnsetPrice()

UnsetPrice ensures that no value is present for Price, not even an explicit nil

type Device

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

Device struct for Device

func NewDevice

func NewDevice(tenantId string, managed bool, onboardType string, name string, model string, type_ string) *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]interface{}

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

func (*Device) GetAttributesOk

func (o *Device) GetAttributesOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetComplianceState added in v1.0.5

func (o *Device) GetComplianceState() DeviceComplianceState

GetComplianceState returns the ComplianceState field value if set, zero value otherwise.

func (*Device) GetComplianceStateOk added in v1.0.5

func (o *Device) GetComplianceStateOk() (*DeviceComplianceState, bool)

GetComplianceStateOk returns a tuple with the ComplianceState 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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

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

func (*Device) GetOnboardInformationOk

func (o *Device) GetOnboardInformationOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetOnboardType

func (o *Device) GetOnboardType() string

GetOnboardType returns the OnboardType field value

func (*Device) GetOnboardTypeOk

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

GetOnboardTypeOk returns a tuple with the OnboardType field value 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 if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetSerialKeyOk

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

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

func (*Device) GetServiceInstanceId added in v1.0.1

func (o *Device) GetServiceInstanceId() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetServiceType

func (o *Device) GetServiceType() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetSubType

func (o *Device) GetSubType() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetSubscriptionId

func (o *Device) GetSubscriptionId() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetTags

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

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise (both if not set or set to explicit null).

func (*Device) GetVersionOk

func (o *Device) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Device) GetVulnerabilityState added in v1.0.5

func (o *Device) GetVulnerabilityState() DeviceVulnerabilityState

GetVulnerabilityState returns the VulnerabilityState field value if set, zero value otherwise.

func (*Device) GetVulnerabilityStateOk added in v1.0.5

func (o *Device) GetVulnerabilityStateOk() (*DeviceVulnerabilityState, bool)

GetVulnerabilityStateOk returns a tuple with the VulnerabilityState field value if set, nil otherwise 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) HasComplianceState added in v1.0.5

func (o *Device) HasComplianceState() bool

HasComplianceState 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) HasProviderId

func (o *Device) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*Device) HasSerialKey added in v1.0.5

func (o *Device) HasSerialKey() bool

HasSerialKey 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) HasVersion added in v1.0.5

func (o *Device) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*Device) HasVulnerabilityState added in v1.0.5

func (o *Device) HasVulnerabilityState() bool

HasVulnerabilityState 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]interface{})

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

func (*Device) SetComplianceState added in v1.0.5

func (o *Device) SetComplianceState(v DeviceComplianceState)

SetComplianceState gets a reference to the given DeviceComplianceState and assigns it to the ComplianceState 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 NullableTime and assigns it to the ModifiedOn field.

func (*Device) SetModifiedOnNil added in v1.0.5

func (o *Device) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*Device) SetName

func (o *Device) SetName(v string)

SetName sets field value

func (*Device) SetOnboardInformation

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

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

func (*Device) SetOnboardType

func (o *Device) SetOnboardType(v string)

SetOnboardType sets field value

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 gets a reference to the given NullableString and assigns it to the SerialKey field.

func (*Device) SetSerialKeyNil added in v1.0.5

func (o *Device) SetSerialKeyNil()

SetSerialKeyNil sets the value for SerialKey to be an explicit nil

func (*Device) SetServiceInstanceId added in v1.0.1

func (o *Device) SetServiceInstanceId(v string)

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

func (*Device) SetServiceInstanceIdNil added in v1.0.8

func (o *Device) SetServiceInstanceIdNil()

SetServiceInstanceIdNil sets the value for ServiceInstanceId to be an explicit nil

func (*Device) SetServiceType

func (o *Device) SetServiceType(v string)

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

func (*Device) SetServiceTypeNil added in v1.0.5

func (o *Device) SetServiceTypeNil()

SetServiceTypeNil sets the value for ServiceType to be an explicit nil

func (*Device) SetSubType

func (o *Device) SetSubType(v string)

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

func (*Device) SetSubTypeNil added in v1.0.2

func (o *Device) SetSubTypeNil()

SetSubTypeNil sets the value for SubType to be an explicit nil

func (*Device) SetSubscriptionId

func (o *Device) SetSubscriptionId(v string)

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

func (*Device) SetSubscriptionIdNil added in v1.0.8

func (o *Device) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

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 gets a reference to the given NullableString and assigns it to the Version field.

func (*Device) SetVersionNil added in v1.0.5

func (o *Device) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (*Device) SetVulnerabilityState added in v1.0.5

func (o *Device) SetVulnerabilityState(v DeviceVulnerabilityState)

SetVulnerabilityState gets a reference to the given DeviceVulnerabilityState and assigns it to the VulnerabilityState field.

func (*Device) UnmarshalJSON added in v1.0.5

func (o *Device) UnmarshalJSON(bytes []byte) (err error)

func (*Device) UnsetModifiedOn added in v1.0.5

func (o *Device) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*Device) UnsetSerialKey added in v1.0.5

func (o *Device) UnsetSerialKey()

UnsetSerialKey ensures that no value is present for SerialKey, not even an explicit nil

func (*Device) UnsetServiceInstanceId added in v1.0.8

func (o *Device) UnsetServiceInstanceId()

UnsetServiceInstanceId ensures that no value is present for ServiceInstanceId, not even an explicit nil

func (*Device) UnsetServiceType added in v1.0.5

func (o *Device) UnsetServiceType()

UnsetServiceType ensures that no value is present for ServiceType, not even an explicit nil

func (*Device) UnsetSubType added in v1.0.2

func (o *Device) UnsetSubType()

UnsetSubType ensures that no value is present for SubType, not even an explicit nil

func (*Device) UnsetSubscriptionId added in v1.0.8

func (o *Device) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

func (*Device) UnsetVersion added in v1.0.5

func (o *Device) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type DeviceAllOf

type DeviceAllOf struct {
	Id                   *string                   `json:"id,omitempty"`
	UserId               *string                   `json:"userId,omitempty"`
	ProviderId           *string                   `json:"providerId,omitempty"`
	VulnerabilityState   *DeviceVulnerabilityState `json:"vulnerabilityState,omitempty"`
	CreatedOn            *time.Time                `json:"createdOn,omitempty"`
	ModifiedOn           NullableTime              `json:"modifiedOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetVulnerabilityState added in v1.0.5

func (o *DeviceAllOf) GetVulnerabilityState() DeviceVulnerabilityState

GetVulnerabilityState returns the VulnerabilityState field value if set, zero value otherwise.

func (*DeviceAllOf) GetVulnerabilityStateOk added in v1.0.5

func (o *DeviceAllOf) GetVulnerabilityStateOk() (*DeviceVulnerabilityState, bool)

GetVulnerabilityStateOk returns a tuple with the VulnerabilityState 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) HasVulnerabilityState added in v1.0.5

func (o *DeviceAllOf) HasVulnerabilityState() bool

HasVulnerabilityState 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 NullableTime and assigns it to the ModifiedOn field.

func (*DeviceAllOf) SetModifiedOnNil added in v1.0.5

func (o *DeviceAllOf) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

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.

func (*DeviceAllOf) SetVulnerabilityState added in v1.0.5

func (o *DeviceAllOf) SetVulnerabilityState(v DeviceVulnerabilityState)

SetVulnerabilityState gets a reference to the given DeviceVulnerabilityState and assigns it to the VulnerabilityState field.

func (*DeviceAllOf) UnmarshalJSON added in v1.0.5

func (o *DeviceAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceAllOf) UnsetModifiedOn added in v1.0.5

func (o *DeviceAllOf) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

type DeviceComplianceState added in v1.0.5

type DeviceComplianceState string

DeviceComplianceState the model 'DeviceComplianceState'

const (
	DEVICECOMPLIANCESTATE_COMPLIANT      DeviceComplianceState = "COMPLIANT"
	DEVICECOMPLIANCESTATE_NOT_COMPLIANT  DeviceComplianceState = "NOT_COMPLIANT"
	DEVICECOMPLIANCESTATE_NOT_APPLICABLE DeviceComplianceState = "NOT_APPLICABLE"
	DEVICECOMPLIANCESTATE_UNKNOWN        DeviceComplianceState = "UNKNOWN"
)

List of DeviceComplianceState

func (DeviceComplianceState) Ptr added in v1.0.5

Ptr returns reference to DeviceComplianceState value

func (*DeviceComplianceState) UnmarshalJSON added in v1.0.5

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

type DeviceCreate

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

DeviceCreate struct for DeviceCreate

func NewDeviceCreate

func NewDeviceCreate(tenantId string, managed bool, onboardType string, name string, model string, type_ string) *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]interface{}

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

func (*DeviceCreate) GetAttributesOk

func (o *DeviceCreate) GetAttributesOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) GetComplianceState added in v1.0.5

func (o *DeviceCreate) GetComplianceState() DeviceComplianceState

GetComplianceState returns the ComplianceState field value if set, zero value otherwise.

func (*DeviceCreate) GetComplianceStateOk added in v1.0.5

func (o *DeviceCreate) GetComplianceStateOk() (*DeviceComplianceState, bool)

GetComplianceStateOk returns a tuple with the ComplianceState 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]interface{}

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

func (*DeviceCreate) GetOnboardInformationOk

func (o *DeviceCreate) GetOnboardInformationOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) GetOnboardType

func (o *DeviceCreate) GetOnboardType() string

GetOnboardType returns the OnboardType field value

func (*DeviceCreate) GetOnboardTypeOk

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

GetOnboardTypeOk returns a tuple with the OnboardType field value 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 if set, zero value otherwise (both if not set or set to explicit null).

func (*DeviceCreate) GetSerialKeyOk

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

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

func (*DeviceCreate) GetServiceInstanceId added in v1.0.1

func (o *DeviceCreate) GetServiceInstanceId() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) GetServiceType

func (o *DeviceCreate) GetServiceType() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) GetSubType

func (o *DeviceCreate) GetSubType() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) GetSubscriptionId

func (o *DeviceCreate) GetSubscriptionId() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) GetTags

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

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise (both if not set or set to explicit null).

func (*DeviceCreate) GetVersionOk

func (o *DeviceCreate) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreate) HasAttributes

func (o *DeviceCreate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*DeviceCreate) HasComplianceState added in v1.0.5

func (o *DeviceCreate) HasComplianceState() bool

HasComplianceState 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) HasSerialKey added in v1.0.5

func (o *DeviceCreate) HasSerialKey() bool

HasSerialKey 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) HasVersion added in v1.0.5

func (o *DeviceCreate) HasVersion() bool

HasVersion 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]interface{})

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

func (*DeviceCreate) SetComplianceState added in v1.0.5

func (o *DeviceCreate) SetComplianceState(v DeviceComplianceState)

SetComplianceState gets a reference to the given DeviceComplianceState and assigns it to the ComplianceState 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]interface{})

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

func (*DeviceCreate) SetOnboardType

func (o *DeviceCreate) SetOnboardType(v string)

SetOnboardType sets field value

func (*DeviceCreate) SetSerialKey

func (o *DeviceCreate) SetSerialKey(v string)

SetSerialKey gets a reference to the given NullableString and assigns it to the SerialKey field.

func (*DeviceCreate) SetSerialKeyNil added in v1.0.5

func (o *DeviceCreate) SetSerialKeyNil()

SetSerialKeyNil sets the value for SerialKey to be an explicit nil

func (*DeviceCreate) SetServiceInstanceId added in v1.0.1

func (o *DeviceCreate) SetServiceInstanceId(v string)

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

func (*DeviceCreate) SetServiceInstanceIdNil added in v1.0.8

func (o *DeviceCreate) SetServiceInstanceIdNil()

SetServiceInstanceIdNil sets the value for ServiceInstanceId to be an explicit nil

func (*DeviceCreate) SetServiceType

func (o *DeviceCreate) SetServiceType(v string)

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

func (*DeviceCreate) SetServiceTypeNil added in v1.0.5

func (o *DeviceCreate) SetServiceTypeNil()

SetServiceTypeNil sets the value for ServiceType to be an explicit nil

func (*DeviceCreate) SetSubType

func (o *DeviceCreate) SetSubType(v string)

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

func (*DeviceCreate) SetSubTypeNil added in v1.0.2

func (o *DeviceCreate) SetSubTypeNil()

SetSubTypeNil sets the value for SubType to be an explicit nil

func (*DeviceCreate) SetSubscriptionId

func (o *DeviceCreate) SetSubscriptionId(v string)

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

func (*DeviceCreate) SetSubscriptionIdNil added in v1.0.8

func (o *DeviceCreate) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

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 gets a reference to the given NullableString and assigns it to the Version field.

func (*DeviceCreate) SetVersionNil added in v1.0.5

func (o *DeviceCreate) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (*DeviceCreate) UnmarshalJSON added in v1.0.5

func (o *DeviceCreate) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceCreate) UnsetSerialKey added in v1.0.5

func (o *DeviceCreate) UnsetSerialKey()

UnsetSerialKey ensures that no value is present for SerialKey, not even an explicit nil

func (*DeviceCreate) UnsetServiceInstanceId added in v1.0.8

func (o *DeviceCreate) UnsetServiceInstanceId()

UnsetServiceInstanceId ensures that no value is present for ServiceInstanceId, not even an explicit nil

func (*DeviceCreate) UnsetServiceType added in v1.0.5

func (o *DeviceCreate) UnsetServiceType()

UnsetServiceType ensures that no value is present for ServiceType, not even an explicit nil

func (*DeviceCreate) UnsetSubType added in v1.0.2

func (o *DeviceCreate) UnsetSubType()

UnsetSubType ensures that no value is present for SubType, not even an explicit nil

func (*DeviceCreate) UnsetSubscriptionId added in v1.0.8

func (o *DeviceCreate) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

func (*DeviceCreate) UnsetVersion added in v1.0.5

func (o *DeviceCreate) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type DeviceCreateAllOf

type DeviceCreateAllOf struct {
	ServiceInstanceId    NullableString `json:"serviceInstanceId,omitempty"`
	SubscriptionId       NullableString `json:"subscriptionId,omitempty"`
	TenantId             string         `json:"tenantId"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceCreateAllOf) GetSubscriptionId

func (o *DeviceCreateAllOf) GetSubscriptionId() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the ServiceInstanceId field.

func (*DeviceCreateAllOf) SetServiceInstanceIdNil added in v1.0.8

func (o *DeviceCreateAllOf) SetServiceInstanceIdNil()

SetServiceInstanceIdNil sets the value for ServiceInstanceId to be an explicit nil

func (*DeviceCreateAllOf) SetSubscriptionId

func (o *DeviceCreateAllOf) SetSubscriptionId(v string)

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

func (*DeviceCreateAllOf) SetSubscriptionIdNil added in v1.0.8

func (o *DeviceCreateAllOf) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*DeviceCreateAllOf) SetTenantId

func (o *DeviceCreateAllOf) SetTenantId(v string)

SetTenantId sets field value

func (*DeviceCreateAllOf) UnmarshalJSON added in v1.0.5

func (o *DeviceCreateAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceCreateAllOf) UnsetServiceInstanceId added in v1.0.8

func (o *DeviceCreateAllOf) UnsetServiceInstanceId()

UnsetServiceInstanceId ensures that no value is present for ServiceInstanceId, not even an explicit nil

func (*DeviceCreateAllOf) UnsetSubscriptionId added in v1.0.8

func (o *DeviceCreateAllOf) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type DevicePatch added in v1.0.5

type DevicePatch struct {
	Name                 *string                `json:"name,omitempty"`
	Model                *string                `json:"model,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	SubType              NullableString         `json:"subType,omitempty"`
	SerialKey            NullableString         `json:"serialKey,omitempty"`
	Version              NullableString         `json:"version,omitempty"`
	ComplianceState      *DeviceComplianceState `json:"complianceState,omitempty"`
	AdditionalProperties map[string]interface{}
}

DevicePatch struct for DevicePatch

func NewDevicePatch added in v1.0.5

func NewDevicePatch() *DevicePatch

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

func NewDevicePatchWithDefaults added in v1.0.5

func NewDevicePatchWithDefaults() *DevicePatch

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

func (*DevicePatch) GetComplianceState added in v1.0.5

func (o *DevicePatch) GetComplianceState() DeviceComplianceState

GetComplianceState returns the ComplianceState field value if set, zero value otherwise.

func (*DevicePatch) GetComplianceStateOk added in v1.0.5

func (o *DevicePatch) GetComplianceStateOk() (*DeviceComplianceState, bool)

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

func (*DevicePatch) GetModel added in v1.0.5

func (o *DevicePatch) GetModel() string

GetModel returns the Model field value if set, zero value otherwise.

func (*DevicePatch) GetModelOk added in v1.0.5

func (o *DevicePatch) 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 (*DevicePatch) GetName added in v1.0.5

func (o *DevicePatch) GetName() string

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

func (*DevicePatch) GetNameOk added in v1.0.5

func (o *DevicePatch) 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 (*DevicePatch) GetSerialKey added in v1.0.5

func (o *DevicePatch) GetSerialKey() string

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

func (*DevicePatch) GetSerialKeyOk added in v1.0.5

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

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

func (*DevicePatch) GetSubType added in v1.0.5

func (o *DevicePatch) GetSubType() string

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

func (*DevicePatch) GetSubTypeOk added in v1.0.5

func (o *DevicePatch) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DevicePatch) GetType added in v1.0.5

func (o *DevicePatch) GetType() string

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

func (*DevicePatch) GetTypeOk added in v1.0.5

func (o *DevicePatch) 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 (*DevicePatch) GetVersion added in v1.0.5

func (o *DevicePatch) GetVersion() string

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

func (*DevicePatch) GetVersionOk added in v1.0.5

func (o *DevicePatch) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DevicePatch) HasComplianceState added in v1.0.5

func (o *DevicePatch) HasComplianceState() bool

HasComplianceState returns a boolean if a field has been set.

func (*DevicePatch) HasModel added in v1.0.5

func (o *DevicePatch) HasModel() bool

HasModel returns a boolean if a field has been set.

func (*DevicePatch) HasName added in v1.0.5

func (o *DevicePatch) HasName() bool

HasName returns a boolean if a field has been set.

func (*DevicePatch) HasSerialKey added in v1.0.5

func (o *DevicePatch) HasSerialKey() bool

HasSerialKey returns a boolean if a field has been set.

func (*DevicePatch) HasSubType added in v1.0.5

func (o *DevicePatch) HasSubType() bool

HasSubType returns a boolean if a field has been set.

func (*DevicePatch) HasType added in v1.0.5

func (o *DevicePatch) HasType() bool

HasType returns a boolean if a field has been set.

func (*DevicePatch) HasVersion added in v1.0.5

func (o *DevicePatch) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DevicePatch) MarshalJSON added in v1.0.5

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

func (*DevicePatch) SetComplianceState added in v1.0.5

func (o *DevicePatch) SetComplianceState(v DeviceComplianceState)

SetComplianceState gets a reference to the given DeviceComplianceState and assigns it to the ComplianceState field.

func (*DevicePatch) SetModel added in v1.0.5

func (o *DevicePatch) SetModel(v string)

SetModel gets a reference to the given string and assigns it to the Model field.

func (*DevicePatch) SetName added in v1.0.5

func (o *DevicePatch) SetName(v string)

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

func (*DevicePatch) SetSerialKey added in v1.0.5

func (o *DevicePatch) SetSerialKey(v string)

SetSerialKey gets a reference to the given NullableString and assigns it to the SerialKey field.

func (*DevicePatch) SetSerialKeyNil added in v1.0.5

func (o *DevicePatch) SetSerialKeyNil()

SetSerialKeyNil sets the value for SerialKey to be an explicit nil

func (*DevicePatch) SetSubType added in v1.0.5

func (o *DevicePatch) SetSubType(v string)

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

func (*DevicePatch) SetSubTypeNil added in v1.0.5

func (o *DevicePatch) SetSubTypeNil()

SetSubTypeNil sets the value for SubType to be an explicit nil

func (*DevicePatch) SetType added in v1.0.5

func (o *DevicePatch) SetType(v string)

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

func (*DevicePatch) SetVersion added in v1.0.5

func (o *DevicePatch) SetVersion(v string)

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

func (*DevicePatch) SetVersionNil added in v1.0.5

func (o *DevicePatch) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (*DevicePatch) UnmarshalJSON added in v1.0.5

func (o *DevicePatch) UnmarshalJSON(bytes []byte) (err error)

func (*DevicePatch) UnsetSerialKey added in v1.0.5

func (o *DevicePatch) UnsetSerialKey()

UnsetSerialKey ensures that no value is present for SerialKey, not even an explicit nil

func (*DevicePatch) UnsetSubType added in v1.0.5

func (o *DevicePatch) UnsetSubType()

UnsetSubType ensures that no value is present for SubType, not even an explicit nil

func (*DevicePatch) UnsetVersion added in v1.0.5

func (o *DevicePatch) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type DeviceSummary

type DeviceSummary struct {
	DeviceId             *string `json:"deviceId,omitempty"`
	ServiceId            *string `json:"serviceId,omitempty"`
	ServiceType          *string `json:"serviceType,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*DeviceSummary) UnmarshalJSON added in v1.0.5

func (o *DeviceSummary) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplate

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

DeviceTemplate struct for DeviceTemplate

func NewDeviceTemplate

func NewDeviceTemplate() *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 if set, zero value otherwise (both if not set or set to explicit null).

func (*DeviceTemplate) GetConfigContentOk

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

GetConfigContentOk returns a tuple with the ConfigContent field value if set, nil otherwise and 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) 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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetIsLatestVersion added in v1.0.5

func (o *DeviceTemplate) GetIsLatestVersion() bool

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

func (*DeviceTemplate) GetIsLatestVersionOk added in v1.0.5

func (o *DeviceTemplate) GetIsLatestVersionOk() (*bool, bool)

GetIsLatestVersionOk returns a tuple with the IsLatestVersion field value if set, nil otherwise and 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) GetName

func (o *DeviceTemplate) GetName() string

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

func (*DeviceTemplate) GetNameOk

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

func (o *DeviceTemplate) GetResourceProvider() string

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

func (*DeviceTemplate) GetResourceProviderOk

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

GetResourceProviderOk returns a tuple with the ResourceProvider field value if set, nil otherwise and 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) GetServiceType

func (o *DeviceTemplate) GetServiceType() string

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

func (*DeviceTemplate) GetServiceTypeOk

func (o *DeviceTemplate) 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 (*DeviceTemplate) GetTags added in v1.0.5

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

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

func (*DeviceTemplate) GetTagsOk added in v1.0.5

func (o *DeviceTemplate) GetTagsOk() (*[]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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceTemplate) GetTemplateParameterValidators

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

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasConfigContent added in v1.0.2

func (o *DeviceTemplate) HasConfigContent() bool

HasConfigContent returns a boolean if a field 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) HasIsLatestVersion added in v1.0.5

func (o *DeviceTemplate) HasIsLatestVersion() bool

HasIsLatestVersion returns a boolean if a field has been set.

func (*DeviceTemplate) HasName added in v1.0.2

func (o *DeviceTemplate) HasName() bool

HasName returns a boolean if a field has been set.

func (*DeviceTemplate) HasResourceProvider added in v1.0.2

func (o *DeviceTemplate) HasResourceProvider() bool

HasResourceProvider returns a boolean if a field has been set.

func (*DeviceTemplate) HasServiceType added in v1.0.2

func (o *DeviceTemplate) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*DeviceTemplate) HasTags added in v1.0.5

func (o *DeviceTemplate) HasTags() bool

HasTags 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 gets a reference to the given NullableString and assigns it to the ConfigContent field.

func (*DeviceTemplate) SetConfigContentNil added in v1.0.2

func (o *DeviceTemplate) SetConfigContentNil()

SetConfigContentNil sets the value for ConfigContent to be an explicit nil

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) SetIsLatestVersion added in v1.0.5

func (o *DeviceTemplate) SetIsLatestVersion(v bool)

SetIsLatestVersion gets a reference to the given NullableBool and assigns it to the IsLatestVersion field.

func (*DeviceTemplate) SetIsLatestVersionNil added in v1.0.5

func (o *DeviceTemplate) SetIsLatestVersionNil()

SetIsLatestVersionNil sets the value for IsLatestVersion to be an explicit nil

func (*DeviceTemplate) SetName

func (o *DeviceTemplate) SetName(v string)

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

func (*DeviceTemplate) SetResourceProvider

func (o *DeviceTemplate) SetResourceProvider(v string)

SetResourceProvider gets a reference to the given NullableString and assigns it to the ResourceProvider field.

func (*DeviceTemplate) SetResourceProviderNil added in v1.0.2

func (o *DeviceTemplate) SetResourceProviderNil()

SetResourceProviderNil sets the value for ResourceProvider to be an explicit nil

func (*DeviceTemplate) SetServiceType

func (o *DeviceTemplate) SetServiceType(v string)

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

func (*DeviceTemplate) SetTags added in v1.0.5

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

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

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) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplate) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceTemplate) UnsetConfigContent added in v1.0.2

func (o *DeviceTemplate) UnsetConfigContent()

UnsetConfigContent ensures that no value is present for ConfigContent, not even an explicit nil

func (*DeviceTemplate) UnsetIsLatestVersion added in v1.0.5

func (o *DeviceTemplate) UnsetIsLatestVersion()

UnsetIsLatestVersion ensures that no value is present for IsLatestVersion, not even an explicit nil

func (*DeviceTemplate) UnsetResourceProvider added in v1.0.2

func (o *DeviceTemplate) UnsetResourceProvider()

UnsetResourceProvider ensures that no value is present for ResourceProvider, not even an explicit nil

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               NullableBool `json:"global,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceTemplateAccess) GetTenantIds

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

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableBool and assigns it to the Global field.

func (*DeviceTemplateAccess) SetGlobalNil added in v1.0.2

func (o *DeviceTemplateAccess) SetGlobalNil()

SetGlobalNil sets the value for Global to be an explicit nil

func (*DeviceTemplateAccess) SetTenantIds

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

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

func (*DeviceTemplateAccess) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateAccess) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceTemplateAccess) UnsetGlobal added in v1.0.2

func (o *DeviceTemplateAccess) UnsetGlobal()

UnsetGlobal ensures that no value is present for Global, not even an explicit nil

type DeviceTemplateAccessResponse

type DeviceTemplateAccessResponse struct {
	FailureListOfTenants []string     `json:"failureListOfTenants,omitempty"`
	Global               NullableBool `json:"global,omitempty"`
	SuccessListOfTenants []string     `json:"successListOfTenants,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceTemplateAccessResponse) GetGlobal

func (o *DeviceTemplateAccessResponse) GetGlobal() bool

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceTemplateAccessResponse) GetSuccessListOfTenants

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

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableBool and assigns it to the Global field.

func (*DeviceTemplateAccessResponse) SetGlobalNil added in v1.0.2

func (o *DeviceTemplateAccessResponse) SetGlobalNil()

SetGlobalNil sets the value for Global to be an explicit nil

func (*DeviceTemplateAccessResponse) SetSuccessListOfTenants

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

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

func (*DeviceTemplateAccessResponse) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateAccessResponse) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceTemplateAccessResponse) UnsetGlobal added in v1.0.2

func (o *DeviceTemplateAccessResponse) UnsetGlobal()

UnsetGlobal ensures that no value is present for Global, not even an explicit nil

type DeviceTemplateAttachRequest

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

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.

func (*DeviceTemplateAttachRequest) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateAttachRequest) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplateBatchAttachRequest added in v1.0.8

type DeviceTemplateBatchAttachRequest struct {
	DeviceIds            *[]string                `json:"deviceIds,omitempty"`
	TemplateDetails      *[]DeviceTemplateDetails `json:"templateDetails,omitempty"`
	AdditionalProperties map[string]interface{}
}

DeviceTemplateBatchAttachRequest struct for DeviceTemplateBatchAttachRequest

func NewDeviceTemplateBatchAttachRequest added in v1.0.8

func NewDeviceTemplateBatchAttachRequest() *DeviceTemplateBatchAttachRequest

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

func NewDeviceTemplateBatchAttachRequestWithDefaults added in v1.0.8

func NewDeviceTemplateBatchAttachRequestWithDefaults() *DeviceTemplateBatchAttachRequest

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

func (*DeviceTemplateBatchAttachRequest) GetDeviceIds added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) GetDeviceIds() []string

GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.

func (*DeviceTemplateBatchAttachRequest) GetDeviceIdsOk added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) 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 (*DeviceTemplateBatchAttachRequest) GetTemplateDetails added in v1.0.8

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

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

func (*DeviceTemplateBatchAttachRequest) GetTemplateDetailsOk added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) 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 (*DeviceTemplateBatchAttachRequest) HasDeviceIds added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) HasDeviceIds() bool

HasDeviceIds returns a boolean if a field has been set.

func (*DeviceTemplateBatchAttachRequest) HasTemplateDetails added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) HasTemplateDetails() bool

HasTemplateDetails returns a boolean if a field has been set.

func (DeviceTemplateBatchAttachRequest) MarshalJSON added in v1.0.8

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

func (*DeviceTemplateBatchAttachRequest) SetDeviceIds added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) SetDeviceIds(v []string)

SetDeviceIds gets a reference to the given []string and assigns it to the DeviceIds field.

func (*DeviceTemplateBatchAttachRequest) SetTemplateDetails added in v1.0.8

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

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

func (*DeviceTemplateBatchAttachRequest) UnmarshalJSON added in v1.0.8

func (o *DeviceTemplateBatchAttachRequest) UnmarshalJSON(bytes []byte) (err error)

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"`
	Tags                        []string                      `json:"tags,omitempty"`
	AdditionalProperties        map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetTags added in v1.0.5

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

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

func (*DeviceTemplateCreate) GetTagsOk added in v1.0.5

func (o *DeviceTemplateCreate) GetTagsOk() (*[]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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasTags added in v1.0.5

func (o *DeviceTemplateCreate) HasTags() bool

HasTags 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) SetTags added in v1.0.5

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

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

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) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateCreate) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*DeviceTemplateDetails) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateDetails) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplateHistory

type DeviceTemplateHistory struct {
	Id                   *string      `json:"id,omitempty"`
	DeviceId             *string      `json:"deviceId,omitempty"`
	InstanceId           *string      `json:"instanceId,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"`
	LastUpdated          *time.Time   `json:"lastUpdated,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetInstanceId added in v1.0.2

func (o *DeviceTemplateHistory) GetInstanceId() string

GetInstanceId returns the InstanceId field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetInstanceIdOk added in v1.0.2

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

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

func (*DeviceTemplateHistory) GetLastUpdated added in v1.0.2

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

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetLastUpdatedOk added in v1.0.2

func (o *DeviceTemplateHistory) 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 (*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) HasInstanceId added in v1.0.2

func (o *DeviceTemplateHistory) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasLastUpdated added in v1.0.2

func (o *DeviceTemplateHistory) HasLastUpdated() bool

HasLastUpdated 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) SetInstanceId added in v1.0.2

func (o *DeviceTemplateHistory) SetInstanceId(v string)

SetInstanceId gets a reference to the given string and assigns it to the InstanceId field.

func (*DeviceTemplateHistory) SetLastUpdated added in v1.0.2

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

SetLastUpdated gets a reference to the given time.Time and assigns it to the LastUpdated 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.

func (*DeviceTemplateHistory) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateHistory) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplateHistorySummary added in v1.0.8

type DeviceTemplateHistorySummary struct {
	DeviceId                 *string `json:"deviceId,omitempty"`
	HttpStatus               *string `json:"httpStatus,omitempty"`
	DeviceTemplateHistoryUrl *string `json:"deviceTemplateHistoryUrl,omitempty"`
	AdditionalProperties     map[string]interface{}
}

DeviceTemplateHistorySummary struct for DeviceTemplateHistorySummary

func NewDeviceTemplateHistorySummary added in v1.0.8

func NewDeviceTemplateHistorySummary() *DeviceTemplateHistorySummary

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

func NewDeviceTemplateHistorySummaryWithDefaults added in v1.0.8

func NewDeviceTemplateHistorySummaryWithDefaults() *DeviceTemplateHistorySummary

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

func (*DeviceTemplateHistorySummary) GetDeviceId added in v1.0.8

func (o *DeviceTemplateHistorySummary) GetDeviceId() string

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

func (*DeviceTemplateHistorySummary) GetDeviceIdOk added in v1.0.8

func (o *DeviceTemplateHistorySummary) 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 (*DeviceTemplateHistorySummary) GetDeviceTemplateHistoryUrl added in v1.0.8

func (o *DeviceTemplateHistorySummary) GetDeviceTemplateHistoryUrl() string

GetDeviceTemplateHistoryUrl returns the DeviceTemplateHistoryUrl field value if set, zero value otherwise.

func (*DeviceTemplateHistorySummary) GetDeviceTemplateHistoryUrlOk added in v1.0.8

func (o *DeviceTemplateHistorySummary) GetDeviceTemplateHistoryUrlOk() (*string, bool)

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

func (*DeviceTemplateHistorySummary) GetHttpStatus added in v1.0.8

func (o *DeviceTemplateHistorySummary) GetHttpStatus() string

GetHttpStatus returns the HttpStatus field value if set, zero value otherwise.

func (*DeviceTemplateHistorySummary) GetHttpStatusOk added in v1.0.8

func (o *DeviceTemplateHistorySummary) GetHttpStatusOk() (*string, bool)

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

func (*DeviceTemplateHistorySummary) HasDeviceId added in v1.0.8

func (o *DeviceTemplateHistorySummary) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*DeviceTemplateHistorySummary) HasDeviceTemplateHistoryUrl added in v1.0.8

func (o *DeviceTemplateHistorySummary) HasDeviceTemplateHistoryUrl() bool

HasDeviceTemplateHistoryUrl returns a boolean if a field has been set.

func (*DeviceTemplateHistorySummary) HasHttpStatus added in v1.0.8

func (o *DeviceTemplateHistorySummary) HasHttpStatus() bool

HasHttpStatus returns a boolean if a field has been set.

func (DeviceTemplateHistorySummary) MarshalJSON added in v1.0.8

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

func (*DeviceTemplateHistorySummary) SetDeviceId added in v1.0.8

func (o *DeviceTemplateHistorySummary) SetDeviceId(v string)

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

func (*DeviceTemplateHistorySummary) SetDeviceTemplateHistoryUrl added in v1.0.8

func (o *DeviceTemplateHistorySummary) SetDeviceTemplateHistoryUrl(v string)

SetDeviceTemplateHistoryUrl gets a reference to the given string and assigns it to the DeviceTemplateHistoryUrl field.

func (*DeviceTemplateHistorySummary) SetHttpStatus added in v1.0.8

func (o *DeviceTemplateHistorySummary) SetHttpStatus(v string)

SetHttpStatus gets a reference to the given string and assigns it to the HttpStatus field.

func (*DeviceTemplateHistorySummary) UnmarshalJSON added in v1.0.8

func (o *DeviceTemplateHistorySummary) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplateUpdateDetails

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

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.

func (*DeviceTemplateUpdateDetails) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateUpdateDetails) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplateUpdateRequest

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

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.

func (*DeviceTemplateUpdateRequest) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type DeviceTemplateVersionCreate added in v1.0.5

type DeviceTemplateVersionCreate struct {
	Name                        string                        `json:"name"`
	ConfigContent               string                        `json:"configContent"`
	TemplateParameterValidators *[]TemplateParameterValidator `json:"templateParameterValidators,omitempty"`
	AdditionalProperties        map[string]interface{}
}

DeviceTemplateVersionCreate struct for DeviceTemplateVersionCreate

func NewDeviceTemplateVersionCreate added in v1.0.5

func NewDeviceTemplateVersionCreate(name string, configContent string) *DeviceTemplateVersionCreate

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

func NewDeviceTemplateVersionCreateWithDefaults added in v1.0.5

func NewDeviceTemplateVersionCreateWithDefaults() *DeviceTemplateVersionCreate

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

func (*DeviceTemplateVersionCreate) GetConfigContent added in v1.0.5

func (o *DeviceTemplateVersionCreate) GetConfigContent() string

GetConfigContent returns the ConfigContent field value

func (*DeviceTemplateVersionCreate) GetConfigContentOk added in v1.0.5

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

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

func (*DeviceTemplateVersionCreate) GetName added in v1.0.5

func (o *DeviceTemplateVersionCreate) GetName() string

GetName returns the Name field value

func (*DeviceTemplateVersionCreate) GetNameOk added in v1.0.5

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

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

func (*DeviceTemplateVersionCreate) GetTemplateParameterValidators added in v1.0.5

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

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

func (*DeviceTemplateVersionCreate) GetTemplateParameterValidatorsOk added in v1.0.5

func (o *DeviceTemplateVersionCreate) 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 (*DeviceTemplateVersionCreate) HasTemplateParameterValidators added in v1.0.5

func (o *DeviceTemplateVersionCreate) HasTemplateParameterValidators() bool

HasTemplateParameterValidators returns a boolean if a field has been set.

func (DeviceTemplateVersionCreate) MarshalJSON added in v1.0.5

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

func (*DeviceTemplateVersionCreate) SetConfigContent added in v1.0.5

func (o *DeviceTemplateVersionCreate) SetConfigContent(v string)

SetConfigContent sets field value

func (*DeviceTemplateVersionCreate) SetName added in v1.0.5

func (o *DeviceTemplateVersionCreate) SetName(v string)

SetName sets field value

func (*DeviceTemplateVersionCreate) SetTemplateParameterValidators added in v1.0.5

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

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

func (*DeviceTemplateVersionCreate) UnmarshalJSON added in v1.0.5

func (o *DeviceTemplateVersionCreate) UnmarshalJSON(bytes []byte) (err error)

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) CreateDeviceTemplateVersion added in v1.0.5

* CreateDeviceTemplateVersion Creates a new version of an existing device template. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateDeviceTemplateVersionRequest

func (*DeviceTemplatesApiService) CreateDeviceTemplateVersionExecute added in v1.0.5

* 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 {
	ServiceType          NullableString         `json:"serviceType,omitempty"`
	Tags                 map[string]string      `json:"tags,omitempty"`
	Managed              bool                   `json:"managed"`
	OnboardType          string                 `json:"onboardType"`
	OnboardInformation   map[string]interface{} `json:"onboardInformation,omitempty"`
	Attributes           map[string]interface{} `json:"attributes,omitempty"`
	Name                 string                 `json:"name"`
	Model                string                 `json:"model"`
	Type                 string                 `json:"type"`
	SubType              NullableString         `json:"subType,omitempty"`
	SerialKey            NullableString         `json:"serialKey,omitempty"`
	Version              NullableString         `json:"version,omitempty"`
	ComplianceState      *DeviceComplianceState `json:"complianceState,omitempty"`
	AdditionalProperties map[string]interface{}
}

DeviceUpdate struct for DeviceUpdate

func NewDeviceUpdate

func NewDeviceUpdate(managed bool, onboardType string, name string, model string, type_ string) *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]interface{}

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

func (*DeviceUpdate) GetAttributesOk

func (o *DeviceUpdate) GetAttributesOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdate) GetComplianceState added in v1.0.5

func (o *DeviceUpdate) GetComplianceState() DeviceComplianceState

GetComplianceState returns the ComplianceState field value if set, zero value otherwise.

func (*DeviceUpdate) GetComplianceStateOk added in v1.0.5

func (o *DeviceUpdate) GetComplianceStateOk() (*DeviceComplianceState, bool)

GetComplianceStateOk returns a tuple with the ComplianceState 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]interface{}

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

func (*DeviceUpdate) GetOnboardInformationOk

func (o *DeviceUpdate) GetOnboardInformationOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdate) GetOnboardType

func (o *DeviceUpdate) GetOnboardType() string

GetOnboardType returns the OnboardType field value

func (*DeviceUpdate) GetOnboardTypeOk

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

GetOnboardTypeOk returns a tuple with the OnboardType field value 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 if set, zero value otherwise (both if not set or set to explicit null).

func (*DeviceUpdate) GetSerialKeyOk

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

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

func (*DeviceUpdate) GetServiceType

func (o *DeviceUpdate) GetServiceType() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdate) GetSubType

func (o *DeviceUpdate) GetSubType() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdate) GetTags

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

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise (both if not set or set to explicit null).

func (*DeviceUpdate) GetVersionOk

func (o *DeviceUpdate) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdate) HasAttributes

func (o *DeviceUpdate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*DeviceUpdate) HasComplianceState added in v1.0.5

func (o *DeviceUpdate) HasComplianceState() bool

HasComplianceState 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) HasSerialKey added in v1.0.5

func (o *DeviceUpdate) HasSerialKey() bool

HasSerialKey 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) HasVersion added in v1.0.5

func (o *DeviceUpdate) HasVersion() bool

HasVersion 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]interface{})

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

func (*DeviceUpdate) SetComplianceState added in v1.0.5

func (o *DeviceUpdate) SetComplianceState(v DeviceComplianceState)

SetComplianceState gets a reference to the given DeviceComplianceState and assigns it to the ComplianceState 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]interface{})

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

func (*DeviceUpdate) SetOnboardType

func (o *DeviceUpdate) SetOnboardType(v string)

SetOnboardType sets field value

func (*DeviceUpdate) SetSerialKey

func (o *DeviceUpdate) SetSerialKey(v string)

SetSerialKey gets a reference to the given NullableString and assigns it to the SerialKey field.

func (*DeviceUpdate) SetSerialKeyNil added in v1.0.5

func (o *DeviceUpdate) SetSerialKeyNil()

SetSerialKeyNil sets the value for SerialKey to be an explicit nil

func (*DeviceUpdate) SetServiceType

func (o *DeviceUpdate) SetServiceType(v string)

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

func (*DeviceUpdate) SetServiceTypeNil added in v1.0.5

func (o *DeviceUpdate) SetServiceTypeNil()

SetServiceTypeNil sets the value for ServiceType to be an explicit nil

func (*DeviceUpdate) SetSubType

func (o *DeviceUpdate) SetSubType(v string)

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

func (*DeviceUpdate) SetSubTypeNil added in v1.0.2

func (o *DeviceUpdate) SetSubTypeNil()

SetSubTypeNil sets the value for SubType to be an explicit nil

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 gets a reference to the given NullableString and assigns it to the Version field.

func (*DeviceUpdate) SetVersionNil added in v1.0.5

func (o *DeviceUpdate) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (*DeviceUpdate) UnmarshalJSON added in v1.0.5

func (o *DeviceUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceUpdate) UnsetSerialKey added in v1.0.5

func (o *DeviceUpdate) UnsetSerialKey()

UnsetSerialKey ensures that no value is present for SerialKey, not even an explicit nil

func (*DeviceUpdate) UnsetServiceType added in v1.0.5

func (o *DeviceUpdate) UnsetServiceType()

UnsetServiceType ensures that no value is present for ServiceType, not even an explicit nil

func (*DeviceUpdate) UnsetSubType added in v1.0.2

func (o *DeviceUpdate) UnsetSubType()

UnsetSubType ensures that no value is present for SubType, not even an explicit nil

func (*DeviceUpdate) UnsetVersion added in v1.0.5

func (o *DeviceUpdate) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type DeviceUpdateAllOf added in v1.0.5

type DeviceUpdateAllOf struct {
	ServiceType          NullableString         `json:"serviceType,omitempty"`
	Tags                 map[string]string      `json:"tags,omitempty"`
	Managed              bool                   `json:"managed"`
	OnboardType          string                 `json:"onboardType"`
	OnboardInformation   map[string]interface{} `json:"onboardInformation,omitempty"`
	Attributes           map[string]interface{} `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

DeviceUpdateAllOf struct for DeviceUpdateAllOf

func NewDeviceUpdateAllOf added in v1.0.5

func NewDeviceUpdateAllOf(managed bool, onboardType string) *DeviceUpdateAllOf

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

func NewDeviceUpdateAllOfWithDefaults added in v1.0.5

func NewDeviceUpdateAllOfWithDefaults() *DeviceUpdateAllOf

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

func (*DeviceUpdateAllOf) GetAttributes added in v1.0.5

func (o *DeviceUpdateAllOf) GetAttributes() map[string]interface{}

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

func (*DeviceUpdateAllOf) GetAttributesOk added in v1.0.5

func (o *DeviceUpdateAllOf) GetAttributesOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdateAllOf) GetManaged added in v1.0.5

func (o *DeviceUpdateAllOf) GetManaged() bool

GetManaged returns the Managed field value

func (*DeviceUpdateAllOf) GetManagedOk added in v1.0.5

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

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

func (*DeviceUpdateAllOf) GetOnboardInformation added in v1.0.5

func (o *DeviceUpdateAllOf) GetOnboardInformation() map[string]interface{}

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

func (*DeviceUpdateAllOf) GetOnboardInformationOk added in v1.0.5

func (o *DeviceUpdateAllOf) GetOnboardInformationOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdateAllOf) GetOnboardType added in v1.0.5

func (o *DeviceUpdateAllOf) GetOnboardType() string

GetOnboardType returns the OnboardType field value

func (*DeviceUpdateAllOf) GetOnboardTypeOk added in v1.0.5

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

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

func (*DeviceUpdateAllOf) GetServiceType added in v1.0.5

func (o *DeviceUpdateAllOf) GetServiceType() string

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

func (*DeviceUpdateAllOf) GetServiceTypeOk added in v1.0.5

func (o *DeviceUpdateAllOf) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdateAllOf) GetTags added in v1.0.5

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

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

func (*DeviceUpdateAllOf) GetTagsOk added in v1.0.5

func (o *DeviceUpdateAllOf) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DeviceUpdateAllOf) HasAttributes added in v1.0.5

func (o *DeviceUpdateAllOf) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*DeviceUpdateAllOf) HasOnboardInformation added in v1.0.5

func (o *DeviceUpdateAllOf) HasOnboardInformation() bool

HasOnboardInformation returns a boolean if a field has been set.

func (*DeviceUpdateAllOf) HasServiceType added in v1.0.5

func (o *DeviceUpdateAllOf) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*DeviceUpdateAllOf) HasTags added in v1.0.5

func (o *DeviceUpdateAllOf) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DeviceUpdateAllOf) MarshalJSON added in v1.0.5

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

func (*DeviceUpdateAllOf) SetAttributes added in v1.0.5

func (o *DeviceUpdateAllOf) SetAttributes(v map[string]interface{})

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

func (*DeviceUpdateAllOf) SetManaged added in v1.0.5

func (o *DeviceUpdateAllOf) SetManaged(v bool)

SetManaged sets field value

func (*DeviceUpdateAllOf) SetOnboardInformation added in v1.0.5

func (o *DeviceUpdateAllOf) SetOnboardInformation(v map[string]interface{})

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

func (*DeviceUpdateAllOf) SetOnboardType added in v1.0.5

func (o *DeviceUpdateAllOf) SetOnboardType(v string)

SetOnboardType sets field value

func (*DeviceUpdateAllOf) SetServiceType added in v1.0.5

func (o *DeviceUpdateAllOf) SetServiceType(v string)

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

func (*DeviceUpdateAllOf) SetServiceTypeNil added in v1.0.5

func (o *DeviceUpdateAllOf) SetServiceTypeNil()

SetServiceTypeNil sets the value for ServiceType to be an explicit nil

func (*DeviceUpdateAllOf) SetTags added in v1.0.5

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

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

func (*DeviceUpdateAllOf) UnmarshalJSON added in v1.0.5

func (o *DeviceUpdateAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*DeviceUpdateAllOf) UnsetServiceType added in v1.0.5

func (o *DeviceUpdateAllOf) UnsetServiceType()

UnsetServiceType ensures that no value is present for ServiceType, not even an explicit nil

type DeviceVulnerabilityState added in v1.0.5

type DeviceVulnerabilityState string

DeviceVulnerabilityState the model 'DeviceVulnerabilityState'

const (
	DEVICEVULNERABILITYSTATE_VULNERABLE     DeviceVulnerabilityState = "VULNERABLE"
	DEVICEVULNERABILITYSTATE_NOT_VULNERABLE DeviceVulnerabilityState = "NOT_VULNERABLE"
	DEVICEVULNERABILITYSTATE_NOT_APPLICABLE DeviceVulnerabilityState = "NOT_APPLICABLE"
	DEVICEVULNERABILITYSTATE_UNKNOWN        DeviceVulnerabilityState = "UNKNOWN"
)

List of DeviceVulnerabilityState

func (DeviceVulnerabilityState) Ptr added in v1.0.5

Ptr returns reference to DeviceVulnerabilityState value

func (*DeviceVulnerabilityState) UnmarshalJSON added in v1.0.5

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

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) BatchAttachDeviceTemplates added in v1.0.8

func (a *DevicesApiService) BatchAttachDeviceTemplates(ctx _context.Context) ApiBatchAttachDeviceTemplatesRequest

* BatchAttachDeviceTemplates Attaches one or more device templates to a batch of device instances. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiBatchAttachDeviceTemplatesRequest

func (*DevicesApiService) BatchAttachDeviceTemplatesExecute added in v1.0.8

* Execute executes the request * @return [][]DeviceTemplateHistorySummary

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) PatchDevice added in v1.0.5

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

func (*DevicesApiService) PatchDeviceExecute added in v1.0.5

func (a *DevicesApiService) PatchDeviceExecute(r ApiPatchDeviceRequest) (Device, *_nethttp.Response, error)

* Execute executes the request * @return Device

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) UpdateDevice added in v1.0.5

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

func (*DevicesApiService) UpdateDeviceExecute added in v1.0.5

func (a *DevicesApiService) UpdateDeviceExecute(r ApiUpdateDeviceRequest) (Device, *_nethttp.Response, error)

* Execute executes the request * @return Device

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           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Device      `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DevicesPage) GetSortOrder

func (o *DevicesPage) GetSortOrder() string

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DevicesPage) GetTotalItems

func (o *DevicesPage) GetTotalItems() int64

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*DevicesPage) SetSortByNil added in v1.0.2

func (o *DevicesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*DevicesPage) SetSortOrder

func (o *DevicesPage) SetSortOrder(v string)

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

func (*DevicesPage) SetSortOrderNil added in v1.0.2

func (o *DevicesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*DevicesPage) SetTotalItems

func (o *DevicesPage) SetTotalItems(v int64)

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

func (*DevicesPage) SetTotalItemsNil added in v1.0.2

func (o *DevicesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*DevicesPage) UnmarshalJSON added in v1.0.5

func (o *DevicesPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*DevicesPage) UnsetSortBy added in v1.0.2

func (o *DevicesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*DevicesPage) UnsetSortOrder added in v1.0.2

func (o *DevicesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*DevicesPage) UnsetTotalItems added in v1.0.2

func (o *DevicesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type DevicesPageAllOf

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

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.

func (*DevicesPageAllOf) UnmarshalJSON added in v1.0.5

func (o *DevicesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type Error

type Error struct {
	Code                 *string `json:"code,omitempty"`
	Message              *string `json:"message,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*Error) UnmarshalJSON added in v1.0.5

func (o *Error) UnmarshalJSON(bytes []byte) (err error)

type GenericEvent added in v1.0.5

type GenericEvent struct {
	Type     *string               `json:"type,omitempty"`
	Time     *time.Time            `json:"time,omitempty"`
	Severity *GenericEventSeverity `json:"severity,omitempty"`
	Subtype  *string               `json:"subtype,omitempty"`
	// Service that generated the event
	Service *string `json:"service,omitempty"`
	// Space separated list of keywords to be used for search
	Keywords             *string               `json:"keywords,omitempty"`
	Details              *map[string]string    `json:"details,omitempty"`
	Trace                *GenericEventTrace    `json:"trace,omitempty"`
	Security             *GenericEventSecurity `json:"security,omitempty"`
	Description          *string               `json:"description,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericEvent struct for GenericEvent

func NewGenericEvent added in v1.0.5

func NewGenericEvent() *GenericEvent

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

func NewGenericEventWithDefaults added in v1.0.5

func NewGenericEventWithDefaults() *GenericEvent

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

func (*GenericEvent) GetDescription added in v1.0.5

func (o *GenericEvent) GetDescription() string

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

func (*GenericEvent) GetDescriptionOk added in v1.0.5

func (o *GenericEvent) 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 (*GenericEvent) GetDetails added in v1.0.5

func (o *GenericEvent) GetDetails() map[string]string

GetDetails returns the Details field value if set, zero value otherwise.

func (*GenericEvent) GetDetailsOk added in v1.0.5

func (o *GenericEvent) GetDetailsOk() (*map[string]string, bool)

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

func (*GenericEvent) GetKeywords added in v1.0.5

func (o *GenericEvent) GetKeywords() string

GetKeywords returns the Keywords field value if set, zero value otherwise.

func (*GenericEvent) GetKeywordsOk added in v1.0.5

func (o *GenericEvent) GetKeywordsOk() (*string, bool)

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

func (*GenericEvent) GetSecurity added in v1.0.5

func (o *GenericEvent) GetSecurity() GenericEventSecurity

GetSecurity returns the Security field value if set, zero value otherwise.

func (*GenericEvent) GetSecurityOk added in v1.0.5

func (o *GenericEvent) GetSecurityOk() (*GenericEventSecurity, bool)

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

func (*GenericEvent) GetService added in v1.0.5

func (o *GenericEvent) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*GenericEvent) GetServiceOk added in v1.0.5

func (o *GenericEvent) GetServiceOk() (*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 (*GenericEvent) GetSeverity added in v1.0.5

func (o *GenericEvent) GetSeverity() GenericEventSeverity

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*GenericEvent) GetSeverityOk added in v1.0.5

func (o *GenericEvent) GetSeverityOk() (*GenericEventSeverity, bool)

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

func (*GenericEvent) GetSubtype added in v1.0.5

func (o *GenericEvent) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*GenericEvent) GetSubtypeOk added in v1.0.5

func (o *GenericEvent) 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 (*GenericEvent) GetTime added in v1.0.5

func (o *GenericEvent) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*GenericEvent) GetTimeOk added in v1.0.5

func (o *GenericEvent) GetTimeOk() (*time.Time, bool)

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

func (*GenericEvent) GetTrace added in v1.0.5

func (o *GenericEvent) GetTrace() GenericEventTrace

GetTrace returns the Trace field value if set, zero value otherwise.

func (*GenericEvent) GetTraceOk added in v1.0.5

func (o *GenericEvent) GetTraceOk() (*GenericEventTrace, bool)

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

func (*GenericEvent) GetType added in v1.0.5

func (o *GenericEvent) GetType() string

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

func (*GenericEvent) GetTypeOk added in v1.0.5

func (o *GenericEvent) 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 (*GenericEvent) HasDescription added in v1.0.5

func (o *GenericEvent) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GenericEvent) HasDetails added in v1.0.5

func (o *GenericEvent) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GenericEvent) HasKeywords added in v1.0.5

func (o *GenericEvent) HasKeywords() bool

HasKeywords returns a boolean if a field has been set.

func (*GenericEvent) HasSecurity added in v1.0.5

func (o *GenericEvent) HasSecurity() bool

HasSecurity returns a boolean if a field has been set.

func (*GenericEvent) HasService added in v1.0.5

func (o *GenericEvent) HasService() bool

HasService returns a boolean if a field has been set.

func (*GenericEvent) HasSeverity added in v1.0.5

func (o *GenericEvent) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*GenericEvent) HasSubtype added in v1.0.5

func (o *GenericEvent) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*GenericEvent) HasTime added in v1.0.5

func (o *GenericEvent) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GenericEvent) HasTrace added in v1.0.5

func (o *GenericEvent) HasTrace() bool

HasTrace returns a boolean if a field has been set.

func (*GenericEvent) HasType added in v1.0.5

func (o *GenericEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (GenericEvent) MarshalJSON added in v1.0.5

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

func (*GenericEvent) SetDescription added in v1.0.5

func (o *GenericEvent) SetDescription(v string)

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

func (*GenericEvent) SetDetails added in v1.0.5

func (o *GenericEvent) SetDetails(v map[string]string)

SetDetails gets a reference to the given map[string]string and assigns it to the Details field.

func (*GenericEvent) SetKeywords added in v1.0.5

func (o *GenericEvent) SetKeywords(v string)

SetKeywords gets a reference to the given string and assigns it to the Keywords field.

func (*GenericEvent) SetSecurity added in v1.0.5

func (o *GenericEvent) SetSecurity(v GenericEventSecurity)

SetSecurity gets a reference to the given GenericEventSecurity and assigns it to the Security field.

func (*GenericEvent) SetService added in v1.0.5

func (o *GenericEvent) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

func (*GenericEvent) SetSeverity added in v1.0.5

func (o *GenericEvent) SetSeverity(v GenericEventSeverity)

SetSeverity gets a reference to the given GenericEventSeverity and assigns it to the Severity field.

func (*GenericEvent) SetSubtype added in v1.0.5

func (o *GenericEvent) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*GenericEvent) SetTime added in v1.0.5

func (o *GenericEvent) SetTime(v time.Time)

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

func (*GenericEvent) SetTrace added in v1.0.5

func (o *GenericEvent) SetTrace(v GenericEventTrace)

SetTrace gets a reference to the given GenericEventTrace and assigns it to the Trace field.

func (*GenericEvent) SetType added in v1.0.5

func (o *GenericEvent) SetType(v string)

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

func (*GenericEvent) UnmarshalJSON added in v1.0.5

func (o *GenericEvent) UnmarshalJSON(bytes []byte) (err error)

type GenericEventAllOf added in v1.0.5

type GenericEventAllOf struct {
	Type                 *string    `json:"type,omitempty"`
	Time                 *time.Time `json:"time,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericEventAllOf struct for GenericEventAllOf

func NewGenericEventAllOf added in v1.0.5

func NewGenericEventAllOf() *GenericEventAllOf

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

func NewGenericEventAllOfWithDefaults added in v1.0.5

func NewGenericEventAllOfWithDefaults() *GenericEventAllOf

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

func (*GenericEventAllOf) GetTime added in v1.0.5

func (o *GenericEventAllOf) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*GenericEventAllOf) GetTimeOk added in v1.0.5

func (o *GenericEventAllOf) GetTimeOk() (*time.Time, bool)

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

func (*GenericEventAllOf) GetType added in v1.0.5

func (o *GenericEventAllOf) GetType() string

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

func (*GenericEventAllOf) GetTypeOk added in v1.0.5

func (o *GenericEventAllOf) 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 (*GenericEventAllOf) HasTime added in v1.0.5

func (o *GenericEventAllOf) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GenericEventAllOf) HasType added in v1.0.5

func (o *GenericEventAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (GenericEventAllOf) MarshalJSON added in v1.0.5

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

func (*GenericEventAllOf) SetTime added in v1.0.5

func (o *GenericEventAllOf) SetTime(v time.Time)

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

func (*GenericEventAllOf) SetType added in v1.0.5

func (o *GenericEventAllOf) SetType(v string)

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

func (*GenericEventAllOf) UnmarshalJSON added in v1.0.5

func (o *GenericEventAllOf) UnmarshalJSON(bytes []byte) (err error)

type GenericEventCreate added in v1.0.5

type GenericEventCreate struct {
	Severity *GenericEventSeverity `json:"severity,omitempty"`
	Subtype  *string               `json:"subtype,omitempty"`
	// Service that generated the event
	Service *string `json:"service,omitempty"`
	// Space separated list of keywords to be used for search
	Keywords             *string               `json:"keywords,omitempty"`
	Details              *map[string]string    `json:"details,omitempty"`
	Trace                *GenericEventTrace    `json:"trace,omitempty"`
	Security             *GenericEventSecurity `json:"security,omitempty"`
	Description          *string               `json:"description,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericEventCreate struct for GenericEventCreate

func NewGenericEventCreate added in v1.0.5

func NewGenericEventCreate() *GenericEventCreate

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

func NewGenericEventCreateWithDefaults added in v1.0.5

func NewGenericEventCreateWithDefaults() *GenericEventCreate

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

func (*GenericEventCreate) GetDescription added in v1.0.5

func (o *GenericEventCreate) GetDescription() string

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

func (*GenericEventCreate) GetDescriptionOk added in v1.0.5

func (o *GenericEventCreate) 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 (*GenericEventCreate) GetDetails added in v1.0.5

func (o *GenericEventCreate) GetDetails() map[string]string

GetDetails returns the Details field value if set, zero value otherwise.

func (*GenericEventCreate) GetDetailsOk added in v1.0.5

func (o *GenericEventCreate) GetDetailsOk() (*map[string]string, bool)

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

func (*GenericEventCreate) GetKeywords added in v1.0.5

func (o *GenericEventCreate) GetKeywords() string

GetKeywords returns the Keywords field value if set, zero value otherwise.

func (*GenericEventCreate) GetKeywordsOk added in v1.0.5

func (o *GenericEventCreate) GetKeywordsOk() (*string, bool)

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

func (*GenericEventCreate) GetSecurity added in v1.0.5

func (o *GenericEventCreate) GetSecurity() GenericEventSecurity

GetSecurity returns the Security field value if set, zero value otherwise.

func (*GenericEventCreate) GetSecurityOk added in v1.0.5

func (o *GenericEventCreate) GetSecurityOk() (*GenericEventSecurity, bool)

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

func (*GenericEventCreate) GetService added in v1.0.5

func (o *GenericEventCreate) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*GenericEventCreate) GetServiceOk added in v1.0.5

func (o *GenericEventCreate) GetServiceOk() (*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 (*GenericEventCreate) GetSeverity added in v1.0.5

func (o *GenericEventCreate) GetSeverity() GenericEventSeverity

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*GenericEventCreate) GetSeverityOk added in v1.0.5

func (o *GenericEventCreate) GetSeverityOk() (*GenericEventSeverity, bool)

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

func (*GenericEventCreate) GetSubtype added in v1.0.5

func (o *GenericEventCreate) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*GenericEventCreate) GetSubtypeOk added in v1.0.5

func (o *GenericEventCreate) 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 (*GenericEventCreate) GetTrace added in v1.0.5

func (o *GenericEventCreate) GetTrace() GenericEventTrace

GetTrace returns the Trace field value if set, zero value otherwise.

func (*GenericEventCreate) GetTraceOk added in v1.0.5

func (o *GenericEventCreate) GetTraceOk() (*GenericEventTrace, bool)

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

func (*GenericEventCreate) HasDescription added in v1.0.5

func (o *GenericEventCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GenericEventCreate) HasDetails added in v1.0.5

func (o *GenericEventCreate) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GenericEventCreate) HasKeywords added in v1.0.5

func (o *GenericEventCreate) HasKeywords() bool

HasKeywords returns a boolean if a field has been set.

func (*GenericEventCreate) HasSecurity added in v1.0.5

func (o *GenericEventCreate) HasSecurity() bool

HasSecurity returns a boolean if a field has been set.

func (*GenericEventCreate) HasService added in v1.0.5

func (o *GenericEventCreate) HasService() bool

HasService returns a boolean if a field has been set.

func (*GenericEventCreate) HasSeverity added in v1.0.5

func (o *GenericEventCreate) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*GenericEventCreate) HasSubtype added in v1.0.5

func (o *GenericEventCreate) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*GenericEventCreate) HasTrace added in v1.0.5

func (o *GenericEventCreate) HasTrace() bool

HasTrace returns a boolean if a field has been set.

func (GenericEventCreate) MarshalJSON added in v1.0.5

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

func (*GenericEventCreate) SetDescription added in v1.0.5

func (o *GenericEventCreate) SetDescription(v string)

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

func (*GenericEventCreate) SetDetails added in v1.0.5

func (o *GenericEventCreate) SetDetails(v map[string]string)

SetDetails gets a reference to the given map[string]string and assigns it to the Details field.

func (*GenericEventCreate) SetKeywords added in v1.0.5

func (o *GenericEventCreate) SetKeywords(v string)

SetKeywords gets a reference to the given string and assigns it to the Keywords field.

func (*GenericEventCreate) SetSecurity added in v1.0.5

func (o *GenericEventCreate) SetSecurity(v GenericEventSecurity)

SetSecurity gets a reference to the given GenericEventSecurity and assigns it to the Security field.

func (*GenericEventCreate) SetService added in v1.0.5

func (o *GenericEventCreate) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

func (*GenericEventCreate) SetSeverity added in v1.0.5

func (o *GenericEventCreate) SetSeverity(v GenericEventSeverity)

SetSeverity gets a reference to the given GenericEventSeverity and assigns it to the Severity field.

func (*GenericEventCreate) SetSubtype added in v1.0.5

func (o *GenericEventCreate) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*GenericEventCreate) SetTrace added in v1.0.5

func (o *GenericEventCreate) SetTrace(v GenericEventTrace)

SetTrace gets a reference to the given GenericEventTrace and assigns it to the Trace field.

func (*GenericEventCreate) UnmarshalJSON added in v1.0.5

func (o *GenericEventCreate) UnmarshalJSON(bytes []byte) (err error)

type GenericEventSecurity added in v1.0.5

type GenericEventSecurity struct {
	ClientId             *string `json:"clientId,omitempty"`
	UserId               *string `json:"userId,omitempty"`
	Username             *string `json:"username,omitempty"`
	TenantId             *string `json:"tenantId,omitempty"`
	TenantName           *string `json:"tenantName,omitempty"`
	ProviderId           *string `json:"providerId,omitempty"`
	OriginalUsername     *string `json:"originalUsername,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericEventSecurity struct for GenericEventSecurity

func NewGenericEventSecurity added in v1.0.5

func NewGenericEventSecurity() *GenericEventSecurity

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

func NewGenericEventSecurityWithDefaults added in v1.0.5

func NewGenericEventSecurityWithDefaults() *GenericEventSecurity

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

func (*GenericEventSecurity) GetClientId added in v1.0.5

func (o *GenericEventSecurity) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*GenericEventSecurity) GetClientIdOk added in v1.0.5

func (o *GenericEventSecurity) GetClientIdOk() (*string, bool)

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

func (*GenericEventSecurity) GetOriginalUsername added in v1.0.5

func (o *GenericEventSecurity) GetOriginalUsername() string

GetOriginalUsername returns the OriginalUsername field value if set, zero value otherwise.

func (*GenericEventSecurity) GetOriginalUsernameOk added in v1.0.5

func (o *GenericEventSecurity) GetOriginalUsernameOk() (*string, bool)

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

func (*GenericEventSecurity) GetProviderId added in v1.0.5

func (o *GenericEventSecurity) GetProviderId() string

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

func (*GenericEventSecurity) GetProviderIdOk added in v1.0.5

func (o *GenericEventSecurity) 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 (*GenericEventSecurity) GetTenantId added in v1.0.5

func (o *GenericEventSecurity) GetTenantId() string

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

func (*GenericEventSecurity) GetTenantIdOk added in v1.0.5

func (o *GenericEventSecurity) 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 (*GenericEventSecurity) GetTenantName added in v1.0.5

func (o *GenericEventSecurity) GetTenantName() string

GetTenantName returns the TenantName field value if set, zero value otherwise.

func (*GenericEventSecurity) GetTenantNameOk added in v1.0.5

func (o *GenericEventSecurity) GetTenantNameOk() (*string, bool)

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

func (*GenericEventSecurity) GetUserId added in v1.0.5

func (o *GenericEventSecurity) GetUserId() string

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

func (*GenericEventSecurity) GetUserIdOk added in v1.0.5

func (o *GenericEventSecurity) 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 (*GenericEventSecurity) GetUsername added in v1.0.5

func (o *GenericEventSecurity) GetUsername() string

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

func (*GenericEventSecurity) GetUsernameOk added in v1.0.5

func (o *GenericEventSecurity) 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 (*GenericEventSecurity) HasClientId added in v1.0.5

func (o *GenericEventSecurity) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*GenericEventSecurity) HasOriginalUsername added in v1.0.5

func (o *GenericEventSecurity) HasOriginalUsername() bool

HasOriginalUsername returns a boolean if a field has been set.

func (*GenericEventSecurity) HasProviderId added in v1.0.5

func (o *GenericEventSecurity) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*GenericEventSecurity) HasTenantId added in v1.0.5

func (o *GenericEventSecurity) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*GenericEventSecurity) HasTenantName added in v1.0.5

func (o *GenericEventSecurity) HasTenantName() bool

HasTenantName returns a boolean if a field has been set.

func (*GenericEventSecurity) HasUserId added in v1.0.5

func (o *GenericEventSecurity) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*GenericEventSecurity) HasUsername added in v1.0.5

func (o *GenericEventSecurity) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (GenericEventSecurity) MarshalJSON added in v1.0.5

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

func (*GenericEventSecurity) SetClientId added in v1.0.5

func (o *GenericEventSecurity) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*GenericEventSecurity) SetOriginalUsername added in v1.0.5

func (o *GenericEventSecurity) SetOriginalUsername(v string)

SetOriginalUsername gets a reference to the given string and assigns it to the OriginalUsername field.

func (*GenericEventSecurity) SetProviderId added in v1.0.5

func (o *GenericEventSecurity) SetProviderId(v string)

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

func (*GenericEventSecurity) SetTenantId added in v1.0.5

func (o *GenericEventSecurity) SetTenantId(v string)

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

func (*GenericEventSecurity) SetTenantName added in v1.0.5

func (o *GenericEventSecurity) SetTenantName(v string)

SetTenantName gets a reference to the given string and assigns it to the TenantName field.

func (*GenericEventSecurity) SetUserId added in v1.0.5

func (o *GenericEventSecurity) SetUserId(v string)

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

func (*GenericEventSecurity) SetUsername added in v1.0.5

func (o *GenericEventSecurity) SetUsername(v string)

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

func (*GenericEventSecurity) UnmarshalJSON added in v1.0.5

func (o *GenericEventSecurity) UnmarshalJSON(bytes []byte) (err error)

type GenericEventSeverity added in v1.0.5

type GenericEventSeverity string

GenericEventSeverity the model 'GenericEventSeverity'

const (
	GENERICEVENTSEVERITY_CRITICAL GenericEventSeverity = "CRITICAL"
	GENERICEVENTSEVERITY_POOR     GenericEventSeverity = "POOR"
	GENERICEVENTSEVERITY_FAIR     GenericEventSeverity = "FAIR"
	GENERICEVENTSEVERITY_GOOD     GenericEventSeverity = "GOOD"
	GENERICEVENTSEVERITY_UNKNOWN  GenericEventSeverity = "UNKNOWN"
)

List of GenericEventSeverity

func (GenericEventSeverity) Ptr added in v1.0.5

Ptr returns reference to GenericEventSeverity value

func (*GenericEventSeverity) UnmarshalJSON added in v1.0.5

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

type GenericEventTrace added in v1.0.5

type GenericEventTrace struct {
	TraceId              *string `json:"traceId,omitempty"`
	SpanId               *string `json:"spanId,omitempty"`
	ParentId             *string `json:"parentId,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericEventTrace struct for GenericEventTrace

func NewGenericEventTrace added in v1.0.5

func NewGenericEventTrace() *GenericEventTrace

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

func NewGenericEventTraceWithDefaults added in v1.0.5

func NewGenericEventTraceWithDefaults() *GenericEventTrace

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

func (*GenericEventTrace) GetParentId added in v1.0.5

func (o *GenericEventTrace) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*GenericEventTrace) GetParentIdOk added in v1.0.5

func (o *GenericEventTrace) 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 (*GenericEventTrace) GetSpanId added in v1.0.5

func (o *GenericEventTrace) GetSpanId() string

GetSpanId returns the SpanId field value if set, zero value otherwise.

func (*GenericEventTrace) GetSpanIdOk added in v1.0.5

func (o *GenericEventTrace) GetSpanIdOk() (*string, bool)

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

func (*GenericEventTrace) GetTraceId added in v1.0.5

func (o *GenericEventTrace) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*GenericEventTrace) GetTraceIdOk added in v1.0.5

func (o *GenericEventTrace) GetTraceIdOk() (*string, bool)

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

func (*GenericEventTrace) HasParentId added in v1.0.5

func (o *GenericEventTrace) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*GenericEventTrace) HasSpanId added in v1.0.5

func (o *GenericEventTrace) HasSpanId() bool

HasSpanId returns a boolean if a field has been set.

func (*GenericEventTrace) HasTraceId added in v1.0.5

func (o *GenericEventTrace) HasTraceId() bool

HasTraceId returns a boolean if a field has been set.

func (GenericEventTrace) MarshalJSON added in v1.0.5

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

func (*GenericEventTrace) SetParentId added in v1.0.5

func (o *GenericEventTrace) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*GenericEventTrace) SetSpanId added in v1.0.5

func (o *GenericEventTrace) SetSpanId(v string)

SetSpanId gets a reference to the given string and assigns it to the SpanId field.

func (*GenericEventTrace) SetTraceId added in v1.0.5

func (o *GenericEventTrace) SetTraceId(v string)

SetTraceId gets a reference to the given string and assigns it to the TraceId field.

func (*GenericEventTrace) UnmarshalJSON added in v1.0.5

func (o *GenericEventTrace) UnmarshalJSON(bytes []byte) (err error)

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type 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 Incident added in v1.0.8

type Incident struct {
	Id         string                  `json:"id"`
	ExternalId string                  `json:"externalId"`
	Attributes *map[string]interface{} `json:"attributes,omitempty"`
	Notes      *[]string               `json:"notes,omitempty"`
	CreatedBy  *string                 `json:"createdBy,omitempty"`
	CreatedOn  *time.Time              `json:"createdOn,omitempty"`
	ModifiedBy *string                 `json:"modifiedBy,omitempty"`
	ModifiedOn *time.Time              `json:"modifiedOn,omitempty"`
	// inquiry|software|hardware|network|database
	Category             *string        `json:"category,omitempty"`
	Description          string         `json:"description"`
	Impact               *string        `json:"impact,omitempty"`
	Priority             *string        `json:"priority,omitempty"`
	Severity             *string        `json:"severity,omitempty"`
	State                *string        `json:"state,omitempty"`
	Subcategory          *string        `json:"subcategory,omitempty"`
	Tenant               NullableString `json:"tenant,omitempty"`
	Urgency              *string        `json:"urgency,omitempty"`
	AdditionalProperties map[string]interface{}
}

Incident struct for Incident

func NewIncident added in v1.0.8

func NewIncident(id string, externalId string, description string) *Incident

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

func NewIncidentWithDefaults added in v1.0.8

func NewIncidentWithDefaults() *Incident

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

func (*Incident) GetAttributes added in v1.0.8

func (o *Incident) GetAttributes() map[string]interface{}

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

func (*Incident) GetAttributesOk added in v1.0.8

func (o *Incident) GetAttributesOk() (*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 (*Incident) GetCategory added in v1.0.8

func (o *Incident) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*Incident) GetCategoryOk added in v1.0.8

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

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

func (*Incident) GetCreatedBy added in v1.0.8

func (o *Incident) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*Incident) GetCreatedByOk added in v1.0.8

func (o *Incident) 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 (*Incident) GetCreatedOn added in v1.0.8

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

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

func (*Incident) GetCreatedOnOk added in v1.0.8

func (o *Incident) 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 (*Incident) GetDescription added in v1.0.8

func (o *Incident) GetDescription() string

GetDescription returns the Description field value

func (*Incident) GetDescriptionOk added in v1.0.8

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

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

func (*Incident) GetExternalId added in v1.0.8

func (o *Incident) GetExternalId() string

GetExternalId returns the ExternalId field value

func (*Incident) GetExternalIdOk added in v1.0.8

func (o *Incident) GetExternalIdOk() (*string, bool)

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

func (*Incident) GetId added in v1.0.8

func (o *Incident) GetId() string

GetId returns the Id field value

func (*Incident) GetIdOk added in v1.0.8

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

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

func (*Incident) GetImpact added in v1.0.8

func (o *Incident) GetImpact() string

GetImpact returns the Impact field value if set, zero value otherwise.

func (*Incident) GetImpactOk added in v1.0.8

func (o *Incident) GetImpactOk() (*string, bool)

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

func (*Incident) GetModifiedBy added in v1.0.8

func (o *Incident) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*Incident) GetModifiedByOk added in v1.0.8

func (o *Incident) 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 (*Incident) GetModifiedOn added in v1.0.8

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

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

func (*Incident) GetModifiedOnOk added in v1.0.8

func (o *Incident) 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 (*Incident) GetNotes added in v1.0.8

func (o *Incident) GetNotes() []string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*Incident) GetNotesOk added in v1.0.8

func (o *Incident) GetNotesOk() (*[]string, bool)

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

func (*Incident) GetPriority added in v1.0.8

func (o *Incident) GetPriority() string

GetPriority returns the Priority field value if set, zero value otherwise.

func (*Incident) GetPriorityOk added in v1.0.8

func (o *Incident) GetPriorityOk() (*string, bool)

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

func (*Incident) GetSeverity added in v1.0.8

func (o *Incident) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*Incident) GetSeverityOk added in v1.0.8

func (o *Incident) GetSeverityOk() (*string, bool)

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

func (*Incident) GetState added in v1.0.8

func (o *Incident) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*Incident) GetStateOk added in v1.0.8

func (o *Incident) 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 (*Incident) GetSubcategory added in v1.0.8

func (o *Incident) GetSubcategory() string

GetSubcategory returns the Subcategory field value if set, zero value otherwise.

func (*Incident) GetSubcategoryOk added in v1.0.8

func (o *Incident) GetSubcategoryOk() (*string, bool)

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

func (*Incident) GetTenant added in v1.0.8

func (o *Incident) GetTenant() string

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

func (*Incident) GetTenantOk added in v1.0.8

func (o *Incident) GetTenantOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Incident) GetUrgency added in v1.0.8

func (o *Incident) GetUrgency() string

GetUrgency returns the Urgency field value if set, zero value otherwise.

func (*Incident) GetUrgencyOk added in v1.0.8

func (o *Incident) GetUrgencyOk() (*string, bool)

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

func (*Incident) HasAttributes added in v1.0.8

func (o *Incident) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Incident) HasCategory added in v1.0.8

func (o *Incident) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*Incident) HasCreatedBy added in v1.0.8

func (o *Incident) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Incident) HasCreatedOn added in v1.0.8

func (o *Incident) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Incident) HasImpact added in v1.0.8

func (o *Incident) HasImpact() bool

HasImpact returns a boolean if a field has been set.

func (*Incident) HasModifiedBy added in v1.0.8

func (o *Incident) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*Incident) HasModifiedOn added in v1.0.8

func (o *Incident) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*Incident) HasNotes added in v1.0.8

func (o *Incident) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*Incident) HasPriority added in v1.0.8

func (o *Incident) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*Incident) HasSeverity added in v1.0.8

func (o *Incident) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*Incident) HasState added in v1.0.8

func (o *Incident) HasState() bool

HasState returns a boolean if a field has been set.

func (*Incident) HasSubcategory added in v1.0.8

func (o *Incident) HasSubcategory() bool

HasSubcategory returns a boolean if a field has been set.

func (*Incident) HasTenant added in v1.0.8

func (o *Incident) HasTenant() bool

HasTenant returns a boolean if a field has been set.

func (*Incident) HasUrgency added in v1.0.8

func (o *Incident) HasUrgency() bool

HasUrgency returns a boolean if a field has been set.

func (Incident) MarshalJSON added in v1.0.8

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

func (*Incident) SetAttributes added in v1.0.8

func (o *Incident) SetAttributes(v map[string]interface{})

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

func (*Incident) SetCategory added in v1.0.8

func (o *Incident) SetCategory(v string)

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

func (*Incident) SetCreatedBy added in v1.0.8

func (o *Incident) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*Incident) SetCreatedOn added in v1.0.8

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

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

func (*Incident) SetDescription added in v1.0.8

func (o *Incident) SetDescription(v string)

SetDescription sets field value

func (*Incident) SetExternalId added in v1.0.8

func (o *Incident) SetExternalId(v string)

SetExternalId sets field value

func (*Incident) SetId added in v1.0.8

func (o *Incident) SetId(v string)

SetId sets field value

func (*Incident) SetImpact added in v1.0.8

func (o *Incident) SetImpact(v string)

SetImpact gets a reference to the given string and assigns it to the Impact field.

func (*Incident) SetModifiedBy added in v1.0.8

func (o *Incident) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*Incident) SetModifiedOn added in v1.0.8

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

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

func (*Incident) SetNotes added in v1.0.8

func (o *Incident) SetNotes(v []string)

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*Incident) SetPriority added in v1.0.8

func (o *Incident) SetPriority(v string)

SetPriority gets a reference to the given string and assigns it to the Priority field.

func (*Incident) SetSeverity added in v1.0.8

func (o *Incident) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*Incident) SetState added in v1.0.8

func (o *Incident) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*Incident) SetSubcategory added in v1.0.8

func (o *Incident) SetSubcategory(v string)

SetSubcategory gets a reference to the given string and assigns it to the Subcategory field.

func (*Incident) SetTenant added in v1.0.8

func (o *Incident) SetTenant(v string)

SetTenant gets a reference to the given NullableString and assigns it to the Tenant field.

func (*Incident) SetTenantNil added in v1.0.8

func (o *Incident) SetTenantNil()

SetTenantNil sets the value for Tenant to be an explicit nil

func (*Incident) SetUrgency added in v1.0.8

func (o *Incident) SetUrgency(v string)

SetUrgency gets a reference to the given string and assigns it to the Urgency field.

func (*Incident) UnmarshalJSON added in v1.0.8

func (o *Incident) UnmarshalJSON(bytes []byte) (err error)

func (*Incident) UnsetTenant added in v1.0.8

func (o *Incident) UnsetTenant()

UnsetTenant ensures that no value is present for Tenant, not even an explicit nil

type IncidentAllOf added in v1.0.8

type IncidentAllOf struct {
	Id                   string                  `json:"id"`
	ExternalId           string                  `json:"externalId"`
	Attributes           *map[string]interface{} `json:"attributes,omitempty"`
	Notes                *[]string               `json:"notes,omitempty"`
	CreatedBy            *string                 `json:"createdBy,omitempty"`
	CreatedOn            *time.Time              `json:"createdOn,omitempty"`
	ModifiedBy           *string                 `json:"modifiedBy,omitempty"`
	ModifiedOn           *time.Time              `json:"modifiedOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentAllOf struct for IncidentAllOf

func NewIncidentAllOf added in v1.0.8

func NewIncidentAllOf(id string, externalId string) *IncidentAllOf

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

func NewIncidentAllOfWithDefaults added in v1.0.8

func NewIncidentAllOfWithDefaults() *IncidentAllOf

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

func (*IncidentAllOf) GetAttributes added in v1.0.8

func (o *IncidentAllOf) GetAttributes() map[string]interface{}

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

func (*IncidentAllOf) GetAttributesOk added in v1.0.8

func (o *IncidentAllOf) GetAttributesOk() (*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 (*IncidentAllOf) GetCreatedBy added in v1.0.8

func (o *IncidentAllOf) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*IncidentAllOf) GetCreatedByOk added in v1.0.8

func (o *IncidentAllOf) 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 (*IncidentAllOf) GetCreatedOn added in v1.0.8

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

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

func (*IncidentAllOf) GetCreatedOnOk added in v1.0.8

func (o *IncidentAllOf) 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 (*IncidentAllOf) GetExternalId added in v1.0.8

func (o *IncidentAllOf) GetExternalId() string

GetExternalId returns the ExternalId field value

func (*IncidentAllOf) GetExternalIdOk added in v1.0.8

func (o *IncidentAllOf) GetExternalIdOk() (*string, bool)

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

func (*IncidentAllOf) GetId added in v1.0.8

func (o *IncidentAllOf) GetId() string

GetId returns the Id field value

func (*IncidentAllOf) GetIdOk added in v1.0.8

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

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

func (*IncidentAllOf) GetModifiedBy added in v1.0.8

func (o *IncidentAllOf) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*IncidentAllOf) GetModifiedByOk added in v1.0.8

func (o *IncidentAllOf) 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 (*IncidentAllOf) GetModifiedOn added in v1.0.8

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

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

func (*IncidentAllOf) GetModifiedOnOk added in v1.0.8

func (o *IncidentAllOf) 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 (*IncidentAllOf) GetNotes added in v1.0.8

func (o *IncidentAllOf) GetNotes() []string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*IncidentAllOf) GetNotesOk added in v1.0.8

func (o *IncidentAllOf) GetNotesOk() (*[]string, bool)

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

func (*IncidentAllOf) HasAttributes added in v1.0.8

func (o *IncidentAllOf) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*IncidentAllOf) HasCreatedBy added in v1.0.8

func (o *IncidentAllOf) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*IncidentAllOf) HasCreatedOn added in v1.0.8

func (o *IncidentAllOf) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*IncidentAllOf) HasModifiedBy added in v1.0.8

func (o *IncidentAllOf) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*IncidentAllOf) HasModifiedOn added in v1.0.8

func (o *IncidentAllOf) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*IncidentAllOf) HasNotes added in v1.0.8

func (o *IncidentAllOf) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (IncidentAllOf) MarshalJSON added in v1.0.8

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

func (*IncidentAllOf) SetAttributes added in v1.0.8

func (o *IncidentAllOf) SetAttributes(v map[string]interface{})

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

func (*IncidentAllOf) SetCreatedBy added in v1.0.8

func (o *IncidentAllOf) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*IncidentAllOf) SetCreatedOn added in v1.0.8

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

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

func (*IncidentAllOf) SetExternalId added in v1.0.8

func (o *IncidentAllOf) SetExternalId(v string)

SetExternalId sets field value

func (*IncidentAllOf) SetId added in v1.0.8

func (o *IncidentAllOf) SetId(v string)

SetId sets field value

func (*IncidentAllOf) SetModifiedBy added in v1.0.8

func (o *IncidentAllOf) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*IncidentAllOf) SetModifiedOn added in v1.0.8

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

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

func (*IncidentAllOf) SetNotes added in v1.0.8

func (o *IncidentAllOf) SetNotes(v []string)

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*IncidentAllOf) UnmarshalJSON added in v1.0.8

func (o *IncidentAllOf) UnmarshalJSON(bytes []byte) (err error)

type IncidentCancel added in v1.0.8

type IncidentCancel struct {
	Notes                *string `json:"notes,omitempty"`
	Tenant               string  `json:"tenant"`
	AdditionalProperties map[string]interface{}
}

IncidentCancel struct for IncidentCancel

func NewIncidentCancel added in v1.0.8

func NewIncidentCancel(tenant string) *IncidentCancel

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

func NewIncidentCancelWithDefaults added in v1.0.8

func NewIncidentCancelWithDefaults() *IncidentCancel

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

func (*IncidentCancel) GetNotes added in v1.0.8

func (o *IncidentCancel) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*IncidentCancel) GetNotesOk added in v1.0.8

func (o *IncidentCancel) GetNotesOk() (*string, bool)

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

func (*IncidentCancel) GetTenant added in v1.0.8

func (o *IncidentCancel) GetTenant() string

GetTenant returns the Tenant field value

func (*IncidentCancel) GetTenantOk added in v1.0.8

func (o *IncidentCancel) GetTenantOk() (*string, bool)

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

func (*IncidentCancel) HasNotes added in v1.0.8

func (o *IncidentCancel) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (IncidentCancel) MarshalJSON added in v1.0.8

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

func (*IncidentCancel) SetNotes added in v1.0.8

func (o *IncidentCancel) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*IncidentCancel) SetTenant added in v1.0.8

func (o *IncidentCancel) SetTenant(v string)

SetTenant sets field value

func (*IncidentCancel) UnmarshalJSON added in v1.0.8

func (o *IncidentCancel) UnmarshalJSON(bytes []byte) (err error)

type IncidentChangeRequestsApiService added in v1.0.8

type IncidentChangeRequestsApiService service

IncidentChangeRequestsApiService IncidentChangeRequestsApi service

func (*IncidentChangeRequestsApiService) CreateChangeRequest added in v1.0.8

* CreateChangeRequest Create a change request. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateChangeRequestRequest

func (*IncidentChangeRequestsApiService) CreateChangeRequestExecute added in v1.0.8

* Execute executes the request * @return ChangeRequest

func (*IncidentChangeRequestsApiService) DeleteChangeRequest added in v1.0.8

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

func (*IncidentChangeRequestsApiService) DeleteChangeRequestExecute added in v1.0.8

* Execute executes the request

func (*IncidentChangeRequestsApiService) GetChangeRequest added in v1.0.8

* GetChangeRequest Returns a change request. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id Change Request Number CHG0030022 * @return ApiGetChangeRequestRequest

func (*IncidentChangeRequestsApiService) GetChangeRequestExecute added in v1.0.8

* Execute executes the request * @return ChangeRequest

func (*IncidentChangeRequestsApiService) GetChangeRequestsPage added in v1.0.8

* GetChangeRequestsPage Returns a filtered list of change requests. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetChangeRequestsPageRequest

func (*IncidentChangeRequestsApiService) GetChangeRequestsPageExecute added in v1.0.8

* Execute executes the request * @return ChangeRequestsPage

func (*IncidentChangeRequestsApiService) UpdateChangeRequest added in v1.0.8

* UpdateChangeRequest Updates a change request. * Update change requests. Returns not found, if passed in tenant's serviceNow instance does not hold the record. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateChangeRequestRequest

func (*IncidentChangeRequestsApiService) UpdateChangeRequestExecute added in v1.0.8

* Execute executes the request * @return ChangeRequest

type IncidentConfig added in v1.0.8

type IncidentConfig struct {
	ClientId             string         `json:"clientId"`
	ClientSecret         string         `json:"clientSecret"`
	CriticalEvent        *bool          `json:"criticalEvent,omitempty"`
	Domain               string         `json:"domain"`
	Password             string         `json:"password"`
	UserName             string         `json:"userName"`
	Proxy                NullableString `json:"proxy,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentConfig struct for IncidentConfig

func NewIncidentConfig added in v1.0.8

func NewIncidentConfig(clientId string, clientSecret string, domain string, password string, userName string) *IncidentConfig

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

func NewIncidentConfigWithDefaults added in v1.0.8

func NewIncidentConfigWithDefaults() *IncidentConfig

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

func (*IncidentConfig) GetClientId added in v1.0.8

func (o *IncidentConfig) GetClientId() string

GetClientId returns the ClientId field value

func (*IncidentConfig) GetClientIdOk added in v1.0.8

func (o *IncidentConfig) GetClientIdOk() (*string, bool)

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

func (*IncidentConfig) GetClientSecret added in v1.0.8

func (o *IncidentConfig) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*IncidentConfig) GetClientSecretOk added in v1.0.8

func (o *IncidentConfig) GetClientSecretOk() (*string, bool)

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

func (*IncidentConfig) GetCriticalEvent added in v1.0.8

func (o *IncidentConfig) GetCriticalEvent() bool

GetCriticalEvent returns the CriticalEvent field value if set, zero value otherwise.

func (*IncidentConfig) GetCriticalEventOk added in v1.0.8

func (o *IncidentConfig) GetCriticalEventOk() (*bool, bool)

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

func (*IncidentConfig) GetDomain added in v1.0.8

func (o *IncidentConfig) GetDomain() string

GetDomain returns the Domain field value

func (*IncidentConfig) GetDomainOk added in v1.0.8

func (o *IncidentConfig) GetDomainOk() (*string, bool)

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

func (*IncidentConfig) GetPassword added in v1.0.8

func (o *IncidentConfig) GetPassword() string

GetPassword returns the Password field value

func (*IncidentConfig) GetPasswordOk added in v1.0.8

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

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

func (*IncidentConfig) GetProxy added in v1.0.8

func (o *IncidentConfig) GetProxy() string

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

func (*IncidentConfig) GetProxyOk added in v1.0.8

func (o *IncidentConfig) GetProxyOk() (*string, bool)

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

func (*IncidentConfig) GetUserName added in v1.0.8

func (o *IncidentConfig) GetUserName() string

GetUserName returns the UserName field value

func (*IncidentConfig) GetUserNameOk added in v1.0.8

func (o *IncidentConfig) GetUserNameOk() (*string, bool)

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

func (*IncidentConfig) HasCriticalEvent added in v1.0.8

func (o *IncidentConfig) HasCriticalEvent() bool

HasCriticalEvent returns a boolean if a field has been set.

func (*IncidentConfig) HasProxy added in v1.0.8

func (o *IncidentConfig) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (IncidentConfig) MarshalJSON added in v1.0.8

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

func (*IncidentConfig) SetClientId added in v1.0.8

func (o *IncidentConfig) SetClientId(v string)

SetClientId sets field value

func (*IncidentConfig) SetClientSecret added in v1.0.8

func (o *IncidentConfig) SetClientSecret(v string)

SetClientSecret sets field value

func (*IncidentConfig) SetCriticalEvent added in v1.0.8

func (o *IncidentConfig) SetCriticalEvent(v bool)

SetCriticalEvent gets a reference to the given bool and assigns it to the CriticalEvent field.

func (*IncidentConfig) SetDomain added in v1.0.8

func (o *IncidentConfig) SetDomain(v string)

SetDomain sets field value

func (*IncidentConfig) SetPassword added in v1.0.8

func (o *IncidentConfig) SetPassword(v string)

SetPassword sets field value

func (*IncidentConfig) SetProxy added in v1.0.8

func (o *IncidentConfig) SetProxy(v string)

SetProxy gets a reference to the given NullableString and assigns it to the Proxy field.

func (*IncidentConfig) SetProxyNil added in v1.0.8

func (o *IncidentConfig) SetProxyNil()

SetProxyNil sets the value for Proxy to be an explicit nil

func (*IncidentConfig) SetUserName added in v1.0.8

func (o *IncidentConfig) SetUserName(v string)

SetUserName sets field value

func (*IncidentConfig) UnmarshalJSON added in v1.0.8

func (o *IncidentConfig) UnmarshalJSON(bytes []byte) (err error)

func (*IncidentConfig) UnsetProxy added in v1.0.8

func (o *IncidentConfig) UnsetProxy()

UnsetProxy ensures that no value is present for Proxy, not even an explicit nil

type IncidentConfigPatch added in v1.0.8

type IncidentConfigPatch struct {
	ClientId             *string `json:"clientId,omitempty"`
	ClientSecret         *string `json:"clientSecret,omitempty"`
	CriticalEvent        *bool   `json:"criticalEvent,omitempty"`
	Domain               *string `json:"domain,omitempty"`
	Password             *string `json:"password,omitempty"`
	UserName             *string `json:"userName,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentConfigPatch struct for IncidentConfigPatch

func NewIncidentConfigPatch added in v1.0.8

func NewIncidentConfigPatch() *IncidentConfigPatch

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

func NewIncidentConfigPatchWithDefaults added in v1.0.8

func NewIncidentConfigPatchWithDefaults() *IncidentConfigPatch

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

func (*IncidentConfigPatch) GetClientId added in v1.0.8

func (o *IncidentConfigPatch) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*IncidentConfigPatch) GetClientIdOk added in v1.0.8

func (o *IncidentConfigPatch) GetClientIdOk() (*string, bool)

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

func (*IncidentConfigPatch) GetClientSecret added in v1.0.8

func (o *IncidentConfigPatch) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*IncidentConfigPatch) GetClientSecretOk added in v1.0.8

func (o *IncidentConfigPatch) GetClientSecretOk() (*string, bool)

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

func (*IncidentConfigPatch) GetCriticalEvent added in v1.0.8

func (o *IncidentConfigPatch) GetCriticalEvent() bool

GetCriticalEvent returns the CriticalEvent field value if set, zero value otherwise.

func (*IncidentConfigPatch) GetCriticalEventOk added in v1.0.8

func (o *IncidentConfigPatch) GetCriticalEventOk() (*bool, bool)

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

func (*IncidentConfigPatch) GetDomain added in v1.0.8

func (o *IncidentConfigPatch) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*IncidentConfigPatch) GetDomainOk added in v1.0.8

func (o *IncidentConfigPatch) GetDomainOk() (*string, bool)

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

func (*IncidentConfigPatch) GetPassword added in v1.0.8

func (o *IncidentConfigPatch) GetPassword() string

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

func (*IncidentConfigPatch) GetPasswordOk added in v1.0.8

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

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

func (*IncidentConfigPatch) GetUserName added in v1.0.8

func (o *IncidentConfigPatch) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*IncidentConfigPatch) GetUserNameOk added in v1.0.8

func (o *IncidentConfigPatch) 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 (*IncidentConfigPatch) HasClientId added in v1.0.8

func (o *IncidentConfigPatch) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*IncidentConfigPatch) HasClientSecret added in v1.0.8

func (o *IncidentConfigPatch) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*IncidentConfigPatch) HasCriticalEvent added in v1.0.8

func (o *IncidentConfigPatch) HasCriticalEvent() bool

HasCriticalEvent returns a boolean if a field has been set.

func (*IncidentConfigPatch) HasDomain added in v1.0.8

func (o *IncidentConfigPatch) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*IncidentConfigPatch) HasPassword added in v1.0.8

func (o *IncidentConfigPatch) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*IncidentConfigPatch) HasUserName added in v1.0.8

func (o *IncidentConfigPatch) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (IncidentConfigPatch) MarshalJSON added in v1.0.8

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

func (*IncidentConfigPatch) SetClientId added in v1.0.8

func (o *IncidentConfigPatch) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*IncidentConfigPatch) SetClientSecret added in v1.0.8

func (o *IncidentConfigPatch) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*IncidentConfigPatch) SetCriticalEvent added in v1.0.8

func (o *IncidentConfigPatch) SetCriticalEvent(v bool)

SetCriticalEvent gets a reference to the given bool and assigns it to the CriticalEvent field.

func (*IncidentConfigPatch) SetDomain added in v1.0.8

func (o *IncidentConfigPatch) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*IncidentConfigPatch) SetPassword added in v1.0.8

func (o *IncidentConfigPatch) SetPassword(v string)

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

func (*IncidentConfigPatch) SetUserName added in v1.0.8

func (o *IncidentConfigPatch) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*IncidentConfigPatch) UnmarshalJSON added in v1.0.8

func (o *IncidentConfigPatch) UnmarshalJSON(bytes []byte) (err error)

type IncidentConfigUpdate added in v1.0.8

type IncidentConfigUpdate struct {
	ClientId             string         `json:"clientId"`
	ClientSecret         string         `json:"clientSecret"`
	CriticalEvent        *bool          `json:"criticalEvent,omitempty"`
	Domain               string         `json:"domain"`
	Password             string         `json:"password"`
	UserName             string         `json:"userName"`
	Proxy                NullableString `json:"proxy,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentConfigUpdate struct for IncidentConfigUpdate

func NewIncidentConfigUpdate added in v1.0.8

func NewIncidentConfigUpdate(clientId string, clientSecret string, domain string, password string, userName string) *IncidentConfigUpdate

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

func NewIncidentConfigUpdateWithDefaults added in v1.0.8

func NewIncidentConfigUpdateWithDefaults() *IncidentConfigUpdate

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

func (*IncidentConfigUpdate) GetClientId added in v1.0.8

func (o *IncidentConfigUpdate) GetClientId() string

GetClientId returns the ClientId field value

func (*IncidentConfigUpdate) GetClientIdOk added in v1.0.8

func (o *IncidentConfigUpdate) GetClientIdOk() (*string, bool)

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

func (*IncidentConfigUpdate) GetClientSecret added in v1.0.8

func (o *IncidentConfigUpdate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*IncidentConfigUpdate) GetClientSecretOk added in v1.0.8

func (o *IncidentConfigUpdate) GetClientSecretOk() (*string, bool)

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

func (*IncidentConfigUpdate) GetCriticalEvent added in v1.0.8

func (o *IncidentConfigUpdate) GetCriticalEvent() bool

GetCriticalEvent returns the CriticalEvent field value if set, zero value otherwise.

func (*IncidentConfigUpdate) GetCriticalEventOk added in v1.0.8

func (o *IncidentConfigUpdate) GetCriticalEventOk() (*bool, bool)

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

func (*IncidentConfigUpdate) GetDomain added in v1.0.8

func (o *IncidentConfigUpdate) GetDomain() string

GetDomain returns the Domain field value

func (*IncidentConfigUpdate) GetDomainOk added in v1.0.8

func (o *IncidentConfigUpdate) GetDomainOk() (*string, bool)

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

func (*IncidentConfigUpdate) GetPassword added in v1.0.8

func (o *IncidentConfigUpdate) GetPassword() string

GetPassword returns the Password field value

func (*IncidentConfigUpdate) GetPasswordOk added in v1.0.8

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

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

func (*IncidentConfigUpdate) GetProxy added in v1.0.8

func (o *IncidentConfigUpdate) GetProxy() string

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

func (*IncidentConfigUpdate) GetProxyOk added in v1.0.8

func (o *IncidentConfigUpdate) GetProxyOk() (*string, bool)

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

func (*IncidentConfigUpdate) GetUserName added in v1.0.8

func (o *IncidentConfigUpdate) GetUserName() string

GetUserName returns the UserName field value

func (*IncidentConfigUpdate) GetUserNameOk added in v1.0.8

func (o *IncidentConfigUpdate) GetUserNameOk() (*string, bool)

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

func (*IncidentConfigUpdate) HasCriticalEvent added in v1.0.8

func (o *IncidentConfigUpdate) HasCriticalEvent() bool

HasCriticalEvent returns a boolean if a field has been set.

func (*IncidentConfigUpdate) HasProxy added in v1.0.8

func (o *IncidentConfigUpdate) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (IncidentConfigUpdate) MarshalJSON added in v1.0.8

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

func (*IncidentConfigUpdate) SetClientId added in v1.0.8

func (o *IncidentConfigUpdate) SetClientId(v string)

SetClientId sets field value

func (*IncidentConfigUpdate) SetClientSecret added in v1.0.8

func (o *IncidentConfigUpdate) SetClientSecret(v string)

SetClientSecret sets field value

func (*IncidentConfigUpdate) SetCriticalEvent added in v1.0.8

func (o *IncidentConfigUpdate) SetCriticalEvent(v bool)

SetCriticalEvent gets a reference to the given bool and assigns it to the CriticalEvent field.

func (*IncidentConfigUpdate) SetDomain added in v1.0.8

func (o *IncidentConfigUpdate) SetDomain(v string)

SetDomain sets field value

func (*IncidentConfigUpdate) SetPassword added in v1.0.8

func (o *IncidentConfigUpdate) SetPassword(v string)

SetPassword sets field value

func (*IncidentConfigUpdate) SetProxy added in v1.0.8

func (o *IncidentConfigUpdate) SetProxy(v string)

SetProxy gets a reference to the given NullableString and assigns it to the Proxy field.

func (*IncidentConfigUpdate) SetProxyNil added in v1.0.8

func (o *IncidentConfigUpdate) SetProxyNil()

SetProxyNil sets the value for Proxy to be an explicit nil

func (*IncidentConfigUpdate) SetUserName added in v1.0.8

func (o *IncidentConfigUpdate) SetUserName(v string)

SetUserName sets field value

func (*IncidentConfigUpdate) UnmarshalJSON added in v1.0.8

func (o *IncidentConfigUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*IncidentConfigUpdate) UnsetProxy added in v1.0.8

func (o *IncidentConfigUpdate) UnsetProxy()

UnsetProxy ensures that no value is present for Proxy, not even an explicit nil

type IncidentConfigurationsApiService added in v1.0.8

type IncidentConfigurationsApiService service

IncidentConfigurationsApiService IncidentConfigurationsApi service

func (*IncidentConfigurationsApiService) CreateServiceNowConfiguration added in v1.0.8

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

func (*IncidentConfigurationsApiService) CreateServiceNowConfigurationExecute added in v1.0.8

* Execute executes the request * @return ServiceNowConfiguration

func (*IncidentConfigurationsApiService) DeleteServiceNowConfiguration added in v1.0.8

* DeleteServiceNowConfiguration Deletes a ServiceNow configuration. * Delete service now configuration, only if no associated entities exists. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteServiceNowConfigurationRequest

func (*IncidentConfigurationsApiService) DeleteServiceNowConfigurationExecute added in v1.0.8

* Execute executes the request

func (*IncidentConfigurationsApiService) GetConfiguration added in v1.0.8

* GetConfiguration API to get configuration of encloud service. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetConfigurationRequest

func (*IncidentConfigurationsApiService) GetConfigurationExecute added in v1.0.8

* Execute executes the request * @return IncidentConfig

func (*IncidentConfigurationsApiService) GetServiceNowConfiguration added in v1.0.8

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

func (*IncidentConfigurationsApiService) GetServiceNowConfigurationExecute added in v1.0.8

* Execute executes the request * @return ServiceNowConfiguration

func (*IncidentConfigurationsApiService) GetServiceNowConfigurationsPage added in v1.0.8

* GetServiceNowConfigurationsPage Returns a ServiceNow configurations. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetServiceNowConfigurationsPageRequest

func (*IncidentConfigurationsApiService) GetServiceNowConfigurationsPageExecute added in v1.0.8

* Execute executes the request * @return ServiceNowConfigurationsPage

func (*IncidentConfigurationsApiService) PatchConfiguration added in v1.0.8

* PatchConfiguration API to patch configure encloud service * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiPatchConfigurationRequest

func (*IncidentConfigurationsApiService) PatchConfigurationExecute added in v1.0.8

* Execute executes the request * @return IncidentConfig

func (*IncidentConfigurationsApiService) UpdateConfiguration added in v1.0.8

* UpdateConfiguration API to configure encloud service. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiUpdateConfigurationRequest

func (*IncidentConfigurationsApiService) UpdateConfigurationExecute added in v1.0.8

* Execute executes the request * @return IncidentConfig

type IncidentCreate added in v1.0.8

type IncidentCreate struct {
	Attributes *map[string]interface{} `json:"attributes,omitempty"`
	// inquiry|software|hardware|network|database
	Category             *string        `json:"category,omitempty"`
	Description          string         `json:"description"`
	Impact               *string        `json:"impact,omitempty"`
	Priority             *string        `json:"priority,omitempty"`
	Severity             *string        `json:"severity,omitempty"`
	State                *string        `json:"state,omitempty"`
	Subcategory          *string        `json:"subcategory,omitempty"`
	Tenant               NullableString `json:"tenant,omitempty"`
	Urgency              *string        `json:"urgency,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentCreate struct for IncidentCreate

func NewIncidentCreate added in v1.0.8

func NewIncidentCreate(description string) *IncidentCreate

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

func NewIncidentCreateWithDefaults added in v1.0.8

func NewIncidentCreateWithDefaults() *IncidentCreate

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

func (*IncidentCreate) GetAttributes added in v1.0.8

func (o *IncidentCreate) GetAttributes() map[string]interface{}

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

func (*IncidentCreate) GetAttributesOk added in v1.0.8

func (o *IncidentCreate) GetAttributesOk() (*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 (*IncidentCreate) GetCategory added in v1.0.8

func (o *IncidentCreate) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*IncidentCreate) GetCategoryOk added in v1.0.8

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

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

func (*IncidentCreate) GetDescription added in v1.0.8

func (o *IncidentCreate) GetDescription() string

GetDescription returns the Description field value

func (*IncidentCreate) GetDescriptionOk added in v1.0.8

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

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

func (*IncidentCreate) GetImpact added in v1.0.8

func (o *IncidentCreate) GetImpact() string

GetImpact returns the Impact field value if set, zero value otherwise.

func (*IncidentCreate) GetImpactOk added in v1.0.8

func (o *IncidentCreate) GetImpactOk() (*string, bool)

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

func (*IncidentCreate) GetPriority added in v1.0.8

func (o *IncidentCreate) GetPriority() string

GetPriority returns the Priority field value if set, zero value otherwise.

func (*IncidentCreate) GetPriorityOk added in v1.0.8

func (o *IncidentCreate) GetPriorityOk() (*string, bool)

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

func (*IncidentCreate) GetSeverity added in v1.0.8

func (o *IncidentCreate) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*IncidentCreate) GetSeverityOk added in v1.0.8

func (o *IncidentCreate) GetSeverityOk() (*string, bool)

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

func (*IncidentCreate) GetState added in v1.0.8

func (o *IncidentCreate) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*IncidentCreate) GetStateOk added in v1.0.8

func (o *IncidentCreate) 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 (*IncidentCreate) GetSubcategory added in v1.0.8

func (o *IncidentCreate) GetSubcategory() string

GetSubcategory returns the Subcategory field value if set, zero value otherwise.

func (*IncidentCreate) GetSubcategoryOk added in v1.0.8

func (o *IncidentCreate) GetSubcategoryOk() (*string, bool)

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

func (*IncidentCreate) GetTenant added in v1.0.8

func (o *IncidentCreate) GetTenant() string

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

func (*IncidentCreate) GetTenantOk added in v1.0.8

func (o *IncidentCreate) GetTenantOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IncidentCreate) GetUrgency added in v1.0.8

func (o *IncidentCreate) GetUrgency() string

GetUrgency returns the Urgency field value if set, zero value otherwise.

func (*IncidentCreate) GetUrgencyOk added in v1.0.8

func (o *IncidentCreate) GetUrgencyOk() (*string, bool)

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

func (*IncidentCreate) HasAttributes added in v1.0.8

func (o *IncidentCreate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*IncidentCreate) HasCategory added in v1.0.8

func (o *IncidentCreate) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*IncidentCreate) HasImpact added in v1.0.8

func (o *IncidentCreate) HasImpact() bool

HasImpact returns a boolean if a field has been set.

func (*IncidentCreate) HasPriority added in v1.0.8

func (o *IncidentCreate) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*IncidentCreate) HasSeverity added in v1.0.8

func (o *IncidentCreate) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*IncidentCreate) HasState added in v1.0.8

func (o *IncidentCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*IncidentCreate) HasSubcategory added in v1.0.8

func (o *IncidentCreate) HasSubcategory() bool

HasSubcategory returns a boolean if a field has been set.

func (*IncidentCreate) HasTenant added in v1.0.8

func (o *IncidentCreate) HasTenant() bool

HasTenant returns a boolean if a field has been set.

func (*IncidentCreate) HasUrgency added in v1.0.8

func (o *IncidentCreate) HasUrgency() bool

HasUrgency returns a boolean if a field has been set.

func (IncidentCreate) MarshalJSON added in v1.0.8

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

func (*IncidentCreate) SetAttributes added in v1.0.8

func (o *IncidentCreate) SetAttributes(v map[string]interface{})

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

func (*IncidentCreate) SetCategory added in v1.0.8

func (o *IncidentCreate) SetCategory(v string)

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

func (*IncidentCreate) SetDescription added in v1.0.8

func (o *IncidentCreate) SetDescription(v string)

SetDescription sets field value

func (*IncidentCreate) SetImpact added in v1.0.8

func (o *IncidentCreate) SetImpact(v string)

SetImpact gets a reference to the given string and assigns it to the Impact field.

func (*IncidentCreate) SetPriority added in v1.0.8

func (o *IncidentCreate) SetPriority(v string)

SetPriority gets a reference to the given string and assigns it to the Priority field.

func (*IncidentCreate) SetSeverity added in v1.0.8

func (o *IncidentCreate) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*IncidentCreate) SetState added in v1.0.8

func (o *IncidentCreate) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*IncidentCreate) SetSubcategory added in v1.0.8

func (o *IncidentCreate) SetSubcategory(v string)

SetSubcategory gets a reference to the given string and assigns it to the Subcategory field.

func (*IncidentCreate) SetTenant added in v1.0.8

func (o *IncidentCreate) SetTenant(v string)

SetTenant gets a reference to the given NullableString and assigns it to the Tenant field.

func (*IncidentCreate) SetTenantNil added in v1.0.8

func (o *IncidentCreate) SetTenantNil()

SetTenantNil sets the value for Tenant to be an explicit nil

func (*IncidentCreate) SetUrgency added in v1.0.8

func (o *IncidentCreate) SetUrgency(v string)

SetUrgency gets a reference to the given string and assigns it to the Urgency field.

func (*IncidentCreate) UnmarshalJSON added in v1.0.8

func (o *IncidentCreate) UnmarshalJSON(bytes []byte) (err error)

func (*IncidentCreate) UnsetTenant added in v1.0.8

func (o *IncidentCreate) UnsetTenant()

UnsetTenant ensures that no value is present for Tenant, not even an explicit nil

type IncidentUpdate added in v1.0.8

type IncidentUpdate struct {
	Attributes *map[string]interface{} `json:"attributes,omitempty"`
	// inquiry|software|hardware|network|database
	Category             *string        `json:"category,omitempty"`
	Description          string         `json:"description"`
	Impact               *string        `json:"impact,omitempty"`
	Priority             *string        `json:"priority,omitempty"`
	Severity             *string        `json:"severity,omitempty"`
	State                *string        `json:"state,omitempty"`
	Subcategory          *string        `json:"subcategory,omitempty"`
	Tenant               NullableString `json:"tenant,omitempty"`
	Urgency              *string        `json:"urgency,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentUpdate struct for IncidentUpdate

func NewIncidentUpdate added in v1.0.8

func NewIncidentUpdate(description string) *IncidentUpdate

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

func NewIncidentUpdateWithDefaults added in v1.0.8

func NewIncidentUpdateWithDefaults() *IncidentUpdate

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

func (*IncidentUpdate) GetAttributes added in v1.0.8

func (o *IncidentUpdate) GetAttributes() map[string]interface{}

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

func (*IncidentUpdate) GetAttributesOk added in v1.0.8

func (o *IncidentUpdate) GetAttributesOk() (*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 (*IncidentUpdate) GetCategory added in v1.0.8

func (o *IncidentUpdate) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*IncidentUpdate) GetCategoryOk added in v1.0.8

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

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

func (*IncidentUpdate) GetDescription added in v1.0.8

func (o *IncidentUpdate) GetDescription() string

GetDescription returns the Description field value

func (*IncidentUpdate) GetDescriptionOk added in v1.0.8

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

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

func (*IncidentUpdate) GetImpact added in v1.0.8

func (o *IncidentUpdate) GetImpact() string

GetImpact returns the Impact field value if set, zero value otherwise.

func (*IncidentUpdate) GetImpactOk added in v1.0.8

func (o *IncidentUpdate) GetImpactOk() (*string, bool)

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

func (*IncidentUpdate) GetPriority added in v1.0.8

func (o *IncidentUpdate) GetPriority() string

GetPriority returns the Priority field value if set, zero value otherwise.

func (*IncidentUpdate) GetPriorityOk added in v1.0.8

func (o *IncidentUpdate) GetPriorityOk() (*string, bool)

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

func (*IncidentUpdate) GetSeverity added in v1.0.8

func (o *IncidentUpdate) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*IncidentUpdate) GetSeverityOk added in v1.0.8

func (o *IncidentUpdate) GetSeverityOk() (*string, bool)

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

func (*IncidentUpdate) GetState added in v1.0.8

func (o *IncidentUpdate) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*IncidentUpdate) GetStateOk added in v1.0.8

func (o *IncidentUpdate) 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 (*IncidentUpdate) GetSubcategory added in v1.0.8

func (o *IncidentUpdate) GetSubcategory() string

GetSubcategory returns the Subcategory field value if set, zero value otherwise.

func (*IncidentUpdate) GetSubcategoryOk added in v1.0.8

func (o *IncidentUpdate) GetSubcategoryOk() (*string, bool)

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

func (*IncidentUpdate) GetTenant added in v1.0.8

func (o *IncidentUpdate) GetTenant() string

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

func (*IncidentUpdate) GetTenantOk added in v1.0.8

func (o *IncidentUpdate) GetTenantOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IncidentUpdate) GetUrgency added in v1.0.8

func (o *IncidentUpdate) GetUrgency() string

GetUrgency returns the Urgency field value if set, zero value otherwise.

func (*IncidentUpdate) GetUrgencyOk added in v1.0.8

func (o *IncidentUpdate) GetUrgencyOk() (*string, bool)

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

func (*IncidentUpdate) HasAttributes added in v1.0.8

func (o *IncidentUpdate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*IncidentUpdate) HasCategory added in v1.0.8

func (o *IncidentUpdate) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*IncidentUpdate) HasImpact added in v1.0.8

func (o *IncidentUpdate) HasImpact() bool

HasImpact returns a boolean if a field has been set.

func (*IncidentUpdate) HasPriority added in v1.0.8

func (o *IncidentUpdate) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*IncidentUpdate) HasSeverity added in v1.0.8

func (o *IncidentUpdate) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*IncidentUpdate) HasState added in v1.0.8

func (o *IncidentUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*IncidentUpdate) HasSubcategory added in v1.0.8

func (o *IncidentUpdate) HasSubcategory() bool

HasSubcategory returns a boolean if a field has been set.

func (*IncidentUpdate) HasTenant added in v1.0.8

func (o *IncidentUpdate) HasTenant() bool

HasTenant returns a boolean if a field has been set.

func (*IncidentUpdate) HasUrgency added in v1.0.8

func (o *IncidentUpdate) HasUrgency() bool

HasUrgency returns a boolean if a field has been set.

func (IncidentUpdate) MarshalJSON added in v1.0.8

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

func (*IncidentUpdate) SetAttributes added in v1.0.8

func (o *IncidentUpdate) SetAttributes(v map[string]interface{})

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

func (*IncidentUpdate) SetCategory added in v1.0.8

func (o *IncidentUpdate) SetCategory(v string)

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

func (*IncidentUpdate) SetDescription added in v1.0.8

func (o *IncidentUpdate) SetDescription(v string)

SetDescription sets field value

func (*IncidentUpdate) SetImpact added in v1.0.8

func (o *IncidentUpdate) SetImpact(v string)

SetImpact gets a reference to the given string and assigns it to the Impact field.

func (*IncidentUpdate) SetPriority added in v1.0.8

func (o *IncidentUpdate) SetPriority(v string)

SetPriority gets a reference to the given string and assigns it to the Priority field.

func (*IncidentUpdate) SetSeverity added in v1.0.8

func (o *IncidentUpdate) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*IncidentUpdate) SetState added in v1.0.8

func (o *IncidentUpdate) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*IncidentUpdate) SetSubcategory added in v1.0.8

func (o *IncidentUpdate) SetSubcategory(v string)

SetSubcategory gets a reference to the given string and assigns it to the Subcategory field.

func (*IncidentUpdate) SetTenant added in v1.0.8

func (o *IncidentUpdate) SetTenant(v string)

SetTenant gets a reference to the given NullableString and assigns it to the Tenant field.

func (*IncidentUpdate) SetTenantNil added in v1.0.8

func (o *IncidentUpdate) SetTenantNil()

SetTenantNil sets the value for Tenant to be an explicit nil

func (*IncidentUpdate) SetUrgency added in v1.0.8

func (o *IncidentUpdate) SetUrgency(v string)

SetUrgency gets a reference to the given string and assigns it to the Urgency field.

func (*IncidentUpdate) UnmarshalJSON added in v1.0.8

func (o *IncidentUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*IncidentUpdate) UnsetTenant added in v1.0.8

func (o *IncidentUpdate) UnsetTenant()

UnsetTenant ensures that no value is present for Tenant, not even an explicit nil

type IncidentsApiService added in v1.0.8

type IncidentsApiService service

IncidentsApiService IncidentsApi service

func (*IncidentsApiService) CancelIncident added in v1.0.8

* CancelIncident Cancels an incident. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiCancelIncidentRequest

func (*IncidentsApiService) CancelIncidentExecute added in v1.0.8

* Execute executes the request * @return Incident

func (*IncidentsApiService) CreateIncident added in v1.0.8

* CreateIncident Create a new Incident. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateIncidentRequest

func (*IncidentsApiService) CreateIncidentExecute added in v1.0.8

* Execute executes the request * @return Incident

func (*IncidentsApiService) DeleteIncident added in v1.0.8

* DeleteIncident Deletes an incident. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteIncidentRequest

func (*IncidentsApiService) DeleteIncidentExecute added in v1.0.8

func (a *IncidentsApiService) DeleteIncidentExecute(r ApiDeleteIncidentRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*IncidentsApiService) GetIncident added in v1.0.8

* GetIncident Get incident details. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetIncidentRequest

func (*IncidentsApiService) GetIncidentExecute added in v1.0.8

* Execute executes the request * @return Incident

func (*IncidentsApiService) GetIncidents added in v1.0.8

* GetIncidents Get Incidents by filter. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetIncidentsRequest

func (*IncidentsApiService) GetIncidentsExecute added in v1.0.8

* Execute executes the request * @return IncidentsPage

func (*IncidentsApiService) UpdateIncident added in v1.0.8

* UpdateIncident Updates an incident. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateIncidentRequest

func (*IncidentsApiService) UpdateIncidentExecute added in v1.0.8

* Execute executes the request * @return Incident

type IncidentsPage added in v1.0.8

type IncidentsPage struct {
	Page                 *int32         `json:"page,omitempty"`
	PageSize             *int32         `json:"pageSize,omitempty"`
	TotalItems           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Incident    `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentsPage struct for IncidentsPage

func NewIncidentsPage added in v1.0.8

func NewIncidentsPage() *IncidentsPage

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

func NewIncidentsPageWithDefaults added in v1.0.8

func NewIncidentsPageWithDefaults() *IncidentsPage

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

func (*IncidentsPage) GetContents added in v1.0.8

func (o *IncidentsPage) GetContents() []Incident

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

func (*IncidentsPage) GetContentsOk added in v1.0.8

func (o *IncidentsPage) GetContentsOk() (*[]Incident, 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 (*IncidentsPage) GetHasNext added in v1.0.8

func (o *IncidentsPage) GetHasNext() bool

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

func (*IncidentsPage) GetHasNextOk added in v1.0.8

func (o *IncidentsPage) 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 (*IncidentsPage) GetHasPrevious added in v1.0.8

func (o *IncidentsPage) GetHasPrevious() bool

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

func (*IncidentsPage) GetHasPreviousOk added in v1.0.8

func (o *IncidentsPage) 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 (*IncidentsPage) GetPage added in v1.0.8

func (o *IncidentsPage) GetPage() int32

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

func (*IncidentsPage) GetPageOk added in v1.0.8

func (o *IncidentsPage) 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 (*IncidentsPage) GetPageSize added in v1.0.8

func (o *IncidentsPage) GetPageSize() int32

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

func (*IncidentsPage) GetPageSizeOk added in v1.0.8

func (o *IncidentsPage) 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 (*IncidentsPage) GetSortBy added in v1.0.8

func (o *IncidentsPage) GetSortBy() string

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

func (*IncidentsPage) GetSortByOk added in v1.0.8

func (o *IncidentsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IncidentsPage) GetSortOrder added in v1.0.8

func (o *IncidentsPage) GetSortOrder() string

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

func (*IncidentsPage) GetSortOrderOk added in v1.0.8

func (o *IncidentsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IncidentsPage) GetTotalItems added in v1.0.8

func (o *IncidentsPage) GetTotalItems() int64

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

func (*IncidentsPage) GetTotalItemsOk added in v1.0.8

func (o *IncidentsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IncidentsPage) HasContents added in v1.0.8

func (o *IncidentsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*IncidentsPage) HasHasNext added in v1.0.8

func (o *IncidentsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*IncidentsPage) HasHasPrevious added in v1.0.8

func (o *IncidentsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*IncidentsPage) HasPage added in v1.0.8

func (o *IncidentsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*IncidentsPage) HasPageSize added in v1.0.8

func (o *IncidentsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*IncidentsPage) HasSortBy added in v1.0.8

func (o *IncidentsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*IncidentsPage) HasSortOrder added in v1.0.8

func (o *IncidentsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*IncidentsPage) HasTotalItems added in v1.0.8

func (o *IncidentsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (IncidentsPage) MarshalJSON added in v1.0.8

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

func (*IncidentsPage) SetContents added in v1.0.8

func (o *IncidentsPage) SetContents(v []Incident)

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

func (*IncidentsPage) SetHasNext added in v1.0.8

func (o *IncidentsPage) SetHasNext(v bool)

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

func (*IncidentsPage) SetHasNextNil added in v1.0.8

func (o *IncidentsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*IncidentsPage) SetHasPrevious added in v1.0.8

func (o *IncidentsPage) SetHasPrevious(v bool)

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

func (*IncidentsPage) SetHasPreviousNil added in v1.0.8

func (o *IncidentsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*IncidentsPage) SetPage added in v1.0.8

func (o *IncidentsPage) SetPage(v int32)

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

func (*IncidentsPage) SetPageSize added in v1.0.8

func (o *IncidentsPage) SetPageSize(v int32)

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

func (*IncidentsPage) SetSortBy added in v1.0.8

func (o *IncidentsPage) SetSortBy(v string)

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

func (*IncidentsPage) SetSortByNil added in v1.0.8

func (o *IncidentsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*IncidentsPage) SetSortOrder added in v1.0.8

func (o *IncidentsPage) SetSortOrder(v string)

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

func (*IncidentsPage) SetSortOrderNil added in v1.0.8

func (o *IncidentsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*IncidentsPage) SetTotalItems added in v1.0.8

func (o *IncidentsPage) SetTotalItems(v int64)

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

func (*IncidentsPage) SetTotalItemsNil added in v1.0.8

func (o *IncidentsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*IncidentsPage) UnmarshalJSON added in v1.0.8

func (o *IncidentsPage) UnmarshalJSON(bytes []byte) (err error)

func (*IncidentsPage) UnsetHasNext added in v1.0.8

func (o *IncidentsPage) UnsetHasNext()

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

func (*IncidentsPage) UnsetHasPrevious added in v1.0.8

func (o *IncidentsPage) UnsetHasPrevious()

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

func (*IncidentsPage) UnsetSortBy added in v1.0.8

func (o *IncidentsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*IncidentsPage) UnsetSortOrder added in v1.0.8

func (o *IncidentsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*IncidentsPage) UnsetTotalItems added in v1.0.8

func (o *IncidentsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type IncidentsPageAllOf added in v1.0.8

type IncidentsPageAllOf struct {
	Contents             *[]Incident `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

IncidentsPageAllOf struct for IncidentsPageAllOf

func NewIncidentsPageAllOf added in v1.0.8

func NewIncidentsPageAllOf() *IncidentsPageAllOf

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

func NewIncidentsPageAllOfWithDefaults added in v1.0.8

func NewIncidentsPageAllOfWithDefaults() *IncidentsPageAllOf

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

func (*IncidentsPageAllOf) GetContents added in v1.0.8

func (o *IncidentsPageAllOf) GetContents() []Incident

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

func (*IncidentsPageAllOf) GetContentsOk added in v1.0.8

func (o *IncidentsPageAllOf) GetContentsOk() (*[]Incident, 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 (*IncidentsPageAllOf) HasContents added in v1.0.8

func (o *IncidentsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (IncidentsPageAllOf) MarshalJSON added in v1.0.8

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

func (*IncidentsPageAllOf) SetContents added in v1.0.8

func (o *IncidentsPageAllOf) SetContents(v []Incident)

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

func (*IncidentsPageAllOf) UnmarshalJSON added in v1.0.8

func (o *IncidentsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type LegacyAbsoluteConfig

type LegacyAbsoluteConfig struct {
	DateTime             *string `json:"dateTime,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyAbsoluteConfig) UnmarshalJSON added in v1.0.5

func (o *LegacyAbsoluteConfig) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyAddress) UnmarshalJSON added in v1.0.5

func (o *LegacyAddress) UnmarshalJSON(bytes []byte) (err error)

type LegacyNsoResponseTypes

type LegacyNsoResponseTypes struct {
	CreateOperation      *string `json:"createOperation,omitempty"`
	UpdateOperation      *string `json:"updateOperation,omitempty"`
	DeleteOperation      *string `json:"deleteOperation,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyNsoResponseTypes) UnmarshalJSON added in v1.0.5

func (o *LegacyNsoResponseTypes) UnmarshalJSON(bytes []byte) (err error)

type LegacyRelativeConfig

type LegacyRelativeConfig struct {
	ScheduleIn           *string `json:"scheduleIn,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyRelativeConfig) UnmarshalJSON added in v1.0.5

func (o *LegacyRelativeConfig) UnmarshalJSON(bytes []byte) (err error)

type LegacyScheduleConfig

type LegacyScheduleConfig struct {
	Method               *string               `json:"method,omitempty"`
	Relative             *LegacyRelativeConfig `json:"relative,omitempty"`
	Absolute             *LegacyAbsoluteConfig `json:"absolute,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyScheduleConfig) UnmarshalJSON added in v1.0.5

func (o *LegacyScheduleConfig) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyServiceOrder) UnmarshalJSON added in v1.0.5

func (o *LegacyServiceOrder) UnmarshalJSON(bytes []byte) (err error)

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]interface{}   `json:"serviceDowngrade,omitempty"`
	NsoResponseTypes     *LegacyNsoResponseTypes   `json:"nsoResponseTypes,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetServiceDowngrade returns the ServiceDowngrade field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetServiceDowngradeOk

func (o *LegacyServiceOrderDetail) GetServiceDowngradeOk() (*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]interface{})

SetServiceDowngrade gets a reference to the given 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.

func (*LegacyServiceOrderDetail) UnmarshalJSON added in v1.0.5

func (o *LegacyServiceOrderDetail) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*LegacyServiceOrderResponse) UnmarshalJSON added in v1.0.5

func (o *LegacyServiceOrderResponse) UnmarshalJSON(bytes []byte) (err error)

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]interface{} `json:"siteAttributes,omitempty"`
	Delete               *bool                   `json:"delete,omitempty"`
	OperationalStatus    *string                 `json:"operationalStatus,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetSiteAttributes returns the SiteAttributes field value if set, zero value otherwise.

func (*LegacySite) GetSiteAttributesOk

func (o *LegacySite) GetSiteAttributesOk() (*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]interface{})

SetSiteAttributes gets a reference to the given 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

func (*LegacySite) UnmarshalJSON added in v1.0.5

func (o *LegacySite) UnmarshalJSON(bytes []byte) (err error)

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]interface{}  `json:"deviceAttributes,omitempty"`
	DeviceOnboarding     *LegacySiteDeviceOnboard `json:"deviceOnboarding,omitempty"`
	Delete               *bool                    `json:"delete,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetDeviceAttributes returns the DeviceAttributes field value if set, zero value otherwise.

func (*LegacySiteDevice) GetDeviceAttributesOk

func (o *LegacySiteDevice) GetDeviceAttributesOk() (*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]interface{})

SetDeviceAttributes gets a reference to the given 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.

func (*LegacySiteDevice) UnmarshalJSON added in v1.0.5

func (o *LegacySiteDevice) UnmarshalJSON(bytes []byte) (err error)

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]interface{} `json:"deviceOnboardInformation,omitempty"`
	AdditionalProperties     map[string]interface{}
}

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]interface{}

GetDeviceOnboardInformation returns the DeviceOnboardInformation field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetDeviceOnboardInformationOk

func (o *LegacySiteDeviceOnboard) GetDeviceOnboardInformationOk() (*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]interface{})

SetDeviceOnboardInformation gets a reference to the given 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.

func (*LegacySiteDeviceOnboard) UnmarshalJSON added in v1.0.5

func (o *LegacySiteDeviceOnboard) UnmarshalJSON(bytes []byte) (err error)

type LegacySubscriptionDetail

type LegacySubscriptionDetail struct {
	SiteCount             *map[string]interface{} `json:"siteCount,omitempty"`
	Sites                 *[]LegacySite           `json:"sites,omitempty"`
	OfferSelection        *map[string]interface{} `json:"offerSelection,omitempty"`
	ServiceInstanceDetail *map[string]interface{} `json:"serviceInstanceDetail,omitempty"`
	PriceDetail           *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"`
	AdditionalProperties  map[string]interface{}
}

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]interface{}

GetOfferSelection returns the OfferSelection field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetOfferSelectionOk

func (o *LegacySubscriptionDetail) GetOfferSelectionOk() (*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]interface{}

GetPriceDetail returns the PriceDetail field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetPriceDetailOk

func (o *LegacySubscriptionDetail) GetPriceDetailOk() (*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]interface{}

GetServiceInstanceDetail returns the ServiceInstanceDetail field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetServiceInstanceDetailOk

func (o *LegacySubscriptionDetail) GetServiceInstanceDetailOk() (*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]interface{})

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

func (*LegacySubscriptionDetail) SetPriceDetail

func (o *LegacySubscriptionDetail) SetPriceDetail(v map[string]interface{})

SetPriceDetail gets a reference to the given 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]interface{})

SetServiceInstanceDetail gets a reference to the given 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.

func (*LegacySubscriptionDetail) UnmarshalJSON added in v1.0.5

func (o *LegacySubscriptionDetail) UnmarshalJSON(bytes []byte) (err error)

type LicenseDetails added in v1.0.8

type LicenseDetails struct {
	// Type of license - TERM or DEMO or PERPETUAL
	LicenseType *string `json:"licenseType,omitempty"`
	// Number of reserved licenses
	Quantity *int64 `json:"quantity,omitempty"`
	// License usage start date in yyyy-mm-dd format
	StartDate *string `json:"startDate,omitempty"`
	// License usage expiration date in yyyy-mm-dd format
	EndDate *string `json:"endDate,omitempty"`
	// Subscription refence id
	SubscriptionId *string `json:"subscriptionId,omitempty"`
	// Licencse usage status
	Status               *string `json:"status,omitempty"`
	AdditionalProperties map[string]interface{}
}

LicenseDetails struct for LicenseDetails

func NewLicenseDetails added in v1.0.8

func NewLicenseDetails() *LicenseDetails

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

func NewLicenseDetailsWithDefaults added in v1.0.8

func NewLicenseDetailsWithDefaults() *LicenseDetails

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

func (*LicenseDetails) GetEndDate added in v1.0.8

func (o *LicenseDetails) GetEndDate() string

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*LicenseDetails) GetEndDateOk added in v1.0.8

func (o *LicenseDetails) GetEndDateOk() (*string, bool)

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

func (*LicenseDetails) GetLicenseType added in v1.0.8

func (o *LicenseDetails) GetLicenseType() string

GetLicenseType returns the LicenseType field value if set, zero value otherwise.

func (*LicenseDetails) GetLicenseTypeOk added in v1.0.8

func (o *LicenseDetails) GetLicenseTypeOk() (*string, bool)

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

func (*LicenseDetails) GetQuantity added in v1.0.8

func (o *LicenseDetails) GetQuantity() int64

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*LicenseDetails) GetQuantityOk added in v1.0.8

func (o *LicenseDetails) GetQuantityOk() (*int64, bool)

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

func (*LicenseDetails) GetStartDate added in v1.0.8

func (o *LicenseDetails) GetStartDate() string

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*LicenseDetails) GetStartDateOk added in v1.0.8

func (o *LicenseDetails) GetStartDateOk() (*string, bool)

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

func (*LicenseDetails) GetStatus added in v1.0.8

func (o *LicenseDetails) GetStatus() string

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

func (*LicenseDetails) GetStatusOk added in v1.0.8

func (o *LicenseDetails) 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 (*LicenseDetails) GetSubscriptionId added in v1.0.8

func (o *LicenseDetails) GetSubscriptionId() string

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

func (*LicenseDetails) GetSubscriptionIdOk added in v1.0.8

func (o *LicenseDetails) 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 (*LicenseDetails) HasEndDate added in v1.0.8

func (o *LicenseDetails) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*LicenseDetails) HasLicenseType added in v1.0.8

func (o *LicenseDetails) HasLicenseType() bool

HasLicenseType returns a boolean if a field has been set.

func (*LicenseDetails) HasQuantity added in v1.0.8

func (o *LicenseDetails) HasQuantity() bool

HasQuantity returns a boolean if a field has been set.

func (*LicenseDetails) HasStartDate added in v1.0.8

func (o *LicenseDetails) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*LicenseDetails) HasStatus added in v1.0.8

func (o *LicenseDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*LicenseDetails) HasSubscriptionId added in v1.0.8

func (o *LicenseDetails) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (LicenseDetails) MarshalJSON added in v1.0.8

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

func (*LicenseDetails) SetEndDate added in v1.0.8

func (o *LicenseDetails) SetEndDate(v string)

SetEndDate gets a reference to the given string and assigns it to the EndDate field.

func (*LicenseDetails) SetLicenseType added in v1.0.8

func (o *LicenseDetails) SetLicenseType(v string)

SetLicenseType gets a reference to the given string and assigns it to the LicenseType field.

func (*LicenseDetails) SetQuantity added in v1.0.8

func (o *LicenseDetails) SetQuantity(v int64)

SetQuantity gets a reference to the given int64 and assigns it to the Quantity field.

func (*LicenseDetails) SetStartDate added in v1.0.8

func (o *LicenseDetails) SetStartDate(v string)

SetStartDate gets a reference to the given string and assigns it to the StartDate field.

func (*LicenseDetails) SetStatus added in v1.0.8

func (o *LicenseDetails) SetStatus(v string)

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

func (*LicenseDetails) SetSubscriptionId added in v1.0.8

func (o *LicenseDetails) SetSubscriptionId(v string)

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

func (*LicenseDetails) UnmarshalJSON added in v1.0.8

func (o *LicenseDetails) UnmarshalJSON(bytes []byte) (err error)

type LicenseSummary added in v1.0.8

type LicenseSummary struct {
	// Total entitled quantity for the license
	Entitled *int64 `json:"entitled,omitempty"`
	// Total consumed quantity for the device
	Inuse *int64 `json:"inuse,omitempty"`
	// Reserved quantity (if any)
	Reserved *int64 `json:"reserved,omitempty"`
	// Current compliance status for the license
	Status *string `json:"status,omitempty"`
	// User friendly display name for the license
	Name *string `json:"name,omitempty"`
	// Identifies if the tag is for an enforced license or not
	Enforced             *bool             `json:"enforced,omitempty"`
	LicenseDetails       *[]LicenseDetails `json:"licenseDetails,omitempty"`
	AdditionalProperties map[string]interface{}
}

LicenseSummary struct for LicenseSummary

func NewLicenseSummary added in v1.0.8

func NewLicenseSummary() *LicenseSummary

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

func NewLicenseSummaryWithDefaults added in v1.0.8

func NewLicenseSummaryWithDefaults() *LicenseSummary

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

func (*LicenseSummary) GetEnforced added in v1.0.8

func (o *LicenseSummary) GetEnforced() bool

GetEnforced returns the Enforced field value if set, zero value otherwise.

func (*LicenseSummary) GetEnforcedOk added in v1.0.8

func (o *LicenseSummary) GetEnforcedOk() (*bool, bool)

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

func (*LicenseSummary) GetEntitled added in v1.0.8

func (o *LicenseSummary) GetEntitled() int64

GetEntitled returns the Entitled field value if set, zero value otherwise.

func (*LicenseSummary) GetEntitledOk added in v1.0.8

func (o *LicenseSummary) GetEntitledOk() (*int64, bool)

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

func (*LicenseSummary) GetInuse added in v1.0.8

func (o *LicenseSummary) GetInuse() int64

GetInuse returns the Inuse field value if set, zero value otherwise.

func (*LicenseSummary) GetInuseOk added in v1.0.8

func (o *LicenseSummary) GetInuseOk() (*int64, bool)

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

func (*LicenseSummary) GetLicenseDetails added in v1.0.8

func (o *LicenseSummary) GetLicenseDetails() []LicenseDetails

GetLicenseDetails returns the LicenseDetails field value if set, zero value otherwise.

func (*LicenseSummary) GetLicenseDetailsOk added in v1.0.8

func (o *LicenseSummary) GetLicenseDetailsOk() (*[]LicenseDetails, bool)

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

func (*LicenseSummary) GetName added in v1.0.8

func (o *LicenseSummary) GetName() string

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

func (*LicenseSummary) GetNameOk added in v1.0.8

func (o *LicenseSummary) 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 (*LicenseSummary) GetReserved added in v1.0.8

func (o *LicenseSummary) GetReserved() int64

GetReserved returns the Reserved field value if set, zero value otherwise.

func (*LicenseSummary) GetReservedOk added in v1.0.8

func (o *LicenseSummary) GetReservedOk() (*int64, bool)

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

func (*LicenseSummary) GetStatus added in v1.0.8

func (o *LicenseSummary) GetStatus() string

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

func (*LicenseSummary) GetStatusOk added in v1.0.8

func (o *LicenseSummary) 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 (*LicenseSummary) HasEnforced added in v1.0.8

func (o *LicenseSummary) HasEnforced() bool

HasEnforced returns a boolean if a field has been set.

func (*LicenseSummary) HasEntitled added in v1.0.8

func (o *LicenseSummary) HasEntitled() bool

HasEntitled returns a boolean if a field has been set.

func (*LicenseSummary) HasInuse added in v1.0.8

func (o *LicenseSummary) HasInuse() bool

HasInuse returns a boolean if a field has been set.

func (*LicenseSummary) HasLicenseDetails added in v1.0.8

func (o *LicenseSummary) HasLicenseDetails() bool

HasLicenseDetails returns a boolean if a field has been set.

func (*LicenseSummary) HasName added in v1.0.8

func (o *LicenseSummary) HasName() bool

HasName returns a boolean if a field has been set.

func (*LicenseSummary) HasReserved added in v1.0.8

func (o *LicenseSummary) HasReserved() bool

HasReserved returns a boolean if a field has been set.

func (*LicenseSummary) HasStatus added in v1.0.8

func (o *LicenseSummary) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (LicenseSummary) MarshalJSON added in v1.0.8

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

func (*LicenseSummary) SetEnforced added in v1.0.8

func (o *LicenseSummary) SetEnforced(v bool)

SetEnforced gets a reference to the given bool and assigns it to the Enforced field.

func (*LicenseSummary) SetEntitled added in v1.0.8

func (o *LicenseSummary) SetEntitled(v int64)

SetEntitled gets a reference to the given int64 and assigns it to the Entitled field.

func (*LicenseSummary) SetInuse added in v1.0.8

func (o *LicenseSummary) SetInuse(v int64)

SetInuse gets a reference to the given int64 and assigns it to the Inuse field.

func (*LicenseSummary) SetLicenseDetails added in v1.0.8

func (o *LicenseSummary) SetLicenseDetails(v []LicenseDetails)

SetLicenseDetails gets a reference to the given []LicenseDetails and assigns it to the LicenseDetails field.

func (*LicenseSummary) SetName added in v1.0.8

func (o *LicenseSummary) SetName(v string)

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

func (*LicenseSummary) SetReserved added in v1.0.8

func (o *LicenseSummary) SetReserved(v int64)

SetReserved gets a reference to the given int64 and assigns it to the Reserved field.

func (*LicenseSummary) SetStatus added in v1.0.8

func (o *LicenseSummary) SetStatus(v string)

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

func (*LicenseSummary) UnmarshalJSON added in v1.0.8

func (o *LicenseSummary) UnmarshalJSON(bytes []byte) (err error)

type LicensingAccountsApiService added in v1.0.8

type LicensingAccountsApiService service

LicensingAccountsApiService LicensingAccountsApi service

func (*LicensingAccountsApiService) GetUserAccountsList added in v1.0.8

* GetUserAccountsList Returns a filtered page of smart accounts. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetUserAccountsListRequest

func (*LicensingAccountsApiService) GetUserAccountsListExecute added in v1.0.8

* Execute executes the request * @return SmartUserAccounts

type LicensingConfigurationsApiService added in v1.0.8

type LicensingConfigurationsApiService service

LicensingConfigurationsApiService LicensingConfigurationsApi service

func (*LicensingConfigurationsApiService) CreateSmartAccountConfiguration added in v1.0.8

* CreateSmartAccountConfiguration Creates a smart account configuration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateSmartAccountConfigurationRequest

func (*LicensingConfigurationsApiService) CreateSmartAccountConfigurationExecute added in v1.0.8

* Execute executes the request * @return SmartAccountConfiguration

func (*LicensingConfigurationsApiService) GetSmartAccountConfiguration added in v1.0.8

* GetSmartAccountConfiguration Returns a smart account configuration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetSmartAccountConfigurationRequest

func (*LicensingConfigurationsApiService) GetSmartAccountConfigurationExecute added in v1.0.8

* Execute executes the request * @return SmartAccountConfiguration

func (*LicensingConfigurationsApiService) UpdateSmartAccountConfiguration added in v1.0.8

* UpdateSmartAccountConfiguration Updates a smart account configuration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiUpdateSmartAccountConfigurationRequest

func (*LicensingConfigurationsApiService) UpdateSmartAccountConfigurationExecute added in v1.0.8

* Execute executes the request * @return SmartAccountConfiguration

type LicensingLicensesApiService added in v1.0.8

type LicensingLicensesApiService service

LicensingLicensesApiService LicensingLicensesApi service

func (*LicensingLicensesApiService) GetLicensesList added in v1.0.8

* GetLicensesList Returns a filtered list of licenses. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetLicensesListRequest

func (*LicensingLicensesApiService) GetLicensesListExecute added in v1.0.8

* Execute executes the request * @return []LicenseSummary

type ManageChangeRequestPending added in v1.0.8

type ManageChangeRequestPending struct {
	ChangeRequestId      *string `json:"changeRequestId,omitempty"`
	ChangeRequestUrl     *string `json:"changeRequestUrl,omitempty"`
	AdditionalProperties map[string]interface{}
}

ManageChangeRequestPending struct for ManageChangeRequestPending

func NewManageChangeRequestPending added in v1.0.8

func NewManageChangeRequestPending() *ManageChangeRequestPending

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

func NewManageChangeRequestPendingWithDefaults added in v1.0.8

func NewManageChangeRequestPendingWithDefaults() *ManageChangeRequestPending

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

func (*ManageChangeRequestPending) GetChangeRequestId added in v1.0.8

func (o *ManageChangeRequestPending) GetChangeRequestId() string

GetChangeRequestId returns the ChangeRequestId field value if set, zero value otherwise.

func (*ManageChangeRequestPending) GetChangeRequestIdOk added in v1.0.8

func (o *ManageChangeRequestPending) GetChangeRequestIdOk() (*string, bool)

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

func (*ManageChangeRequestPending) GetChangeRequestUrl added in v1.0.8

func (o *ManageChangeRequestPending) GetChangeRequestUrl() string

GetChangeRequestUrl returns the ChangeRequestUrl field value if set, zero value otherwise.

func (*ManageChangeRequestPending) GetChangeRequestUrlOk added in v1.0.8

func (o *ManageChangeRequestPending) GetChangeRequestUrlOk() (*string, bool)

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

func (*ManageChangeRequestPending) HasChangeRequestId added in v1.0.8

func (o *ManageChangeRequestPending) HasChangeRequestId() bool

HasChangeRequestId returns a boolean if a field has been set.

func (*ManageChangeRequestPending) HasChangeRequestUrl added in v1.0.8

func (o *ManageChangeRequestPending) HasChangeRequestUrl() bool

HasChangeRequestUrl returns a boolean if a field has been set.

func (ManageChangeRequestPending) MarshalJSON added in v1.0.8

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

func (*ManageChangeRequestPending) SetChangeRequestId added in v1.0.8

func (o *ManageChangeRequestPending) SetChangeRequestId(v string)

SetChangeRequestId gets a reference to the given string and assigns it to the ChangeRequestId field.

func (*ManageChangeRequestPending) SetChangeRequestUrl added in v1.0.8

func (o *ManageChangeRequestPending) SetChangeRequestUrl(v string)

SetChangeRequestUrl gets a reference to the given string and assigns it to the ChangeRequestUrl field.

func (*ManageChangeRequestPending) UnmarshalJSON added in v1.0.8

func (o *ManageChangeRequestPending) UnmarshalJSON(bytes []byte) (err error)

type NSOConfigDataXPath

type NSOConfigDataXPath struct {
	ServiceInstanceXPath   string    `json:"serviceInstanceXPath"`
	ServiceType            *string   `json:"serviceType,omitempty"`
	PossibleXPathLocations *[]string `json:"possibleXPathLocations,omitempty"`
	AdditionalProperties   map[string]interface{}
}

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.

func (*NSOConfigDataXPath) UnmarshalJSON added in v1.0.5

func (o *NSOConfigDataXPath) UnmarshalJSON(bytes []byte) (err error)

type NameValue

type NameValue struct {
	Name                 *string `json:"name,omitempty"`
	Value                *string `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*NameValue) UnmarshalJSON added in v1.0.5

func (o *NameValue) UnmarshalJSON(bytes []byte) (err error)

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 NullableBillingCostsReport added in v1.0.8

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

func NewNullableBillingCostsReport added in v1.0.8

func NewNullableBillingCostsReport(val *BillingCostsReport) *NullableBillingCostsReport

func (NullableBillingCostsReport) Get added in v1.0.8

func (NullableBillingCostsReport) IsSet added in v1.0.8

func (v NullableBillingCostsReport) IsSet() bool

func (NullableBillingCostsReport) MarshalJSON added in v1.0.8

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

func (*NullableBillingCostsReport) Set added in v1.0.8

func (*NullableBillingCostsReport) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCostsReport) Unset added in v1.0.8

func (v *NullableBillingCostsReport) Unset()

type NullableBillingCycle added in v1.0.8

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

func NewNullableBillingCycle added in v1.0.8

func NewNullableBillingCycle(val *BillingCycle) *NullableBillingCycle

func (NullableBillingCycle) Get added in v1.0.8

func (NullableBillingCycle) IsSet added in v1.0.8

func (v NullableBillingCycle) IsSet() bool

func (NullableBillingCycle) MarshalJSON added in v1.0.8

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

func (*NullableBillingCycle) Set added in v1.0.8

func (v *NullableBillingCycle) Set(val *BillingCycle)

func (*NullableBillingCycle) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCycle) Unset added in v1.0.8

func (v *NullableBillingCycle) Unset()

type NullableBillingCycleAllOf added in v1.0.8

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

func NewNullableBillingCycleAllOf added in v1.0.8

func NewNullableBillingCycleAllOf(val *BillingCycleAllOf) *NullableBillingCycleAllOf

func (NullableBillingCycleAllOf) Get added in v1.0.8

func (NullableBillingCycleAllOf) IsSet added in v1.0.8

func (v NullableBillingCycleAllOf) IsSet() bool

func (NullableBillingCycleAllOf) MarshalJSON added in v1.0.8

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

func (*NullableBillingCycleAllOf) Set added in v1.0.8

func (*NullableBillingCycleAllOf) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCycleAllOf) Unset added in v1.0.8

func (v *NullableBillingCycleAllOf) Unset()

type NullableBillingCycleCreate added in v1.0.8

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

func NewNullableBillingCycleCreate added in v1.0.8

func NewNullableBillingCycleCreate(val *BillingCycleCreate) *NullableBillingCycleCreate

func (NullableBillingCycleCreate) Get added in v1.0.8

func (NullableBillingCycleCreate) IsSet added in v1.0.8

func (v NullableBillingCycleCreate) IsSet() bool

func (NullableBillingCycleCreate) MarshalJSON added in v1.0.8

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

func (*NullableBillingCycleCreate) Set added in v1.0.8

func (*NullableBillingCycleCreate) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCycleCreate) Unset added in v1.0.8

func (v *NullableBillingCycleCreate) Unset()

type NullableBillingCycleProcess added in v1.0.8

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

func NewNullableBillingCycleProcess added in v1.0.8

func NewNullableBillingCycleProcess(val *BillingCycleProcess) *NullableBillingCycleProcess

func (NullableBillingCycleProcess) Get added in v1.0.8

func (NullableBillingCycleProcess) IsSet added in v1.0.8

func (NullableBillingCycleProcess) MarshalJSON added in v1.0.8

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

func (*NullableBillingCycleProcess) Set added in v1.0.8

func (*NullableBillingCycleProcess) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCycleProcess) Unset added in v1.0.8

func (v *NullableBillingCycleProcess) Unset()

type NullableBillingCycleProcessAccepted added in v1.0.8

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

func NewNullableBillingCycleProcessAccepted added in v1.0.8

func NewNullableBillingCycleProcessAccepted(val *BillingCycleProcessAccepted) *NullableBillingCycleProcessAccepted

func (NullableBillingCycleProcessAccepted) Get added in v1.0.8

func (NullableBillingCycleProcessAccepted) IsSet added in v1.0.8

func (NullableBillingCycleProcessAccepted) MarshalJSON added in v1.0.8

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

func (*NullableBillingCycleProcessAccepted) Set added in v1.0.8

func (*NullableBillingCycleProcessAccepted) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCycleProcessAccepted) Unset added in v1.0.8

type NullableBillingCycleUpdate added in v1.0.8

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

func NewNullableBillingCycleUpdate added in v1.0.8

func NewNullableBillingCycleUpdate(val *BillingCycleUpdate) *NullableBillingCycleUpdate

func (NullableBillingCycleUpdate) Get added in v1.0.8

func (NullableBillingCycleUpdate) IsSet added in v1.0.8

func (v NullableBillingCycleUpdate) IsSet() bool

func (NullableBillingCycleUpdate) MarshalJSON added in v1.0.8

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

func (*NullableBillingCycleUpdate) Set added in v1.0.8

func (*NullableBillingCycleUpdate) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCycleUpdate) Unset added in v1.0.8

func (v *NullableBillingCycleUpdate) Unset()

type NullableBillingCyclesPage added in v1.0.8

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

func NewNullableBillingCyclesPage added in v1.0.8

func NewNullableBillingCyclesPage(val *BillingCyclesPage) *NullableBillingCyclesPage

func (NullableBillingCyclesPage) Get added in v1.0.8

func (NullableBillingCyclesPage) IsSet added in v1.0.8

func (v NullableBillingCyclesPage) IsSet() bool

func (NullableBillingCyclesPage) MarshalJSON added in v1.0.8

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

func (*NullableBillingCyclesPage) Set added in v1.0.8

func (*NullableBillingCyclesPage) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCyclesPage) Unset added in v1.0.8

func (v *NullableBillingCyclesPage) Unset()

type NullableBillingCyclesPageAllOf added in v1.0.8

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

func NewNullableBillingCyclesPageAllOf added in v1.0.8

func NewNullableBillingCyclesPageAllOf(val *BillingCyclesPageAllOf) *NullableBillingCyclesPageAllOf

func (NullableBillingCyclesPageAllOf) Get added in v1.0.8

func (NullableBillingCyclesPageAllOf) IsSet added in v1.0.8

func (NullableBillingCyclesPageAllOf) MarshalJSON added in v1.0.8

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

func (*NullableBillingCyclesPageAllOf) Set added in v1.0.8

func (*NullableBillingCyclesPageAllOf) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingCyclesPageAllOf) Unset added in v1.0.8

func (v *NullableBillingCyclesPageAllOf) Unset()

type NullableBillingEvent added in v1.0.8

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

func NewNullableBillingEvent added in v1.0.8

func NewNullableBillingEvent(val *BillingEvent) *NullableBillingEvent

func (NullableBillingEvent) Get added in v1.0.8

func (NullableBillingEvent) IsSet added in v1.0.8

func (v NullableBillingEvent) IsSet() bool

func (NullableBillingEvent) MarshalJSON added in v1.0.8

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

func (*NullableBillingEvent) Set added in v1.0.8

func (v *NullableBillingEvent) Set(val *BillingEvent)

func (*NullableBillingEvent) UnmarshalJSON added in v1.0.8

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

func (*NullableBillingEvent) Unset added in v1.0.8

func (v *NullableBillingEvent) Unset()

type NullableBillingEventAllOf added in v1.0.8

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

func NewNullableBillingEventAllOf added in v1.0.8

func NewNullableBillingEventAllOf(val *BillingEventAllOf) *NullableBillingEventAllOf

func (NullableBillingEventAllOf) Get added in v1.0.8

func (NullableBillingEventAllOf) IsSet added in v1.0.8

func (v NullableBillingEventAllOf) IsSet() bool

func (NullableBillingEventAllOf) MarshalJSON added in v1.0.8

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

func (*NullableBillingEventAllOf) Set added in v1.0.8

func (*NullableBillingEventAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableBillingEventAllOf) UnmarshalJSON(src []byte) error

func (*NullableBillingEventAllOf) Unset added in v1.0.8

func (v *NullableBillingEventAllOf) Unset()

type NullableBillingEventCreate added in v1.0.8

type NullableBillingEventCreate struct {
	// contains filtered or unexported fields
}

func NewNullableBillingEventCreate added in v1.0.8

func NewNullableBillingEventCreate(val *BillingEventCreate) *NullableBillingEventCreate

func (NullableBillingEventCreate) Get added in v1.0.8

func (NullableBillingEventCreate) IsSet added in v1.0.8

func (v NullableBillingEventCreate) IsSet() bool

func (NullableBillingEventCreate) MarshalJSON added in v1.0.8

func (v NullableBillingEventCreate) MarshalJSON() ([]byte, error)

func (*NullableBillingEventCreate) Set added in v1.0.8

func (*NullableBillingEventCreate) UnmarshalJSON added in v1.0.8

func (v *NullableBillingEventCreate) UnmarshalJSON(src []byte) error

func (*NullableBillingEventCreate) Unset added in v1.0.8

func (v *NullableBillingEventCreate) Unset()

type NullableBillingEventUpdate added in v1.0.8

type NullableBillingEventUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableBillingEventUpdate added in v1.0.8

func NewNullableBillingEventUpdate(val *BillingEventUpdate) *NullableBillingEventUpdate

func (NullableBillingEventUpdate) Get added in v1.0.8

func (NullableBillingEventUpdate) IsSet added in v1.0.8

func (v NullableBillingEventUpdate) IsSet() bool

func (NullableBillingEventUpdate) MarshalJSON added in v1.0.8

func (v NullableBillingEventUpdate) MarshalJSON() ([]byte, error)

func (*NullableBillingEventUpdate) Set added in v1.0.8

func (*NullableBillingEventUpdate) UnmarshalJSON added in v1.0.8

func (v *NullableBillingEventUpdate) UnmarshalJSON(src []byte) error

func (*NullableBillingEventUpdate) Unset added in v1.0.8

func (v *NullableBillingEventUpdate) Unset()

type NullableBillingEventsPage added in v1.0.8

type NullableBillingEventsPage struct {
	// contains filtered or unexported fields
}

func NewNullableBillingEventsPage added in v1.0.8

func NewNullableBillingEventsPage(val *BillingEventsPage) *NullableBillingEventsPage

func (NullableBillingEventsPage) Get added in v1.0.8

func (NullableBillingEventsPage) IsSet added in v1.0.8

func (v NullableBillingEventsPage) IsSet() bool

func (NullableBillingEventsPage) MarshalJSON added in v1.0.8

func (v NullableBillingEventsPage) MarshalJSON() ([]byte, error)

func (*NullableBillingEventsPage) Set added in v1.0.8

func (*NullableBillingEventsPage) UnmarshalJSON added in v1.0.8

func (v *NullableBillingEventsPage) UnmarshalJSON(src []byte) error

func (*NullableBillingEventsPage) Unset added in v1.0.8

func (v *NullableBillingEventsPage) Unset()

type NullableBillingEventsPageAllOf added in v1.0.8

type NullableBillingEventsPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBillingEventsPageAllOf added in v1.0.8

func NewNullableBillingEventsPageAllOf(val *BillingEventsPageAllOf) *NullableBillingEventsPageAllOf

func (NullableBillingEventsPageAllOf) Get added in v1.0.8

func (NullableBillingEventsPageAllOf) IsSet added in v1.0.8

func (NullableBillingEventsPageAllOf) MarshalJSON added in v1.0.8

func (v NullableBillingEventsPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableBillingEventsPageAllOf) Set added in v1.0.8

func (*NullableBillingEventsPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableBillingEventsPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableBillingEventsPageAllOf) Unset added in v1.0.8

func (v *NullableBillingEventsPageAllOf) Unset()

type NullableBillingPrice added in v1.0.8

type NullableBillingPrice struct {
	// contains filtered or unexported fields
}

func NewNullableBillingPrice added in v1.0.8

func NewNullableBillingPrice(val *BillingPrice) *NullableBillingPrice

func (NullableBillingPrice) Get added in v1.0.8

func (NullableBillingPrice) IsSet added in v1.0.8

func (v NullableBillingPrice) IsSet() bool

func (NullableBillingPrice) MarshalJSON added in v1.0.8

func (v NullableBillingPrice) MarshalJSON() ([]byte, error)

func (*NullableBillingPrice) Set added in v1.0.8

func (v *NullableBillingPrice) Set(val *BillingPrice)

func (*NullableBillingPrice) UnmarshalJSON added in v1.0.8

func (v *NullableBillingPrice) UnmarshalJSON(src []byte) error

func (*NullableBillingPrice) Unset added in v1.0.8

func (v *NullableBillingPrice) Unset()

type NullableBillingPriceAllOf added in v1.0.8

type NullableBillingPriceAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBillingPriceAllOf added in v1.0.8

func NewNullableBillingPriceAllOf(val *BillingPriceAllOf) *NullableBillingPriceAllOf

func (NullableBillingPriceAllOf) Get added in v1.0.8

func (NullableBillingPriceAllOf) IsSet added in v1.0.8

func (v NullableBillingPriceAllOf) IsSet() bool

func (NullableBillingPriceAllOf) MarshalJSON added in v1.0.8

func (v NullableBillingPriceAllOf) MarshalJSON() ([]byte, error)

func (*NullableBillingPriceAllOf) Set added in v1.0.8

func (*NullableBillingPriceAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableBillingPriceAllOf) UnmarshalJSON(src []byte) error

func (*NullableBillingPriceAllOf) Unset added in v1.0.8

func (v *NullableBillingPriceAllOf) Unset()

type NullableBillingPriceCreate added in v1.0.8

type NullableBillingPriceCreate struct {
	// contains filtered or unexported fields
}

func NewNullableBillingPriceCreate added in v1.0.8

func NewNullableBillingPriceCreate(val *BillingPriceCreate) *NullableBillingPriceCreate

func (NullableBillingPriceCreate) Get added in v1.0.8

func (NullableBillingPriceCreate) IsSet added in v1.0.8

func (v NullableBillingPriceCreate) IsSet() bool

func (NullableBillingPriceCreate) MarshalJSON added in v1.0.8

func (v NullableBillingPriceCreate) MarshalJSON() ([]byte, error)

func (*NullableBillingPriceCreate) Set added in v1.0.8

func (*NullableBillingPriceCreate) UnmarshalJSON added in v1.0.8

func (v *NullableBillingPriceCreate) UnmarshalJSON(src []byte) error

func (*NullableBillingPriceCreate) Unset added in v1.0.8

func (v *NullableBillingPriceCreate) Unset()

type NullableBillingPriceUpdate added in v1.0.8

type NullableBillingPriceUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableBillingPriceUpdate added in v1.0.8

func NewNullableBillingPriceUpdate(val *BillingPriceUpdate) *NullableBillingPriceUpdate

func (NullableBillingPriceUpdate) Get added in v1.0.8

func (NullableBillingPriceUpdate) IsSet added in v1.0.8

func (v NullableBillingPriceUpdate) IsSet() bool

func (NullableBillingPriceUpdate) MarshalJSON added in v1.0.8

func (v NullableBillingPriceUpdate) MarshalJSON() ([]byte, error)

func (*NullableBillingPriceUpdate) Set added in v1.0.8

func (*NullableBillingPriceUpdate) UnmarshalJSON added in v1.0.8

func (v *NullableBillingPriceUpdate) UnmarshalJSON(src []byte) error

func (*NullableBillingPriceUpdate) Unset added in v1.0.8

func (v *NullableBillingPriceUpdate) Unset()

type NullableBillingPricesPage added in v1.0.8

type NullableBillingPricesPage struct {
	// contains filtered or unexported fields
}

func NewNullableBillingPricesPage added in v1.0.8

func NewNullableBillingPricesPage(val *BillingPricesPage) *NullableBillingPricesPage

func (NullableBillingPricesPage) Get added in v1.0.8

func (NullableBillingPricesPage) IsSet added in v1.0.8

func (v NullableBillingPricesPage) IsSet() bool

func (NullableBillingPricesPage) MarshalJSON added in v1.0.8

func (v NullableBillingPricesPage) MarshalJSON() ([]byte, error)

func (*NullableBillingPricesPage) Set added in v1.0.8

func (*NullableBillingPricesPage) UnmarshalJSON added in v1.0.8

func (v *NullableBillingPricesPage) UnmarshalJSON(src []byte) error

func (*NullableBillingPricesPage) Unset added in v1.0.8

func (v *NullableBillingPricesPage) Unset()

type NullableBillingPricesPageAllOf added in v1.0.8

type NullableBillingPricesPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBillingPricesPageAllOf added in v1.0.8

func NewNullableBillingPricesPageAllOf(val *BillingPricesPageAllOf) *NullableBillingPricesPageAllOf

func (NullableBillingPricesPageAllOf) Get added in v1.0.8

func (NullableBillingPricesPageAllOf) IsSet added in v1.0.8

func (NullableBillingPricesPageAllOf) MarshalJSON added in v1.0.8

func (v NullableBillingPricesPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableBillingPricesPageAllOf) Set added in v1.0.8

func (*NullableBillingPricesPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableBillingPricesPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableBillingPricesPageAllOf) Unset added in v1.0.8

func (v *NullableBillingPricesPageAllOf) 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 NullableChangeRequest added in v1.0.8

type NullableChangeRequest struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequest added in v1.0.8

func NewNullableChangeRequest(val *ChangeRequest) *NullableChangeRequest

func (NullableChangeRequest) Get added in v1.0.8

func (NullableChangeRequest) IsSet added in v1.0.8

func (v NullableChangeRequest) IsSet() bool

func (NullableChangeRequest) MarshalJSON added in v1.0.8

func (v NullableChangeRequest) MarshalJSON() ([]byte, error)

func (*NullableChangeRequest) Set added in v1.0.8

func (v *NullableChangeRequest) Set(val *ChangeRequest)

func (*NullableChangeRequest) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequest) UnmarshalJSON(src []byte) error

func (*NullableChangeRequest) Unset added in v1.0.8

func (v *NullableChangeRequest) Unset()

type NullableChangeRequestAllOf added in v1.0.8

type NullableChangeRequestAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequestAllOf added in v1.0.8

func NewNullableChangeRequestAllOf(val *ChangeRequestAllOf) *NullableChangeRequestAllOf

func (NullableChangeRequestAllOf) Get added in v1.0.8

func (NullableChangeRequestAllOf) IsSet added in v1.0.8

func (v NullableChangeRequestAllOf) IsSet() bool

func (NullableChangeRequestAllOf) MarshalJSON added in v1.0.8

func (v NullableChangeRequestAllOf) MarshalJSON() ([]byte, error)

func (*NullableChangeRequestAllOf) Set added in v1.0.8

func (*NullableChangeRequestAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequestAllOf) UnmarshalJSON(src []byte) error

func (*NullableChangeRequestAllOf) Unset added in v1.0.8

func (v *NullableChangeRequestAllOf) Unset()

type NullableChangeRequestCreate added in v1.0.8

type NullableChangeRequestCreate struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequestCreate added in v1.0.8

func NewNullableChangeRequestCreate(val *ChangeRequestCreate) *NullableChangeRequestCreate

func (NullableChangeRequestCreate) Get added in v1.0.8

func (NullableChangeRequestCreate) IsSet added in v1.0.8

func (NullableChangeRequestCreate) MarshalJSON added in v1.0.8

func (v NullableChangeRequestCreate) MarshalJSON() ([]byte, error)

func (*NullableChangeRequestCreate) Set added in v1.0.8

func (*NullableChangeRequestCreate) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequestCreate) UnmarshalJSON(src []byte) error

func (*NullableChangeRequestCreate) Unset added in v1.0.8

func (v *NullableChangeRequestCreate) Unset()

type NullableChangeRequestSummary added in v1.0.8

type NullableChangeRequestSummary struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequestSummary added in v1.0.8

func NewNullableChangeRequestSummary(val *ChangeRequestSummary) *NullableChangeRequestSummary

func (NullableChangeRequestSummary) Get added in v1.0.8

func (NullableChangeRequestSummary) IsSet added in v1.0.8

func (NullableChangeRequestSummary) MarshalJSON added in v1.0.8

func (v NullableChangeRequestSummary) MarshalJSON() ([]byte, error)

func (*NullableChangeRequestSummary) Set added in v1.0.8

func (*NullableChangeRequestSummary) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequestSummary) UnmarshalJSON(src []byte) error

func (*NullableChangeRequestSummary) Unset added in v1.0.8

func (v *NullableChangeRequestSummary) Unset()

type NullableChangeRequestUpdate added in v1.0.8

type NullableChangeRequestUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequestUpdate added in v1.0.8

func NewNullableChangeRequestUpdate(val *ChangeRequestUpdate) *NullableChangeRequestUpdate

func (NullableChangeRequestUpdate) Get added in v1.0.8

func (NullableChangeRequestUpdate) IsSet added in v1.0.8

func (NullableChangeRequestUpdate) MarshalJSON added in v1.0.8

func (v NullableChangeRequestUpdate) MarshalJSON() ([]byte, error)

func (*NullableChangeRequestUpdate) Set added in v1.0.8

func (*NullableChangeRequestUpdate) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequestUpdate) UnmarshalJSON(src []byte) error

func (*NullableChangeRequestUpdate) Unset added in v1.0.8

func (v *NullableChangeRequestUpdate) Unset()

type NullableChangeRequestsPage added in v1.0.8

type NullableChangeRequestsPage struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequestsPage added in v1.0.8

func NewNullableChangeRequestsPage(val *ChangeRequestsPage) *NullableChangeRequestsPage

func (NullableChangeRequestsPage) Get added in v1.0.8

func (NullableChangeRequestsPage) IsSet added in v1.0.8

func (v NullableChangeRequestsPage) IsSet() bool

func (NullableChangeRequestsPage) MarshalJSON added in v1.0.8

func (v NullableChangeRequestsPage) MarshalJSON() ([]byte, error)

func (*NullableChangeRequestsPage) Set added in v1.0.8

func (*NullableChangeRequestsPage) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequestsPage) UnmarshalJSON(src []byte) error

func (*NullableChangeRequestsPage) Unset added in v1.0.8

func (v *NullableChangeRequestsPage) Unset()

type NullableChangeRequestsPageAllOf added in v1.0.8

type NullableChangeRequestsPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableChangeRequestsPageAllOf added in v1.0.8

func NewNullableChangeRequestsPageAllOf(val *ChangeRequestsPageAllOf) *NullableChangeRequestsPageAllOf

func (NullableChangeRequestsPageAllOf) Get added in v1.0.8

func (NullableChangeRequestsPageAllOf) IsSet added in v1.0.8

func (NullableChangeRequestsPageAllOf) MarshalJSON added in v1.0.8

func (v NullableChangeRequestsPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableChangeRequestsPageAllOf) Set added in v1.0.8

func (*NullableChangeRequestsPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableChangeRequestsPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableChangeRequestsPageAllOf) Unset added in v1.0.8

type NullableCostSummary added in v1.0.8

type NullableCostSummary struct {
	// contains filtered or unexported fields
}

func NewNullableCostSummary added in v1.0.8

func NewNullableCostSummary(val *CostSummary) *NullableCostSummary

func (NullableCostSummary) Get added in v1.0.8

func (NullableCostSummary) IsSet added in v1.0.8

func (v NullableCostSummary) IsSet() bool

func (NullableCostSummary) MarshalJSON added in v1.0.8

func (v NullableCostSummary) MarshalJSON() ([]byte, error)

func (*NullableCostSummary) Set added in v1.0.8

func (v *NullableCostSummary) Set(val *CostSummary)

func (*NullableCostSummary) UnmarshalJSON added in v1.0.8

func (v *NullableCostSummary) UnmarshalJSON(src []byte) error

func (*NullableCostSummary) Unset added in v1.0.8

func (v *NullableCostSummary) 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 NullableDeviceComplianceState added in v1.0.5

type NullableDeviceComplianceState struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceComplianceState added in v1.0.5

func NewNullableDeviceComplianceState(val *DeviceComplianceState) *NullableDeviceComplianceState

func (NullableDeviceComplianceState) Get added in v1.0.5

func (NullableDeviceComplianceState) IsSet added in v1.0.5

func (NullableDeviceComplianceState) MarshalJSON added in v1.0.5

func (v NullableDeviceComplianceState) MarshalJSON() ([]byte, error)

func (*NullableDeviceComplianceState) Set added in v1.0.5

func (*NullableDeviceComplianceState) UnmarshalJSON added in v1.0.5

func (v *NullableDeviceComplianceState) UnmarshalJSON(src []byte) error

func (*NullableDeviceComplianceState) Unset added in v1.0.5

func (v *NullableDeviceComplianceState) 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 NullableDevicePatch added in v1.0.5

type NullableDevicePatch struct {
	// contains filtered or unexported fields
}

func NewNullableDevicePatch added in v1.0.5

func NewNullableDevicePatch(val *DevicePatch) *NullableDevicePatch

func (NullableDevicePatch) Get added in v1.0.5

func (NullableDevicePatch) IsSet added in v1.0.5

func (v NullableDevicePatch) IsSet() bool

func (NullableDevicePatch) MarshalJSON added in v1.0.5

func (v NullableDevicePatch) MarshalJSON() ([]byte, error)

func (*NullableDevicePatch) Set added in v1.0.5

func (v *NullableDevicePatch) Set(val *DevicePatch)

func (*NullableDevicePatch) UnmarshalJSON added in v1.0.5

func (v *NullableDevicePatch) UnmarshalJSON(src []byte) error

func (*NullableDevicePatch) Unset added in v1.0.5

func (v *NullableDevicePatch) 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 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 NullableDeviceTemplateBatchAttachRequest added in v1.0.8

type NullableDeviceTemplateBatchAttachRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceTemplateBatchAttachRequest added in v1.0.8

func NewNullableDeviceTemplateBatchAttachRequest(val *DeviceTemplateBatchAttachRequest) *NullableDeviceTemplateBatchAttachRequest

func (NullableDeviceTemplateBatchAttachRequest) Get added in v1.0.8

func (NullableDeviceTemplateBatchAttachRequest) IsSet added in v1.0.8

func (NullableDeviceTemplateBatchAttachRequest) MarshalJSON added in v1.0.8

func (*NullableDeviceTemplateBatchAttachRequest) Set added in v1.0.8

func (*NullableDeviceTemplateBatchAttachRequest) UnmarshalJSON added in v1.0.8

func (v *NullableDeviceTemplateBatchAttachRequest) UnmarshalJSON(src []byte) error

func (*NullableDeviceTemplateBatchAttachRequest) Unset added in v1.0.8

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 NullableDeviceTemplateHistorySummary added in v1.0.8

type NullableDeviceTemplateHistorySummary struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceTemplateHistorySummary added in v1.0.8

func NewNullableDeviceTemplateHistorySummary(val *DeviceTemplateHistorySummary) *NullableDeviceTemplateHistorySummary

func (NullableDeviceTemplateHistorySummary) Get added in v1.0.8

func (NullableDeviceTemplateHistorySummary) IsSet added in v1.0.8

func (NullableDeviceTemplateHistorySummary) MarshalJSON added in v1.0.8

func (v NullableDeviceTemplateHistorySummary) MarshalJSON() ([]byte, error)

func (*NullableDeviceTemplateHistorySummary) Set added in v1.0.8

func (*NullableDeviceTemplateHistorySummary) UnmarshalJSON added in v1.0.8

func (v *NullableDeviceTemplateHistorySummary) UnmarshalJSON(src []byte) error

func (*NullableDeviceTemplateHistorySummary) Unset added in v1.0.8

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 NullableDeviceTemplateVersionCreate added in v1.0.5

type NullableDeviceTemplateVersionCreate struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceTemplateVersionCreate added in v1.0.5

func NewNullableDeviceTemplateVersionCreate(val *DeviceTemplateVersionCreate) *NullableDeviceTemplateVersionCreate

func (NullableDeviceTemplateVersionCreate) Get added in v1.0.5

func (NullableDeviceTemplateVersionCreate) IsSet added in v1.0.5

func (NullableDeviceTemplateVersionCreate) MarshalJSON added in v1.0.5

func (v NullableDeviceTemplateVersionCreate) MarshalJSON() ([]byte, error)

func (*NullableDeviceTemplateVersionCreate) Set added in v1.0.5

func (*NullableDeviceTemplateVersionCreate) UnmarshalJSON added in v1.0.5

func (v *NullableDeviceTemplateVersionCreate) UnmarshalJSON(src []byte) error

func (*NullableDeviceTemplateVersionCreate) Unset added in v1.0.5

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 NullableDeviceUpdateAllOf added in v1.0.5

type NullableDeviceUpdateAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceUpdateAllOf added in v1.0.5

func NewNullableDeviceUpdateAllOf(val *DeviceUpdateAllOf) *NullableDeviceUpdateAllOf

func (NullableDeviceUpdateAllOf) Get added in v1.0.5

func (NullableDeviceUpdateAllOf) IsSet added in v1.0.5

func (v NullableDeviceUpdateAllOf) IsSet() bool

func (NullableDeviceUpdateAllOf) MarshalJSON added in v1.0.5

func (v NullableDeviceUpdateAllOf) MarshalJSON() ([]byte, error)

func (*NullableDeviceUpdateAllOf) Set added in v1.0.5

func (*NullableDeviceUpdateAllOf) UnmarshalJSON added in v1.0.5

func (v *NullableDeviceUpdateAllOf) UnmarshalJSON(src []byte) error

func (*NullableDeviceUpdateAllOf) Unset added in v1.0.5

func (v *NullableDeviceUpdateAllOf) Unset()

type NullableDeviceVulnerabilityState added in v1.0.5

type NullableDeviceVulnerabilityState struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceVulnerabilityState added in v1.0.5

func NewNullableDeviceVulnerabilityState(val *DeviceVulnerabilityState) *NullableDeviceVulnerabilityState

func (NullableDeviceVulnerabilityState) Get added in v1.0.5

func (NullableDeviceVulnerabilityState) IsSet added in v1.0.5

func (NullableDeviceVulnerabilityState) MarshalJSON added in v1.0.5

func (v NullableDeviceVulnerabilityState) MarshalJSON() ([]byte, error)

func (*NullableDeviceVulnerabilityState) Set added in v1.0.5

func (*NullableDeviceVulnerabilityState) UnmarshalJSON added in v1.0.5

func (v *NullableDeviceVulnerabilityState) UnmarshalJSON(src []byte) error

func (*NullableDeviceVulnerabilityState) Unset added in v1.0.5

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 NullableGenericEvent added in v1.0.5

type NullableGenericEvent struct {
	// contains filtered or unexported fields
}

func NewNullableGenericEvent added in v1.0.5

func NewNullableGenericEvent(val *GenericEvent) *NullableGenericEvent

func (NullableGenericEvent) Get added in v1.0.5

func (NullableGenericEvent) IsSet added in v1.0.5

func (v NullableGenericEvent) IsSet() bool

func (NullableGenericEvent) MarshalJSON added in v1.0.5

func (v NullableGenericEvent) MarshalJSON() ([]byte, error)

func (*NullableGenericEvent) Set added in v1.0.5

func (v *NullableGenericEvent) Set(val *GenericEvent)

func (*NullableGenericEvent) UnmarshalJSON added in v1.0.5

func (v *NullableGenericEvent) UnmarshalJSON(src []byte) error

func (*NullableGenericEvent) Unset added in v1.0.5

func (v *NullableGenericEvent) Unset()

type NullableGenericEventAllOf added in v1.0.5

type NullableGenericEventAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableGenericEventAllOf added in v1.0.5

func NewNullableGenericEventAllOf(val *GenericEventAllOf) *NullableGenericEventAllOf

func (NullableGenericEventAllOf) Get added in v1.0.5

func (NullableGenericEventAllOf) IsSet added in v1.0.5

func (v NullableGenericEventAllOf) IsSet() bool

func (NullableGenericEventAllOf) MarshalJSON added in v1.0.5

func (v NullableGenericEventAllOf) MarshalJSON() ([]byte, error)

func (*NullableGenericEventAllOf) Set added in v1.0.5

func (*NullableGenericEventAllOf) UnmarshalJSON added in v1.0.5

func (v *NullableGenericEventAllOf) UnmarshalJSON(src []byte) error

func (*NullableGenericEventAllOf) Unset added in v1.0.5

func (v *NullableGenericEventAllOf) Unset()

type NullableGenericEventCreate added in v1.0.5

type NullableGenericEventCreate struct {
	// contains filtered or unexported fields
}

func NewNullableGenericEventCreate added in v1.0.5

func NewNullableGenericEventCreate(val *GenericEventCreate) *NullableGenericEventCreate

func (NullableGenericEventCreate) Get added in v1.0.5

func (NullableGenericEventCreate) IsSet added in v1.0.5

func (v NullableGenericEventCreate) IsSet() bool

func (NullableGenericEventCreate) MarshalJSON added in v1.0.5

func (v NullableGenericEventCreate) MarshalJSON() ([]byte, error)

func (*NullableGenericEventCreate) Set added in v1.0.5

func (*NullableGenericEventCreate) UnmarshalJSON added in v1.0.5

func (v *NullableGenericEventCreate) UnmarshalJSON(src []byte) error

func (*NullableGenericEventCreate) Unset added in v1.0.5

func (v *NullableGenericEventCreate) Unset()

type NullableGenericEventSecurity added in v1.0.5

type NullableGenericEventSecurity struct {
	// contains filtered or unexported fields
}

func NewNullableGenericEventSecurity added in v1.0.5

func NewNullableGenericEventSecurity(val *GenericEventSecurity) *NullableGenericEventSecurity

func (NullableGenericEventSecurity) Get added in v1.0.5

func (NullableGenericEventSecurity) IsSet added in v1.0.5

func (NullableGenericEventSecurity) MarshalJSON added in v1.0.5

func (v NullableGenericEventSecurity) MarshalJSON() ([]byte, error)

func (*NullableGenericEventSecurity) Set added in v1.0.5

func (*NullableGenericEventSecurity) UnmarshalJSON added in v1.0.5

func (v *NullableGenericEventSecurity) UnmarshalJSON(src []byte) error

func (*NullableGenericEventSecurity) Unset added in v1.0.5

func (v *NullableGenericEventSecurity) Unset()

type NullableGenericEventSeverity added in v1.0.5

type NullableGenericEventSeverity struct {
	// contains filtered or unexported fields
}

func NewNullableGenericEventSeverity added in v1.0.5

func NewNullableGenericEventSeverity(val *GenericEventSeverity) *NullableGenericEventSeverity

func (NullableGenericEventSeverity) Get added in v1.0.5

func (NullableGenericEventSeverity) IsSet added in v1.0.5

func (NullableGenericEventSeverity) MarshalJSON added in v1.0.5

func (v NullableGenericEventSeverity) MarshalJSON() ([]byte, error)

func (*NullableGenericEventSeverity) Set added in v1.0.5

func (*NullableGenericEventSeverity) UnmarshalJSON added in v1.0.5

func (v *NullableGenericEventSeverity) UnmarshalJSON(src []byte) error

func (*NullableGenericEventSeverity) Unset added in v1.0.5

func (v *NullableGenericEventSeverity) Unset()

type NullableGenericEventTrace added in v1.0.5

type NullableGenericEventTrace struct {
	// contains filtered or unexported fields
}

func NewNullableGenericEventTrace added in v1.0.5

func NewNullableGenericEventTrace(val *GenericEventTrace) *NullableGenericEventTrace

func (NullableGenericEventTrace) Get added in v1.0.5

func (NullableGenericEventTrace) IsSet added in v1.0.5

func (v NullableGenericEventTrace) IsSet() bool

func (NullableGenericEventTrace) MarshalJSON added in v1.0.5

func (v NullableGenericEventTrace) MarshalJSON() ([]byte, error)

func (*NullableGenericEventTrace) Set added in v1.0.5

func (*NullableGenericEventTrace) UnmarshalJSON added in v1.0.5

func (v *NullableGenericEventTrace) UnmarshalJSON(src []byte) error

func (*NullableGenericEventTrace) Unset added in v1.0.5

func (v *NullableGenericEventTrace) Unset()

type NullableIncident added in v1.0.8

type NullableIncident struct {
	// contains filtered or unexported fields
}

func NewNullableIncident added in v1.0.8

func NewNullableIncident(val *Incident) *NullableIncident

func (NullableIncident) Get added in v1.0.8

func (v NullableIncident) Get() *Incident

func (NullableIncident) IsSet added in v1.0.8

func (v NullableIncident) IsSet() bool

func (NullableIncident) MarshalJSON added in v1.0.8

func (v NullableIncident) MarshalJSON() ([]byte, error)

func (*NullableIncident) Set added in v1.0.8

func (v *NullableIncident) Set(val *Incident)

func (*NullableIncident) UnmarshalJSON added in v1.0.8

func (v *NullableIncident) UnmarshalJSON(src []byte) error

func (*NullableIncident) Unset added in v1.0.8

func (v *NullableIncident) Unset()

type NullableIncidentAllOf added in v1.0.8

type NullableIncidentAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentAllOf added in v1.0.8

func NewNullableIncidentAllOf(val *IncidentAllOf) *NullableIncidentAllOf

func (NullableIncidentAllOf) Get added in v1.0.8

func (NullableIncidentAllOf) IsSet added in v1.0.8

func (v NullableIncidentAllOf) IsSet() bool

func (NullableIncidentAllOf) MarshalJSON added in v1.0.8

func (v NullableIncidentAllOf) MarshalJSON() ([]byte, error)

func (*NullableIncidentAllOf) Set added in v1.0.8

func (v *NullableIncidentAllOf) Set(val *IncidentAllOf)

func (*NullableIncidentAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentAllOf) UnmarshalJSON(src []byte) error

func (*NullableIncidentAllOf) Unset added in v1.0.8

func (v *NullableIncidentAllOf) Unset()

type NullableIncidentCancel added in v1.0.8

type NullableIncidentCancel struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentCancel added in v1.0.8

func NewNullableIncidentCancel(val *IncidentCancel) *NullableIncidentCancel

func (NullableIncidentCancel) Get added in v1.0.8

func (NullableIncidentCancel) IsSet added in v1.0.8

func (v NullableIncidentCancel) IsSet() bool

func (NullableIncidentCancel) MarshalJSON added in v1.0.8

func (v NullableIncidentCancel) MarshalJSON() ([]byte, error)

func (*NullableIncidentCancel) Set added in v1.0.8

func (*NullableIncidentCancel) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentCancel) UnmarshalJSON(src []byte) error

func (*NullableIncidentCancel) Unset added in v1.0.8

func (v *NullableIncidentCancel) Unset()

type NullableIncidentConfig added in v1.0.8

type NullableIncidentConfig struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentConfig added in v1.0.8

func NewNullableIncidentConfig(val *IncidentConfig) *NullableIncidentConfig

func (NullableIncidentConfig) Get added in v1.0.8

func (NullableIncidentConfig) IsSet added in v1.0.8

func (v NullableIncidentConfig) IsSet() bool

func (NullableIncidentConfig) MarshalJSON added in v1.0.8

func (v NullableIncidentConfig) MarshalJSON() ([]byte, error)

func (*NullableIncidentConfig) Set added in v1.0.8

func (*NullableIncidentConfig) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentConfig) UnmarshalJSON(src []byte) error

func (*NullableIncidentConfig) Unset added in v1.0.8

func (v *NullableIncidentConfig) Unset()

type NullableIncidentConfigPatch added in v1.0.8

type NullableIncidentConfigPatch struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentConfigPatch added in v1.0.8

func NewNullableIncidentConfigPatch(val *IncidentConfigPatch) *NullableIncidentConfigPatch

func (NullableIncidentConfigPatch) Get added in v1.0.8

func (NullableIncidentConfigPatch) IsSet added in v1.0.8

func (NullableIncidentConfigPatch) MarshalJSON added in v1.0.8

func (v NullableIncidentConfigPatch) MarshalJSON() ([]byte, error)

func (*NullableIncidentConfigPatch) Set added in v1.0.8

func (*NullableIncidentConfigPatch) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentConfigPatch) UnmarshalJSON(src []byte) error

func (*NullableIncidentConfigPatch) Unset added in v1.0.8

func (v *NullableIncidentConfigPatch) Unset()

type NullableIncidentConfigUpdate added in v1.0.8

type NullableIncidentConfigUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentConfigUpdate added in v1.0.8

func NewNullableIncidentConfigUpdate(val *IncidentConfigUpdate) *NullableIncidentConfigUpdate

func (NullableIncidentConfigUpdate) Get added in v1.0.8

func (NullableIncidentConfigUpdate) IsSet added in v1.0.8

func (NullableIncidentConfigUpdate) MarshalJSON added in v1.0.8

func (v NullableIncidentConfigUpdate) MarshalJSON() ([]byte, error)

func (*NullableIncidentConfigUpdate) Set added in v1.0.8

func (*NullableIncidentConfigUpdate) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentConfigUpdate) UnmarshalJSON(src []byte) error

func (*NullableIncidentConfigUpdate) Unset added in v1.0.8

func (v *NullableIncidentConfigUpdate) Unset()

type NullableIncidentCreate added in v1.0.8

type NullableIncidentCreate struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentCreate added in v1.0.8

func NewNullableIncidentCreate(val *IncidentCreate) *NullableIncidentCreate

func (NullableIncidentCreate) Get added in v1.0.8

func (NullableIncidentCreate) IsSet added in v1.0.8

func (v NullableIncidentCreate) IsSet() bool

func (NullableIncidentCreate) MarshalJSON added in v1.0.8

func (v NullableIncidentCreate) MarshalJSON() ([]byte, error)

func (*NullableIncidentCreate) Set added in v1.0.8

func (*NullableIncidentCreate) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentCreate) UnmarshalJSON(src []byte) error

func (*NullableIncidentCreate) Unset added in v1.0.8

func (v *NullableIncidentCreate) Unset()

type NullableIncidentUpdate added in v1.0.8

type NullableIncidentUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentUpdate added in v1.0.8

func NewNullableIncidentUpdate(val *IncidentUpdate) *NullableIncidentUpdate

func (NullableIncidentUpdate) Get added in v1.0.8

func (NullableIncidentUpdate) IsSet added in v1.0.8

func (v NullableIncidentUpdate) IsSet() bool

func (NullableIncidentUpdate) MarshalJSON added in v1.0.8

func (v NullableIncidentUpdate) MarshalJSON() ([]byte, error)

func (*NullableIncidentUpdate) Set added in v1.0.8

func (*NullableIncidentUpdate) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentUpdate) UnmarshalJSON(src []byte) error

func (*NullableIncidentUpdate) Unset added in v1.0.8

func (v *NullableIncidentUpdate) Unset()

type NullableIncidentsPage added in v1.0.8

type NullableIncidentsPage struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentsPage added in v1.0.8

func NewNullableIncidentsPage(val *IncidentsPage) *NullableIncidentsPage

func (NullableIncidentsPage) Get added in v1.0.8

func (NullableIncidentsPage) IsSet added in v1.0.8

func (v NullableIncidentsPage) IsSet() bool

func (NullableIncidentsPage) MarshalJSON added in v1.0.8

func (v NullableIncidentsPage) MarshalJSON() ([]byte, error)

func (*NullableIncidentsPage) Set added in v1.0.8

func (v *NullableIncidentsPage) Set(val *IncidentsPage)

func (*NullableIncidentsPage) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentsPage) UnmarshalJSON(src []byte) error

func (*NullableIncidentsPage) Unset added in v1.0.8

func (v *NullableIncidentsPage) Unset()

type NullableIncidentsPageAllOf added in v1.0.8

type NullableIncidentsPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableIncidentsPageAllOf added in v1.0.8

func NewNullableIncidentsPageAllOf(val *IncidentsPageAllOf) *NullableIncidentsPageAllOf

func (NullableIncidentsPageAllOf) Get added in v1.0.8

func (NullableIncidentsPageAllOf) IsSet added in v1.0.8

func (v NullableIncidentsPageAllOf) IsSet() bool

func (NullableIncidentsPageAllOf) MarshalJSON added in v1.0.8

func (v NullableIncidentsPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableIncidentsPageAllOf) Set added in v1.0.8

func (*NullableIncidentsPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableIncidentsPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableIncidentsPageAllOf) Unset added in v1.0.8

func (v *NullableIncidentsPageAllOf) 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 NullableLicenseDetails added in v1.0.8

type NullableLicenseDetails struct {
	// contains filtered or unexported fields
}

func NewNullableLicenseDetails added in v1.0.8

func NewNullableLicenseDetails(val *LicenseDetails) *NullableLicenseDetails

func (NullableLicenseDetails) Get added in v1.0.8

func (NullableLicenseDetails) IsSet added in v1.0.8

func (v NullableLicenseDetails) IsSet() bool

func (NullableLicenseDetails) MarshalJSON added in v1.0.8

func (v NullableLicenseDetails) MarshalJSON() ([]byte, error)

func (*NullableLicenseDetails) Set added in v1.0.8

func (*NullableLicenseDetails) UnmarshalJSON added in v1.0.8

func (v *NullableLicenseDetails) UnmarshalJSON(src []byte) error

func (*NullableLicenseDetails) Unset added in v1.0.8

func (v *NullableLicenseDetails) Unset()

type NullableLicenseSummary added in v1.0.8

type NullableLicenseSummary struct {
	// contains filtered or unexported fields
}

func NewNullableLicenseSummary added in v1.0.8

func NewNullableLicenseSummary(val *LicenseSummary) *NullableLicenseSummary

func (NullableLicenseSummary) Get added in v1.0.8

func (NullableLicenseSummary) IsSet added in v1.0.8

func (v NullableLicenseSummary) IsSet() bool

func (NullableLicenseSummary) MarshalJSON added in v1.0.8

func (v NullableLicenseSummary) MarshalJSON() ([]byte, error)

func (*NullableLicenseSummary) Set added in v1.0.8

func (*NullableLicenseSummary) UnmarshalJSON added in v1.0.8

func (v *NullableLicenseSummary) UnmarshalJSON(src []byte) error

func (*NullableLicenseSummary) Unset added in v1.0.8

func (v *NullableLicenseSummary) Unset()

type NullableManageChangeRequestPending added in v1.0.8

type NullableManageChangeRequestPending struct {
	// contains filtered or unexported fields
}

func NewNullableManageChangeRequestPending added in v1.0.8

func NewNullableManageChangeRequestPending(val *ManageChangeRequestPending) *NullableManageChangeRequestPending

func (NullableManageChangeRequestPending) Get added in v1.0.8

func (NullableManageChangeRequestPending) IsSet added in v1.0.8

func (NullableManageChangeRequestPending) MarshalJSON added in v1.0.8

func (v NullableManageChangeRequestPending) MarshalJSON() ([]byte, error)

func (*NullableManageChangeRequestPending) Set added in v1.0.8

func (*NullableManageChangeRequestPending) UnmarshalJSON added in v1.0.8

func (v *NullableManageChangeRequestPending) UnmarshalJSON(src []byte) error

func (*NullableManageChangeRequestPending) Unset added in v1.0.8

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 NullableServiceAllOf added in v1.0.5

type NullableServiceAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableServiceAllOf added in v1.0.5

func NewNullableServiceAllOf(val *ServiceAllOf) *NullableServiceAllOf

func (NullableServiceAllOf) Get added in v1.0.5

func (NullableServiceAllOf) IsSet added in v1.0.5

func (v NullableServiceAllOf) IsSet() bool

func (NullableServiceAllOf) MarshalJSON added in v1.0.5

func (v NullableServiceAllOf) MarshalJSON() ([]byte, error)

func (*NullableServiceAllOf) Set added in v1.0.5

func (v *NullableServiceAllOf) Set(val *ServiceAllOf)

func (*NullableServiceAllOf) UnmarshalJSON added in v1.0.5

func (v *NullableServiceAllOf) UnmarshalJSON(src []byte) error

func (*NullableServiceAllOf) Unset added in v1.0.5

func (v *NullableServiceAllOf) 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 NullableServiceNowConfiguration added in v1.0.8

type NullableServiceNowConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableServiceNowConfiguration added in v1.0.8

func NewNullableServiceNowConfiguration(val *ServiceNowConfiguration) *NullableServiceNowConfiguration

func (NullableServiceNowConfiguration) Get added in v1.0.8

func (NullableServiceNowConfiguration) IsSet added in v1.0.8

func (NullableServiceNowConfiguration) MarshalJSON added in v1.0.8

func (v NullableServiceNowConfiguration) MarshalJSON() ([]byte, error)

func (*NullableServiceNowConfiguration) Set added in v1.0.8

func (*NullableServiceNowConfiguration) UnmarshalJSON added in v1.0.8

func (v *NullableServiceNowConfiguration) UnmarshalJSON(src []byte) error

func (*NullableServiceNowConfiguration) Unset added in v1.0.8

type NullableServiceNowConfigurationCreate added in v1.0.8

type NullableServiceNowConfigurationCreate struct {
	// contains filtered or unexported fields
}

func NewNullableServiceNowConfigurationCreate added in v1.0.8

func NewNullableServiceNowConfigurationCreate(val *ServiceNowConfigurationCreate) *NullableServiceNowConfigurationCreate

func (NullableServiceNowConfigurationCreate) Get added in v1.0.8

func (NullableServiceNowConfigurationCreate) IsSet added in v1.0.8

func (NullableServiceNowConfigurationCreate) MarshalJSON added in v1.0.8

func (v NullableServiceNowConfigurationCreate) MarshalJSON() ([]byte, error)

func (*NullableServiceNowConfigurationCreate) Set added in v1.0.8

func (*NullableServiceNowConfigurationCreate) UnmarshalJSON added in v1.0.8

func (v *NullableServiceNowConfigurationCreate) UnmarshalJSON(src []byte) error

func (*NullableServiceNowConfigurationCreate) Unset added in v1.0.8

type NullableServiceNowConfigurationRequest added in v1.0.8

type NullableServiceNowConfigurationRequest struct {
	// contains filtered or unexported fields
}

func NewNullableServiceNowConfigurationRequest added in v1.0.8

func NewNullableServiceNowConfigurationRequest(val *ServiceNowConfigurationRequest) *NullableServiceNowConfigurationRequest

func (NullableServiceNowConfigurationRequest) Get added in v1.0.8

func (NullableServiceNowConfigurationRequest) IsSet added in v1.0.8

func (NullableServiceNowConfigurationRequest) MarshalJSON added in v1.0.8

func (v NullableServiceNowConfigurationRequest) MarshalJSON() ([]byte, error)

func (*NullableServiceNowConfigurationRequest) Set added in v1.0.8

func (*NullableServiceNowConfigurationRequest) UnmarshalJSON added in v1.0.8

func (v *NullableServiceNowConfigurationRequest) UnmarshalJSON(src []byte) error

func (*NullableServiceNowConfigurationRequest) Unset added in v1.0.8

type NullableServiceNowConfigurationsPage added in v1.0.8

type NullableServiceNowConfigurationsPage struct {
	// contains filtered or unexported fields
}

func NewNullableServiceNowConfigurationsPage added in v1.0.8

func NewNullableServiceNowConfigurationsPage(val *ServiceNowConfigurationsPage) *NullableServiceNowConfigurationsPage

func (NullableServiceNowConfigurationsPage) Get added in v1.0.8

func (NullableServiceNowConfigurationsPage) IsSet added in v1.0.8

func (NullableServiceNowConfigurationsPage) MarshalJSON added in v1.0.8

func (v NullableServiceNowConfigurationsPage) MarshalJSON() ([]byte, error)

func (*NullableServiceNowConfigurationsPage) Set added in v1.0.8

func (*NullableServiceNowConfigurationsPage) UnmarshalJSON added in v1.0.8

func (v *NullableServiceNowConfigurationsPage) UnmarshalJSON(src []byte) error

func (*NullableServiceNowConfigurationsPage) Unset added in v1.0.8

type NullableServiceNowConfigurationsPageAllOf added in v1.0.8

type NullableServiceNowConfigurationsPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableServiceNowConfigurationsPageAllOf added in v1.0.8

func NewNullableServiceNowConfigurationsPageAllOf(val *ServiceNowConfigurationsPageAllOf) *NullableServiceNowConfigurationsPageAllOf

func (NullableServiceNowConfigurationsPageAllOf) Get added in v1.0.8

func (NullableServiceNowConfigurationsPageAllOf) IsSet added in v1.0.8

func (NullableServiceNowConfigurationsPageAllOf) MarshalJSON added in v1.0.8

func (*NullableServiceNowConfigurationsPageAllOf) Set added in v1.0.8

func (*NullableServiceNowConfigurationsPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableServiceNowConfigurationsPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableServiceNowConfigurationsPageAllOf) Unset added in v1.0.8

type NullableServiceSLMUIConfig added in v1.0.8

type NullableServiceSLMUIConfig struct {
	// contains filtered or unexported fields
}

func NewNullableServiceSLMUIConfig added in v1.0.8

func NewNullableServiceSLMUIConfig(val *ServiceSLMUIConfig) *NullableServiceSLMUIConfig

func (NullableServiceSLMUIConfig) Get added in v1.0.8

func (NullableServiceSLMUIConfig) IsSet added in v1.0.8

func (v NullableServiceSLMUIConfig) IsSet() bool

func (NullableServiceSLMUIConfig) MarshalJSON added in v1.0.8

func (v NullableServiceSLMUIConfig) MarshalJSON() ([]byte, error)

func (*NullableServiceSLMUIConfig) Set added in v1.0.8

func (*NullableServiceSLMUIConfig) UnmarshalJSON added in v1.0.8

func (v *NullableServiceSLMUIConfig) UnmarshalJSON(src []byte) error

func (*NullableServiceSLMUIConfig) Unset added in v1.0.8

func (v *NullableServiceSLMUIConfig) 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 NullableServiceUIResource added in v1.0.8

type NullableServiceUIResource struct {
	// contains filtered or unexported fields
}

func NewNullableServiceUIResource added in v1.0.8

func NewNullableServiceUIResource(val *ServiceUIResource) *NullableServiceUIResource

func (NullableServiceUIResource) Get added in v1.0.8

func (NullableServiceUIResource) IsSet added in v1.0.8

func (v NullableServiceUIResource) IsSet() bool

func (NullableServiceUIResource) MarshalJSON added in v1.0.8

func (v NullableServiceUIResource) MarshalJSON() ([]byte, error)

func (*NullableServiceUIResource) Set added in v1.0.8

func (*NullableServiceUIResource) UnmarshalJSON added in v1.0.8

func (v *NullableServiceUIResource) UnmarshalJSON(src []byte) error

func (*NullableServiceUIResource) Unset added in v1.0.8

func (v *NullableServiceUIResource) Unset()

type NullableServiceUpdate added in v1.0.5

type NullableServiceUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableServiceUpdate added in v1.0.5

func NewNullableServiceUpdate(val *ServiceUpdate) *NullableServiceUpdate

func (NullableServiceUpdate) Get added in v1.0.5

func (NullableServiceUpdate) IsSet added in v1.0.5

func (v NullableServiceUpdate) IsSet() bool

func (NullableServiceUpdate) MarshalJSON added in v1.0.5

func (v NullableServiceUpdate) MarshalJSON() ([]byte, error)

func (*NullableServiceUpdate) Set added in v1.0.5

func (v *NullableServiceUpdate) Set(val *ServiceUpdate)

func (*NullableServiceUpdate) UnmarshalJSON added in v1.0.5

func (v *NullableServiceUpdate) UnmarshalJSON(src []byte) error

func (*NullableServiceUpdate) Unset added in v1.0.5

func (v *NullableServiceUpdate) 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 NullableSmartAccountConfiguration added in v1.0.8

type NullableSmartAccountConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableSmartAccountConfiguration added in v1.0.8

func NewNullableSmartAccountConfiguration(val *SmartAccountConfiguration) *NullableSmartAccountConfiguration

func (NullableSmartAccountConfiguration) Get added in v1.0.8

func (NullableSmartAccountConfiguration) IsSet added in v1.0.8

func (NullableSmartAccountConfiguration) MarshalJSON added in v1.0.8

func (v NullableSmartAccountConfiguration) MarshalJSON() ([]byte, error)

func (*NullableSmartAccountConfiguration) Set added in v1.0.8

func (*NullableSmartAccountConfiguration) UnmarshalJSON added in v1.0.8

func (v *NullableSmartAccountConfiguration) UnmarshalJSON(src []byte) error

func (*NullableSmartAccountConfiguration) Unset added in v1.0.8

type NullableSmartAccountConfigurationCreate added in v1.0.8

type NullableSmartAccountConfigurationCreate struct {
	// contains filtered or unexported fields
}

func NewNullableSmartAccountConfigurationCreate added in v1.0.8

func NewNullableSmartAccountConfigurationCreate(val *SmartAccountConfigurationCreate) *NullableSmartAccountConfigurationCreate

func (NullableSmartAccountConfigurationCreate) Get added in v1.0.8

func (NullableSmartAccountConfigurationCreate) IsSet added in v1.0.8

func (NullableSmartAccountConfigurationCreate) MarshalJSON added in v1.0.8

func (v NullableSmartAccountConfigurationCreate) MarshalJSON() ([]byte, error)

func (*NullableSmartAccountConfigurationCreate) Set added in v1.0.8

func (*NullableSmartAccountConfigurationCreate) UnmarshalJSON added in v1.0.8

func (v *NullableSmartAccountConfigurationCreate) UnmarshalJSON(src []byte) error

func (*NullableSmartAccountConfigurationCreate) Unset added in v1.0.8

type NullableSmartAccountConfigurationUpdate added in v1.0.8

type NullableSmartAccountConfigurationUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableSmartAccountConfigurationUpdate added in v1.0.8

func NewNullableSmartAccountConfigurationUpdate(val *SmartAccountConfigurationUpdate) *NullableSmartAccountConfigurationUpdate

func (NullableSmartAccountConfigurationUpdate) Get added in v1.0.8

func (NullableSmartAccountConfigurationUpdate) IsSet added in v1.0.8

func (NullableSmartAccountConfigurationUpdate) MarshalJSON added in v1.0.8

func (v NullableSmartAccountConfigurationUpdate) MarshalJSON() ([]byte, error)

func (*NullableSmartAccountConfigurationUpdate) Set added in v1.0.8

func (*NullableSmartAccountConfigurationUpdate) UnmarshalJSON added in v1.0.8

func (v *NullableSmartAccountConfigurationUpdate) UnmarshalJSON(src []byte) error

func (*NullableSmartAccountConfigurationUpdate) Unset added in v1.0.8

type NullableSmartAccountType added in v1.0.8

type NullableSmartAccountType struct {
	// contains filtered or unexported fields
}

func NewNullableSmartAccountType added in v1.0.8

func NewNullableSmartAccountType(val *SmartAccountType) *NullableSmartAccountType

func (NullableSmartAccountType) Get added in v1.0.8

func (NullableSmartAccountType) IsSet added in v1.0.8

func (v NullableSmartAccountType) IsSet() bool

func (NullableSmartAccountType) MarshalJSON added in v1.0.8

func (v NullableSmartAccountType) MarshalJSON() ([]byte, error)

func (*NullableSmartAccountType) Set added in v1.0.8

func (*NullableSmartAccountType) UnmarshalJSON added in v1.0.8

func (v *NullableSmartAccountType) UnmarshalJSON(src []byte) error

func (*NullableSmartAccountType) Unset added in v1.0.8

func (v *NullableSmartAccountType) Unset()

type NullableSmartAccountUser added in v1.0.8

type NullableSmartAccountUser struct {
	// contains filtered or unexported fields
}

func NewNullableSmartAccountUser added in v1.0.8

func NewNullableSmartAccountUser(val *SmartAccountUser) *NullableSmartAccountUser

func (NullableSmartAccountUser) Get added in v1.0.8

func (NullableSmartAccountUser) IsSet added in v1.0.8

func (v NullableSmartAccountUser) IsSet() bool

func (NullableSmartAccountUser) MarshalJSON added in v1.0.8

func (v NullableSmartAccountUser) MarshalJSON() ([]byte, error)

func (*NullableSmartAccountUser) Set added in v1.0.8

func (*NullableSmartAccountUser) UnmarshalJSON added in v1.0.8

func (v *NullableSmartAccountUser) UnmarshalJSON(src []byte) error

func (*NullableSmartAccountUser) Unset added in v1.0.8

func (v *NullableSmartAccountUser) Unset()

type NullableSmartAccountUserRole added in v1.0.8

type NullableSmartAccountUserRole struct {
	// contains filtered or unexported fields
}

func NewNullableSmartAccountUserRole added in v1.0.8

func NewNullableSmartAccountUserRole(val *SmartAccountUserRole) *NullableSmartAccountUserRole

func (NullableSmartAccountUserRole) Get added in v1.0.8

func (NullableSmartAccountUserRole) IsSet added in v1.0.8

func (NullableSmartAccountUserRole) MarshalJSON added in v1.0.8

func (v NullableSmartAccountUserRole) MarshalJSON() ([]byte, error)

func (*NullableSmartAccountUserRole) Set added in v1.0.8

func (*NullableSmartAccountUserRole) UnmarshalJSON added in v1.0.8

func (v *NullableSmartAccountUserRole) UnmarshalJSON(src []byte) error

func (*NullableSmartAccountUserRole) Unset added in v1.0.8

func (v *NullableSmartAccountUserRole) Unset()

type NullableSmartUserAccounts added in v1.0.8

type NullableSmartUserAccounts struct {
	// contains filtered or unexported fields
}

func NewNullableSmartUserAccounts added in v1.0.8

func NewNullableSmartUserAccounts(val *SmartUserAccounts) *NullableSmartUserAccounts

func (NullableSmartUserAccounts) Get added in v1.0.8

func (NullableSmartUserAccounts) IsSet added in v1.0.8

func (v NullableSmartUserAccounts) IsSet() bool

func (NullableSmartUserAccounts) MarshalJSON added in v1.0.8

func (v NullableSmartUserAccounts) MarshalJSON() ([]byte, error)

func (*NullableSmartUserAccounts) Set added in v1.0.8

func (*NullableSmartUserAccounts) UnmarshalJSON added in v1.0.8

func (v *NullableSmartUserAccounts) UnmarshalJSON(src []byte) error

func (*NullableSmartUserAccounts) Unset added in v1.0.8

func (v *NullableSmartUserAccounts) Unset()

type NullableSmartUserAccountsAllOf added in v1.0.8

type NullableSmartUserAccountsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableSmartUserAccountsAllOf added in v1.0.8

func NewNullableSmartUserAccountsAllOf(val *SmartUserAccountsAllOf) *NullableSmartUserAccountsAllOf

func (NullableSmartUserAccountsAllOf) Get added in v1.0.8

func (NullableSmartUserAccountsAllOf) IsSet added in v1.0.8

func (NullableSmartUserAccountsAllOf) MarshalJSON added in v1.0.8

func (v NullableSmartUserAccountsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSmartUserAccountsAllOf) Set added in v1.0.8

func (*NullableSmartUserAccountsAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableSmartUserAccountsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSmartUserAccountsAllOf) Unset added in v1.0.8

func (v *NullableSmartUserAccountsAllOf) 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 NullableTemplate added in v1.0.8

type NullableTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableTemplate added in v1.0.8

func NewNullableTemplate(val *Template) *NullableTemplate

func (NullableTemplate) Get added in v1.0.8

func (v NullableTemplate) Get() *Template

func (NullableTemplate) IsSet added in v1.0.8

func (v NullableTemplate) IsSet() bool

func (NullableTemplate) MarshalJSON added in v1.0.8

func (v NullableTemplate) MarshalJSON() ([]byte, error)

func (*NullableTemplate) Set added in v1.0.8

func (v *NullableTemplate) Set(val *Template)

func (*NullableTemplate) UnmarshalJSON added in v1.0.8

func (v *NullableTemplate) UnmarshalJSON(src []byte) error

func (*NullableTemplate) Unset added in v1.0.8

func (v *NullableTemplate) Unset()

type NullableTemplateApplication added in v1.0.8

type NullableTemplateApplication struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateApplication added in v1.0.8

func NewNullableTemplateApplication(val *TemplateApplication) *NullableTemplateApplication

func (NullableTemplateApplication) Get added in v1.0.8

func (NullableTemplateApplication) IsSet added in v1.0.8

func (NullableTemplateApplication) MarshalJSON added in v1.0.8

func (v NullableTemplateApplication) MarshalJSON() ([]byte, error)

func (*NullableTemplateApplication) Set added in v1.0.8

func (*NullableTemplateApplication) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateApplication) UnmarshalJSON(src []byte) error

func (*NullableTemplateApplication) Unset added in v1.0.8

func (v *NullableTemplateApplication) Unset()

type NullableTemplateApplicationAllOf added in v1.0.8

type NullableTemplateApplicationAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateApplicationAllOf added in v1.0.8

func NewNullableTemplateApplicationAllOf(val *TemplateApplicationAllOf) *NullableTemplateApplicationAllOf

func (NullableTemplateApplicationAllOf) Get added in v1.0.8

func (NullableTemplateApplicationAllOf) IsSet added in v1.0.8

func (NullableTemplateApplicationAllOf) MarshalJSON added in v1.0.8

func (v NullableTemplateApplicationAllOf) MarshalJSON() ([]byte, error)

func (*NullableTemplateApplicationAllOf) Set added in v1.0.8

func (*NullableTemplateApplicationAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateApplicationAllOf) UnmarshalJSON(src []byte) error

func (*NullableTemplateApplicationAllOf) Unset added in v1.0.8

type NullableTemplateApplicationCreate added in v1.0.8

type NullableTemplateApplicationCreate struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateApplicationCreate added in v1.0.8

func NewNullableTemplateApplicationCreate(val *TemplateApplicationCreate) *NullableTemplateApplicationCreate

func (NullableTemplateApplicationCreate) Get added in v1.0.8

func (NullableTemplateApplicationCreate) IsSet added in v1.0.8

func (NullableTemplateApplicationCreate) MarshalJSON added in v1.0.8

func (v NullableTemplateApplicationCreate) MarshalJSON() ([]byte, error)

func (*NullableTemplateApplicationCreate) Set added in v1.0.8

func (*NullableTemplateApplicationCreate) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateApplicationCreate) UnmarshalJSON(src []byte) error

func (*NullableTemplateApplicationCreate) Unset added in v1.0.8

type NullableTemplateApplicationStatusPatch added in v1.0.8

type NullableTemplateApplicationStatusPatch struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateApplicationStatusPatch added in v1.0.8

func NewNullableTemplateApplicationStatusPatch(val *TemplateApplicationStatusPatch) *NullableTemplateApplicationStatusPatch

func (NullableTemplateApplicationStatusPatch) Get added in v1.0.8

func (NullableTemplateApplicationStatusPatch) IsSet added in v1.0.8

func (NullableTemplateApplicationStatusPatch) MarshalJSON added in v1.0.8

func (v NullableTemplateApplicationStatusPatch) MarshalJSON() ([]byte, error)

func (*NullableTemplateApplicationStatusPatch) Set added in v1.0.8

func (*NullableTemplateApplicationStatusPatch) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateApplicationStatusPatch) UnmarshalJSON(src []byte) error

func (*NullableTemplateApplicationStatusPatch) Unset added in v1.0.8

type NullableTemplateApplicationsPage added in v1.0.8

type NullableTemplateApplicationsPage struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateApplicationsPage added in v1.0.8

func NewNullableTemplateApplicationsPage(val *TemplateApplicationsPage) *NullableTemplateApplicationsPage

func (NullableTemplateApplicationsPage) Get added in v1.0.8

func (NullableTemplateApplicationsPage) IsSet added in v1.0.8

func (NullableTemplateApplicationsPage) MarshalJSON added in v1.0.8

func (v NullableTemplateApplicationsPage) MarshalJSON() ([]byte, error)

func (*NullableTemplateApplicationsPage) Set added in v1.0.8

func (*NullableTemplateApplicationsPage) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateApplicationsPage) UnmarshalJSON(src []byte) error

func (*NullableTemplateApplicationsPage) Unset added in v1.0.8

type NullableTemplateApplicationsPageAllOf added in v1.0.8

type NullableTemplateApplicationsPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateApplicationsPageAllOf added in v1.0.8

func NewNullableTemplateApplicationsPageAllOf(val *TemplateApplicationsPageAllOf) *NullableTemplateApplicationsPageAllOf

func (NullableTemplateApplicationsPageAllOf) Get added in v1.0.8

func (NullableTemplateApplicationsPageAllOf) IsSet added in v1.0.8

func (NullableTemplateApplicationsPageAllOf) MarshalJSON added in v1.0.8

func (v NullableTemplateApplicationsPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableTemplateApplicationsPageAllOf) Set added in v1.0.8

func (*NullableTemplateApplicationsPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateApplicationsPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableTemplateApplicationsPageAllOf) Unset added in v1.0.8

type NullableTemplateAssignment added in v1.0.8

type NullableTemplateAssignment struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignment added in v1.0.8

func NewNullableTemplateAssignment(val *TemplateAssignment) *NullableTemplateAssignment

func (NullableTemplateAssignment) Get added in v1.0.8

func (NullableTemplateAssignment) IsSet added in v1.0.8

func (v NullableTemplateAssignment) IsSet() bool

func (NullableTemplateAssignment) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignment) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignment) Set added in v1.0.8

func (*NullableTemplateAssignment) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignment) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignment) Unset added in v1.0.8

func (v *NullableTemplateAssignment) Unset()

type NullableTemplateAssignmentAllOf added in v1.0.8

type NullableTemplateAssignmentAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignmentAllOf added in v1.0.8

func NewNullableTemplateAssignmentAllOf(val *TemplateAssignmentAllOf) *NullableTemplateAssignmentAllOf

func (NullableTemplateAssignmentAllOf) Get added in v1.0.8

func (NullableTemplateAssignmentAllOf) IsSet added in v1.0.8

func (NullableTemplateAssignmentAllOf) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignmentAllOf) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignmentAllOf) Set added in v1.0.8

func (*NullableTemplateAssignmentAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignmentAllOf) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignmentAllOf) Unset added in v1.0.8

type NullableTemplateAssignmentResponse added in v1.0.8

type NullableTemplateAssignmentResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignmentResponse added in v1.0.8

func NewNullableTemplateAssignmentResponse(val *TemplateAssignmentResponse) *NullableTemplateAssignmentResponse

func (NullableTemplateAssignmentResponse) Get added in v1.0.8

func (NullableTemplateAssignmentResponse) IsSet added in v1.0.8

func (NullableTemplateAssignmentResponse) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignmentResponse) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignmentResponse) Set added in v1.0.8

func (*NullableTemplateAssignmentResponse) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignmentResponse) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignmentResponse) Unset added in v1.0.8

type NullableTemplateAssignmentResponseAllOf added in v1.0.8

type NullableTemplateAssignmentResponseAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignmentResponseAllOf added in v1.0.8

func NewNullableTemplateAssignmentResponseAllOf(val *TemplateAssignmentResponseAllOf) *NullableTemplateAssignmentResponseAllOf

func (NullableTemplateAssignmentResponseAllOf) Get added in v1.0.8

func (NullableTemplateAssignmentResponseAllOf) IsSet added in v1.0.8

func (NullableTemplateAssignmentResponseAllOf) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignmentResponseAllOf) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignmentResponseAllOf) Set added in v1.0.8

func (*NullableTemplateAssignmentResponseAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignmentResponseAllOf) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignmentResponseAllOf) Unset added in v1.0.8

type NullableTemplateAssignmentStatusPatch added in v1.0.8

type NullableTemplateAssignmentStatusPatch struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignmentStatusPatch added in v1.0.8

func NewNullableTemplateAssignmentStatusPatch(val *TemplateAssignmentStatusPatch) *NullableTemplateAssignmentStatusPatch

func (NullableTemplateAssignmentStatusPatch) Get added in v1.0.8

func (NullableTemplateAssignmentStatusPatch) IsSet added in v1.0.8

func (NullableTemplateAssignmentStatusPatch) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignmentStatusPatch) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignmentStatusPatch) Set added in v1.0.8

func (*NullableTemplateAssignmentStatusPatch) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignmentStatusPatch) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignmentStatusPatch) Unset added in v1.0.8

type NullableTemplateAssignmentsPage added in v1.0.8

type NullableTemplateAssignmentsPage struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignmentsPage added in v1.0.8

func NewNullableTemplateAssignmentsPage(val *TemplateAssignmentsPage) *NullableTemplateAssignmentsPage

func (NullableTemplateAssignmentsPage) Get added in v1.0.8

func (NullableTemplateAssignmentsPage) IsSet added in v1.0.8

func (NullableTemplateAssignmentsPage) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignmentsPage) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignmentsPage) Set added in v1.0.8

func (*NullableTemplateAssignmentsPage) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignmentsPage) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignmentsPage) Unset added in v1.0.8

type NullableTemplateAssignmentsPageAllOf added in v1.0.8

type NullableTemplateAssignmentsPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateAssignmentsPageAllOf added in v1.0.8

func NewNullableTemplateAssignmentsPageAllOf(val *TemplateAssignmentsPageAllOf) *NullableTemplateAssignmentsPageAllOf

func (NullableTemplateAssignmentsPageAllOf) Get added in v1.0.8

func (NullableTemplateAssignmentsPageAllOf) IsSet added in v1.0.8

func (NullableTemplateAssignmentsPageAllOf) MarshalJSON added in v1.0.8

func (v NullableTemplateAssignmentsPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableTemplateAssignmentsPageAllOf) Set added in v1.0.8

func (*NullableTemplateAssignmentsPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateAssignmentsPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableTemplateAssignmentsPageAllOf) Unset added in v1.0.8

type NullableTemplateCreate added in v1.0.8

type NullableTemplateCreate struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateCreate added in v1.0.8

func NewNullableTemplateCreate(val *TemplateCreate) *NullableTemplateCreate

func (NullableTemplateCreate) Get added in v1.0.8

func (NullableTemplateCreate) IsSet added in v1.0.8

func (v NullableTemplateCreate) IsSet() bool

func (NullableTemplateCreate) MarshalJSON added in v1.0.8

func (v NullableTemplateCreate) MarshalJSON() ([]byte, error)

func (*NullableTemplateCreate) Set added in v1.0.8

func (*NullableTemplateCreate) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateCreate) UnmarshalJSON(src []byte) error

func (*NullableTemplateCreate) Unset added in v1.0.8

func (v *NullableTemplateCreate) 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 NullableTemplatePatch added in v1.0.8

type NullableTemplatePatch struct {
	// contains filtered or unexported fields
}

func NewNullableTemplatePatch added in v1.0.8

func NewNullableTemplatePatch(val *TemplatePatch) *NullableTemplatePatch

func (NullableTemplatePatch) Get added in v1.0.8

func (NullableTemplatePatch) IsSet added in v1.0.8

func (v NullableTemplatePatch) IsSet() bool

func (NullableTemplatePatch) MarshalJSON added in v1.0.8

func (v NullableTemplatePatch) MarshalJSON() ([]byte, error)

func (*NullableTemplatePatch) Set added in v1.0.8

func (v *NullableTemplatePatch) Set(val *TemplatePatch)

func (*NullableTemplatePatch) UnmarshalJSON added in v1.0.8

func (v *NullableTemplatePatch) UnmarshalJSON(src []byte) error

func (*NullableTemplatePatch) Unset added in v1.0.8

func (v *NullableTemplatePatch) Unset()

type NullableTemplateStatus added in v1.0.8

type NullableTemplateStatus struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateStatus added in v1.0.8

func NewNullableTemplateStatus(val *TemplateStatus) *NullableTemplateStatus

func (NullableTemplateStatus) Get added in v1.0.8

func (NullableTemplateStatus) IsSet added in v1.0.8

func (v NullableTemplateStatus) IsSet() bool

func (NullableTemplateStatus) MarshalJSON added in v1.0.8

func (v NullableTemplateStatus) MarshalJSON() ([]byte, error)

func (*NullableTemplateStatus) Set added in v1.0.8

func (*NullableTemplateStatus) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateStatus) UnmarshalJSON(src []byte) error

func (*NullableTemplateStatus) Unset added in v1.0.8

func (v *NullableTemplateStatus) Unset()

type NullableTemplateStatusMeta added in v1.0.8

type NullableTemplateStatusMeta struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateStatusMeta added in v1.0.8

func NewNullableTemplateStatusMeta(val *TemplateStatusMeta) *NullableTemplateStatusMeta

func (NullableTemplateStatusMeta) Get added in v1.0.8

func (NullableTemplateStatusMeta) IsSet added in v1.0.8

func (v NullableTemplateStatusMeta) IsSet() bool

func (NullableTemplateStatusMeta) MarshalJSON added in v1.0.8

func (v NullableTemplateStatusMeta) MarshalJSON() ([]byte, error)

func (*NullableTemplateStatusMeta) Set added in v1.0.8

func (*NullableTemplateStatusMeta) UnmarshalJSON added in v1.0.8

func (v *NullableTemplateStatusMeta) UnmarshalJSON(src []byte) error

func (*NullableTemplateStatusMeta) Unset added in v1.0.8

func (v *NullableTemplateStatusMeta) Unset()

type NullableTemplatesPage added in v1.0.8

type NullableTemplatesPage struct {
	// contains filtered or unexported fields
}

func NewNullableTemplatesPage added in v1.0.8

func NewNullableTemplatesPage(val *TemplatesPage) *NullableTemplatesPage

func (NullableTemplatesPage) Get added in v1.0.8

func (NullableTemplatesPage) IsSet added in v1.0.8

func (v NullableTemplatesPage) IsSet() bool

func (NullableTemplatesPage) MarshalJSON added in v1.0.8

func (v NullableTemplatesPage) MarshalJSON() ([]byte, error)

func (*NullableTemplatesPage) Set added in v1.0.8

func (v *NullableTemplatesPage) Set(val *TemplatesPage)

func (*NullableTemplatesPage) UnmarshalJSON added in v1.0.8

func (v *NullableTemplatesPage) UnmarshalJSON(src []byte) error

func (*NullableTemplatesPage) Unset added in v1.0.8

func (v *NullableTemplatesPage) Unset()

type NullableTemplatesPageAllOf added in v1.0.8

type NullableTemplatesPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTemplatesPageAllOf added in v1.0.8

func NewNullableTemplatesPageAllOf(val *TemplatesPageAllOf) *NullableTemplatesPageAllOf

func (NullableTemplatesPageAllOf) Get added in v1.0.8

func (NullableTemplatesPageAllOf) IsSet added in v1.0.8

func (v NullableTemplatesPageAllOf) IsSet() bool

func (NullableTemplatesPageAllOf) MarshalJSON added in v1.0.8

func (v NullableTemplatesPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableTemplatesPageAllOf) Set added in v1.0.8

func (*NullableTemplatesPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableTemplatesPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableTemplatesPageAllOf) Unset added in v1.0.8

func (v *NullableTemplatesPageAllOf) 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 NullableTenantCreateAllOf added in v1.0.2

type NullableTenantCreateAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTenantCreateAllOf added in v1.0.2

func NewNullableTenantCreateAllOf(val *TenantCreateAllOf) *NullableTenantCreateAllOf

func (NullableTenantCreateAllOf) Get added in v1.0.2

func (NullableTenantCreateAllOf) IsSet added in v1.0.2

func (v NullableTenantCreateAllOf) IsSet() bool

func (NullableTenantCreateAllOf) MarshalJSON added in v1.0.2

func (v NullableTenantCreateAllOf) MarshalJSON() ([]byte, error)

func (*NullableTenantCreateAllOf) Set added in v1.0.2

func (*NullableTenantCreateAllOf) UnmarshalJSON added in v1.0.2

func (v *NullableTenantCreateAllOf) UnmarshalJSON(src []byte) error

func (*NullableTenantCreateAllOf) Unset added in v1.0.2

func (v *NullableTenantCreateAllOf) 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 NullableVulnerabilitiesPage added in v1.0.8

type NullableVulnerabilitiesPage struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilitiesPage added in v1.0.8

func NewNullableVulnerabilitiesPage(val *VulnerabilitiesPage) *NullableVulnerabilitiesPage

func (NullableVulnerabilitiesPage) Get added in v1.0.8

func (NullableVulnerabilitiesPage) IsSet added in v1.0.8

func (NullableVulnerabilitiesPage) MarshalJSON added in v1.0.8

func (v NullableVulnerabilitiesPage) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilitiesPage) Set added in v1.0.8

func (*NullableVulnerabilitiesPage) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilitiesPage) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilitiesPage) Unset added in v1.0.8

func (v *NullableVulnerabilitiesPage) Unset()

type NullableVulnerabilitiesPageAllOf added in v1.0.8

type NullableVulnerabilitiesPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilitiesPageAllOf added in v1.0.8

func NewNullableVulnerabilitiesPageAllOf(val *VulnerabilitiesPageAllOf) *NullableVulnerabilitiesPageAllOf

func (NullableVulnerabilitiesPageAllOf) Get added in v1.0.8

func (NullableVulnerabilitiesPageAllOf) IsSet added in v1.0.8

func (NullableVulnerabilitiesPageAllOf) MarshalJSON added in v1.0.8

func (v NullableVulnerabilitiesPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilitiesPageAllOf) Set added in v1.0.8

func (*NullableVulnerabilitiesPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilitiesPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilitiesPageAllOf) Unset added in v1.0.8

type NullableVulnerabilitiesRegistrationPage added in v1.0.8

type NullableVulnerabilitiesRegistrationPage struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilitiesRegistrationPage added in v1.0.8

func NewNullableVulnerabilitiesRegistrationPage(val *VulnerabilitiesRegistrationPage) *NullableVulnerabilitiesRegistrationPage

func (NullableVulnerabilitiesRegistrationPage) Get added in v1.0.8

func (NullableVulnerabilitiesRegistrationPage) IsSet added in v1.0.8

func (NullableVulnerabilitiesRegistrationPage) MarshalJSON added in v1.0.8

func (v NullableVulnerabilitiesRegistrationPage) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilitiesRegistrationPage) Set added in v1.0.8

func (*NullableVulnerabilitiesRegistrationPage) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilitiesRegistrationPage) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilitiesRegistrationPage) Unset added in v1.0.8

type NullableVulnerabilitiesRegistrationPageAllOf added in v1.0.8

type NullableVulnerabilitiesRegistrationPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilitiesRegistrationPageAllOf added in v1.0.8

func NewNullableVulnerabilitiesRegistrationPageAllOf(val *VulnerabilitiesRegistrationPageAllOf) *NullableVulnerabilitiesRegistrationPageAllOf

func (NullableVulnerabilitiesRegistrationPageAllOf) Get added in v1.0.8

func (NullableVulnerabilitiesRegistrationPageAllOf) IsSet added in v1.0.8

func (NullableVulnerabilitiesRegistrationPageAllOf) MarshalJSON added in v1.0.8

func (*NullableVulnerabilitiesRegistrationPageAllOf) Set added in v1.0.8

func (*NullableVulnerabilitiesRegistrationPageAllOf) UnmarshalJSON added in v1.0.8

func (*NullableVulnerabilitiesRegistrationPageAllOf) Unset added in v1.0.8

type NullableVulnerability added in v1.0.8

type NullableVulnerability struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerability added in v1.0.8

func NewNullableVulnerability(val *Vulnerability) *NullableVulnerability

func (NullableVulnerability) Get added in v1.0.8

func (NullableVulnerability) IsSet added in v1.0.8

func (v NullableVulnerability) IsSet() bool

func (NullableVulnerability) MarshalJSON added in v1.0.8

func (v NullableVulnerability) MarshalJSON() ([]byte, error)

func (*NullableVulnerability) Set added in v1.0.8

func (v *NullableVulnerability) Set(val *Vulnerability)

func (*NullableVulnerability) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerability) UnmarshalJSON(src []byte) error

func (*NullableVulnerability) Unset added in v1.0.8

func (v *NullableVulnerability) Unset()

type NullableVulnerabilityFeed added in v1.0.8

type NullableVulnerabilityFeed struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityFeed added in v1.0.8

func NewNullableVulnerabilityFeed(val *VulnerabilityFeed) *NullableVulnerabilityFeed

func (NullableVulnerabilityFeed) Get added in v1.0.8

func (NullableVulnerabilityFeed) IsSet added in v1.0.8

func (v NullableVulnerabilityFeed) IsSet() bool

func (NullableVulnerabilityFeed) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityFeed) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityFeed) Set added in v1.0.8

func (*NullableVulnerabilityFeed) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityFeed) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityFeed) Unset added in v1.0.8

func (v *NullableVulnerabilityFeed) Unset()

type NullableVulnerabilityIngestPage added in v1.0.8

type NullableVulnerabilityIngestPage struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityIngestPage added in v1.0.8

func NewNullableVulnerabilityIngestPage(val *VulnerabilityIngestPage) *NullableVulnerabilityIngestPage

func (NullableVulnerabilityIngestPage) Get added in v1.0.8

func (NullableVulnerabilityIngestPage) IsSet added in v1.0.8

func (NullableVulnerabilityIngestPage) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityIngestPage) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityIngestPage) Set added in v1.0.8

func (*NullableVulnerabilityIngestPage) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityIngestPage) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityIngestPage) Unset added in v1.0.8

type NullableVulnerabilityIngestPageAllOf added in v1.0.8

type NullableVulnerabilityIngestPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityIngestPageAllOf added in v1.0.8

func NewNullableVulnerabilityIngestPageAllOf(val *VulnerabilityIngestPageAllOf) *NullableVulnerabilityIngestPageAllOf

func (NullableVulnerabilityIngestPageAllOf) Get added in v1.0.8

func (NullableVulnerabilityIngestPageAllOf) IsSet added in v1.0.8

func (NullableVulnerabilityIngestPageAllOf) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityIngestPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityIngestPageAllOf) Set added in v1.0.8

func (*NullableVulnerabilityIngestPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityIngestPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityIngestPageAllOf) Unset added in v1.0.8

type NullableVulnerabilityIngestion added in v1.0.8

type NullableVulnerabilityIngestion struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityIngestion added in v1.0.8

func NewNullableVulnerabilityIngestion(val *VulnerabilityIngestion) *NullableVulnerabilityIngestion

func (NullableVulnerabilityIngestion) Get added in v1.0.8

func (NullableVulnerabilityIngestion) IsSet added in v1.0.8

func (NullableVulnerabilityIngestion) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityIngestion) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityIngestion) Set added in v1.0.8

func (*NullableVulnerabilityIngestion) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityIngestion) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityIngestion) Unset added in v1.0.8

func (v *NullableVulnerabilityIngestion) Unset()

type NullableVulnerabilityRegistration added in v1.0.8

type NullableVulnerabilityRegistration struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityRegistration added in v1.0.8

func NewNullableVulnerabilityRegistration(val *VulnerabilityRegistration) *NullableVulnerabilityRegistration

func (NullableVulnerabilityRegistration) Get added in v1.0.8

func (NullableVulnerabilityRegistration) IsSet added in v1.0.8

func (NullableVulnerabilityRegistration) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityRegistration) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityRegistration) Set added in v1.0.8

func (*NullableVulnerabilityRegistration) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityRegistration) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityRegistration) Unset added in v1.0.8

type NullableVulnerabilityRegistrationAllOf added in v1.0.8

type NullableVulnerabilityRegistrationAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityRegistrationAllOf added in v1.0.8

func NewNullableVulnerabilityRegistrationAllOf(val *VulnerabilityRegistrationAllOf) *NullableVulnerabilityRegistrationAllOf

func (NullableVulnerabilityRegistrationAllOf) Get added in v1.0.8

func (NullableVulnerabilityRegistrationAllOf) IsSet added in v1.0.8

func (NullableVulnerabilityRegistrationAllOf) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityRegistrationAllOf) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityRegistrationAllOf) Set added in v1.0.8

func (*NullableVulnerabilityRegistrationAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityRegistrationAllOf) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityRegistrationAllOf) Unset added in v1.0.8

type NullableVulnerabilityRegistrationCreate added in v1.0.8

type NullableVulnerabilityRegistrationCreate struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityRegistrationCreate added in v1.0.8

func NewNullableVulnerabilityRegistrationCreate(val *VulnerabilityRegistrationCreate) *NullableVulnerabilityRegistrationCreate

func (NullableVulnerabilityRegistrationCreate) Get added in v1.0.8

func (NullableVulnerabilityRegistrationCreate) IsSet added in v1.0.8

func (NullableVulnerabilityRegistrationCreate) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityRegistrationCreate) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityRegistrationCreate) Set added in v1.0.8

func (*NullableVulnerabilityRegistrationCreate) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityRegistrationCreate) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityRegistrationCreate) Unset added in v1.0.8

type NullableVulnerabilitySeverity added in v1.0.8

type NullableVulnerabilitySeverity struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilitySeverity added in v1.0.8

func NewNullableVulnerabilitySeverity(val *VulnerabilitySeverity) *NullableVulnerabilitySeverity

func (NullableVulnerabilitySeverity) Get added in v1.0.8

func (NullableVulnerabilitySeverity) IsSet added in v1.0.8

func (NullableVulnerabilitySeverity) MarshalJSON added in v1.0.8

func (v NullableVulnerabilitySeverity) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilitySeverity) Set added in v1.0.8

func (*NullableVulnerabilitySeverity) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilitySeverity) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilitySeverity) Unset added in v1.0.8

func (v *NullableVulnerabilitySeverity) Unset()

type NullableVulnerabilityValidation added in v1.0.8

type NullableVulnerabilityValidation struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityValidation added in v1.0.8

func NewNullableVulnerabilityValidation(val *VulnerabilityValidation) *NullableVulnerabilityValidation

func (NullableVulnerabilityValidation) Get added in v1.0.8

func (NullableVulnerabilityValidation) IsSet added in v1.0.8

func (NullableVulnerabilityValidation) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityValidation) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityValidation) Set added in v1.0.8

func (*NullableVulnerabilityValidation) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityValidation) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityValidation) Unset added in v1.0.8

type NullableVulnerabilityValidationPage added in v1.0.8

type NullableVulnerabilityValidationPage struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityValidationPage added in v1.0.8

func NewNullableVulnerabilityValidationPage(val *VulnerabilityValidationPage) *NullableVulnerabilityValidationPage

func (NullableVulnerabilityValidationPage) Get added in v1.0.8

func (NullableVulnerabilityValidationPage) IsSet added in v1.0.8

func (NullableVulnerabilityValidationPage) MarshalJSON added in v1.0.8

func (v NullableVulnerabilityValidationPage) MarshalJSON() ([]byte, error)

func (*NullableVulnerabilityValidationPage) Set added in v1.0.8

func (*NullableVulnerabilityValidationPage) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityValidationPage) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityValidationPage) Unset added in v1.0.8

type NullableVulnerabilityValidationPageAllOf added in v1.0.8

type NullableVulnerabilityValidationPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableVulnerabilityValidationPageAllOf added in v1.0.8

func NewNullableVulnerabilityValidationPageAllOf(val *VulnerabilityValidationPageAllOf) *NullableVulnerabilityValidationPageAllOf

func (NullableVulnerabilityValidationPageAllOf) Get added in v1.0.8

func (NullableVulnerabilityValidationPageAllOf) IsSet added in v1.0.8

func (NullableVulnerabilityValidationPageAllOf) MarshalJSON added in v1.0.8

func (*NullableVulnerabilityValidationPageAllOf) Set added in v1.0.8

func (*NullableVulnerabilityValidationPageAllOf) UnmarshalJSON added in v1.0.8

func (v *NullableVulnerabilityValidationPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableVulnerabilityValidationPageAllOf) Unset added in v1.0.8

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,omitempty"`
	Price                *string                `json:"price,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	SupportedProperties  *[]string              `json:"supportedProperties,omitempty"`
	SupportedOptions     *[]NameValue           `json:"supportedOptions,omitempty"`
	Approvals            map[string]interface{} `json:"approvals,omitempty"`
	AdditionalProperties map[string]interface{}
}

Offer struct for Offer

func NewOffer

func NewOffer(name string, label string, description string, productId string, version int32, displayOrder int32) *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]interface{}

GetApprovals returns the Approvals field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Offer) GetApprovalsOk

func (o *Offer) GetApprovalsOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise.

func (*Offer) GetImageOk

func (o *Offer) 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 (*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 if set, zero value otherwise.

func (*Offer) GetSupportedOptionsOk

func (o *Offer) GetSupportedOptionsOk() (*[]NameValue, bool)

GetSupportedOptionsOk returns a tuple with the SupportedOptions field value if set, nil otherwise 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 if set, zero value otherwise.

func (*Offer) GetSupportedPropertiesOk

func (o *Offer) GetSupportedPropertiesOk() (*[]string, bool)

GetSupportedPropertiesOk returns a tuple with the SupportedProperties field value if set, nil otherwise 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) HasImage added in v1.0.8

func (o *Offer) HasImage() bool

HasImage 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) HasSupportedOptions added in v1.0.8

func (o *Offer) HasSupportedOptions() bool

HasSupportedOptions returns a boolean if a field has been set.

func (*Offer) HasSupportedProperties added in v1.0.8

func (o *Offer) HasSupportedProperties() bool

HasSupportedProperties 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]interface{})

SetApprovals gets a reference to the given map[string]interface{} 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 gets a reference to the given string and assigns it to the Image field.

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 gets a reference to the given []NameValue and assigns it to the SupportedOptions field.

func (*Offer) SetSupportedProperties

func (o *Offer) SetSupportedProperties(v []string)

SetSupportedProperties gets a reference to the given []string and assigns it to the SupportedProperties field.

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

func (*Offer) UnmarshalJSON added in v1.0.5

func (o *Offer) UnmarshalJSON(bytes []byte) (err error)

type OfferAllOf

type OfferAllOf struct {
	Id                   *string `json:"id,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*OfferAllOf) UnmarshalJSON added in v1.0.5

func (o *OfferAllOf) UnmarshalJSON(bytes []byte) (err error)

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,omitempty"`
	Price                *string                `json:"price,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	SupportedProperties  *[]string              `json:"supportedProperties,omitempty"`
	SupportedOptions     *[]NameValue           `json:"supportedOptions,omitempty"`
	Approvals            map[string]interface{} `json:"approvals,omitempty"`
	AdditionalProperties map[string]interface{}
}

OfferCreate struct for OfferCreate

func NewOfferCreate

func NewOfferCreate(name string, label string, description string, productId string, version int32, displayOrder int32) *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]interface{}

GetApprovals returns the Approvals field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OfferCreate) GetApprovalsOk

func (o *OfferCreate) GetApprovalsOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise.

func (*OfferCreate) GetImageOk

func (o *OfferCreate) 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 (*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 if set, zero value otherwise.

func (*OfferCreate) GetSupportedOptionsOk

func (o *OfferCreate) GetSupportedOptionsOk() (*[]NameValue, bool)

GetSupportedOptionsOk returns a tuple with the SupportedOptions field value if set, nil otherwise 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 if set, zero value otherwise.

func (*OfferCreate) GetSupportedPropertiesOk

func (o *OfferCreate) GetSupportedPropertiesOk() (*[]string, bool)

GetSupportedPropertiesOk returns a tuple with the SupportedProperties field value if set, nil otherwise 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) HasImage added in v1.0.8

func (o *OfferCreate) HasImage() bool

HasImage 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) HasSupportedOptions added in v1.0.8

func (o *OfferCreate) HasSupportedOptions() bool

HasSupportedOptions returns a boolean if a field has been set.

func (*OfferCreate) HasSupportedProperties added in v1.0.8

func (o *OfferCreate) HasSupportedProperties() bool

HasSupportedProperties 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]interface{})

SetApprovals gets a reference to the given map[string]interface{} 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 gets a reference to the given string and assigns it to the Image field.

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 gets a reference to the given []NameValue and assigns it to the SupportedOptions field.

func (*OfferCreate) SetSupportedProperties

func (o *OfferCreate) SetSupportedProperties(v []string)

SetSupportedProperties gets a reference to the given []string and assigns it to the SupportedProperties field.

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

func (*OfferCreate) UnmarshalJSON added in v1.0.5

func (o *OfferCreate) UnmarshalJSON(bytes []byte) (err error)

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,omitempty"`
	Price                *string                `json:"price,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	SupportedProperties  *[]string              `json:"supportedProperties,omitempty"`
	SupportedOptions     *[]NameValue           `json:"supportedOptions,omitempty"`
	Approvals            map[string]interface{} `json:"approvals,omitempty"`
	AdditionalProperties map[string]interface{}
}

OfferUpdate struct for OfferUpdate

func NewOfferUpdate

func NewOfferUpdate(name string, label string, description string, productId string, version int32, displayOrder int32) *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]interface{}

GetApprovals returns the Approvals field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OfferUpdate) GetApprovalsOk

func (o *OfferUpdate) GetApprovalsOk() (*map[string]interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise.

func (*OfferUpdate) GetImageOk

func (o *OfferUpdate) 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 (*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 if set, zero value otherwise.

func (*OfferUpdate) GetSupportedOptionsOk

func (o *OfferUpdate) GetSupportedOptionsOk() (*[]NameValue, bool)

GetSupportedOptionsOk returns a tuple with the SupportedOptions field value if set, nil otherwise 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 if set, zero value otherwise.

func (*OfferUpdate) GetSupportedPropertiesOk

func (o *OfferUpdate) GetSupportedPropertiesOk() (*[]string, bool)

GetSupportedPropertiesOk returns a tuple with the SupportedProperties field value if set, nil otherwise 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) HasImage added in v1.0.8

func (o *OfferUpdate) HasImage() bool

HasImage 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) HasSupportedOptions added in v1.0.8

func (o *OfferUpdate) HasSupportedOptions() bool

HasSupportedOptions returns a boolean if a field has been set.

func (*OfferUpdate) HasSupportedProperties added in v1.0.8

func (o *OfferUpdate) HasSupportedProperties() bool

HasSupportedProperties 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]interface{})

SetApprovals gets a reference to the given map[string]interface{} 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 gets a reference to the given string and assigns it to the Image field.

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 gets a reference to the given []NameValue and assigns it to the SupportedOptions field.

func (*OfferUpdate) SetSupportedProperties

func (o *OfferUpdate) SetSupportedProperties(v []string)

SetSupportedProperties gets a reference to the given []string and assigns it to the SupportedProperties field.

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

func (*OfferUpdate) UnmarshalJSON added in v1.0.5

func (o *OfferUpdate) UnmarshalJSON(bytes []byte) (err error)

type OffersApiService

type OffersApiService service

OffersApiService OffersApi service

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) 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           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Offer       `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OffersPage) GetSortOrder

func (o *OffersPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OffersPage) GetTotalItems

func (o *OffersPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*OffersPage) SetSortByNil added in v1.0.2

func (o *OffersPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*OffersPage) SetSortOrder

func (o *OffersPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*OffersPage) SetSortOrderNil added in v1.0.2

func (o *OffersPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*OffersPage) SetTotalItems

func (o *OffersPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*OffersPage) SetTotalItemsNil added in v1.0.2

func (o *OffersPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*OffersPage) UnmarshalJSON added in v1.0.5

func (o *OffersPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*OffersPage) UnsetSortBy added in v1.0.2

func (o *OffersPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*OffersPage) UnsetSortOrder added in v1.0.2

func (o *OffersPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*OffersPage) UnsetTotalItems added in v1.0.2

func (o *OffersPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type OffersPageAllOf

type OffersPageAllOf struct {
	Contents             *[]Offer `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*OffersPageAllOf) UnmarshalJSON added in v1.0.5

func (o *OffersPageAllOf) UnmarshalJSON(bytes []byte) (err error)
type PageHeader struct {
	Page                 *int32         `json:"page,omitempty"`
	PageSize             *int32         `json:"pageSize,omitempty"`
	TotalItems           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PageHeader) GetSortOrder

func (o *PageHeader) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PageHeader) GetTotalItems

func (o *PageHeader) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*PageHeader) SetSortByNil added in v1.0.2

func (o *PageHeader) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*PageHeader) SetSortOrder

func (o *PageHeader) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*PageHeader) SetSortOrderNil added in v1.0.2

func (o *PageHeader) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*PageHeader) SetTotalItems

func (o *PageHeader) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*PageHeader) SetTotalItemsNil added in v1.0.2

func (o *PageHeader) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*PageHeader) UnmarshalJSON added in v1.0.5

func (o *PageHeader) UnmarshalJSON(bytes []byte) (err error)

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

func (*PageHeader) UnsetSortBy added in v1.0.2

func (o *PageHeader) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*PageHeader) UnsetSortOrder added in v1.0.2

func (o *PageHeader) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*PageHeader) UnsetTotalItems added in v1.0.2

func (o *PageHeader) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, 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,omitempty"`
	DisplayOrder                 *int32                     `json:"displayOrder,omitempty"`
	Active                       *bool                      `json:"active,omitempty"`
	OrderLimit                   *int32                     `json:"orderLimit,omitempty"`
	Options                      []ServiceElement           `json:"options"`
	Properties                   []ServiceElement           `json:"properties,omitempty"`
	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"`
	SlmUiConfig                  NullableServiceSLMUIConfig `json:"slmUiConfig,omitempty"`
	ExternalId                   NullableString             `json:"externalId,omitempty"`
	Tags                         []string                   `json:"tags,omitempty"`
	AdditionalProperties         map[string]interface{}
}

Product struct for Product

func NewProduct

func NewProduct(name string, label string, version int32, description string, image string, options []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) GetExternalId added in v1.0.8

func (o *Product) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Product) GetExternalIdOk added in v1.0.8

func (o *Product) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise.

func (*Product) GetPriceOk

func (o *Product) 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 (*Product) GetProperties

func (o *Product) GetProperties() []ServiceElement

GetProperties returns the Properties field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Product) GetPropertiesOk

func (o *Product) GetPropertiesOk() (*[]ServiceElement, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetSlmUiConfig added in v1.0.8

func (o *Product) GetSlmUiConfig() ServiceSLMUIConfig

GetSlmUiConfig returns the SlmUiConfig field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Product) GetSlmUiConfigOk added in v1.0.8

func (o *Product) GetSlmUiConfigOk() (*ServiceSLMUIConfig, bool)

GetSlmUiConfigOk returns a tuple with the SlmUiConfig field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Product) GetTags added in v1.0.5

func (o *Product) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Product) GetTagsOk added in v1.0.5

func (o *Product) GetTagsOk() (*[]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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasExternalId added in v1.0.8

func (o *Product) HasExternalId() bool

HasExternalId 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) HasPrice added in v1.0.5

func (o *Product) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*Product) HasProperties added in v1.0.5

func (o *Product) HasProperties() bool

HasProperties 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) HasSlmUiConfig added in v1.0.8

func (o *Product) HasSlmUiConfig() bool

HasSlmUiConfig returns a boolean if a field has been set.

func (*Product) HasTags added in v1.0.5

func (o *Product) HasTags() bool

HasTags 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) SetExternalId added in v1.0.8

func (o *Product) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*Product) SetExternalIdNil added in v1.0.8

func (o *Product) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

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 gets a reference to the given string and assigns it to the Price field.

func (*Product) SetProperties

func (o *Product) SetProperties(v []ServiceElement)

SetProperties gets a reference to the given []ServiceElement and assigns it to the Properties field.

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) SetSlmUiConfig added in v1.0.8

func (o *Product) SetSlmUiConfig(v ServiceSLMUIConfig)

SetSlmUiConfig gets a reference to the given NullableServiceSLMUIConfig and assigns it to the SlmUiConfig field.

func (*Product) SetSlmUiConfigNil added in v1.0.8

func (o *Product) SetSlmUiConfigNil()

SetSlmUiConfigNil sets the value for SlmUiConfig to be an explicit nil

func (*Product) SetTags added in v1.0.5

func (o *Product) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags 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

func (*Product) UnmarshalJSON added in v1.0.5

func (o *Product) UnmarshalJSON(bytes []byte) (err error)

func (*Product) UnsetExternalId added in v1.0.8

func (o *Product) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

func (*Product) UnsetSlmUiConfig added in v1.0.8

func (o *Product) UnsetSlmUiConfig()

UnsetSlmUiConfig ensures that no value is present for SlmUiConfig, not even an explicit nil

type ProductAllOf

type ProductAllOf struct {
	Id                   *string `json:"id,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*ProductAllOf) UnmarshalJSON added in v1.0.5

func (o *ProductAllOf) UnmarshalJSON(bytes []byte) (err error)

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,omitempty"`
	DisplayOrder                 *int32                     `json:"displayOrder,omitempty"`
	Active                       *bool                      `json:"active,omitempty"`
	OrderLimit                   *int32                     `json:"orderLimit,omitempty"`
	Options                      []ServiceElement           `json:"options"`
	Properties                   []ServiceElement           `json:"properties,omitempty"`
	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"`
	SlmUiConfig                  NullableServiceSLMUIConfig `json:"slmUiConfig,omitempty"`
	ExternalId                   NullableString             `json:"externalId,omitempty"`
	Tags                         []string                   `json:"tags,omitempty"`
	AdditionalProperties         map[string]interface{}
}

ProductCreate struct for ProductCreate

func NewProductCreate

func NewProductCreate(name string, label string, version int32, description string, image string, options []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) GetExternalId added in v1.0.8

func (o *ProductCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductCreate) GetExternalIdOk added in v1.0.8

func (o *ProductCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise.

func (*ProductCreate) GetPriceOk

func (o *ProductCreate) 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 (*ProductCreate) GetProperties

func (o *ProductCreate) GetProperties() []ServiceElement

GetProperties returns the Properties field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductCreate) GetPropertiesOk

func (o *ProductCreate) GetPropertiesOk() (*[]ServiceElement, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetSlmUiConfig added in v1.0.8

func (o *ProductCreate) GetSlmUiConfig() ServiceSLMUIConfig

GetSlmUiConfig returns the SlmUiConfig field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductCreate) GetSlmUiConfigOk added in v1.0.8

func (o *ProductCreate) GetSlmUiConfigOk() (*ServiceSLMUIConfig, bool)

GetSlmUiConfigOk returns a tuple with the SlmUiConfig field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProductCreate) GetTags added in v1.0.5

func (o *ProductCreate) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductCreate) GetTagsOk added in v1.0.5

func (o *ProductCreate) GetTagsOk() (*[]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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasExternalId added in v1.0.8

func (o *ProductCreate) HasExternalId() bool

HasExternalId 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) HasPrice added in v1.0.5

func (o *ProductCreate) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*ProductCreate) HasProperties added in v1.0.5

func (o *ProductCreate) HasProperties() bool

HasProperties 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) HasSlmUiConfig added in v1.0.8

func (o *ProductCreate) HasSlmUiConfig() bool

HasSlmUiConfig returns a boolean if a field has been set.

func (*ProductCreate) HasTags added in v1.0.5

func (o *ProductCreate) HasTags() bool

HasTags 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) SetExternalId added in v1.0.8

func (o *ProductCreate) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*ProductCreate) SetExternalIdNil added in v1.0.8

func (o *ProductCreate) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

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 gets a reference to the given string and assigns it to the Price field.

func (*ProductCreate) SetProperties

func (o *ProductCreate) SetProperties(v []ServiceElement)

SetProperties gets a reference to the given []ServiceElement and assigns it to the Properties field.

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) SetSlmUiConfig added in v1.0.8

func (o *ProductCreate) SetSlmUiConfig(v ServiceSLMUIConfig)

SetSlmUiConfig gets a reference to the given NullableServiceSLMUIConfig and assigns it to the SlmUiConfig field.

func (*ProductCreate) SetSlmUiConfigNil added in v1.0.8

func (o *ProductCreate) SetSlmUiConfigNil()

SetSlmUiConfigNil sets the value for SlmUiConfig to be an explicit nil

func (*ProductCreate) SetTags added in v1.0.5

func (o *ProductCreate) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags 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

func (*ProductCreate) UnmarshalJSON added in v1.0.5

func (o *ProductCreate) UnmarshalJSON(bytes []byte) (err error)

func (*ProductCreate) UnsetExternalId added in v1.0.8

func (o *ProductCreate) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

func (*ProductCreate) UnsetSlmUiConfig added in v1.0.8

func (o *ProductCreate) UnsetSlmUiConfig()

UnsetSlmUiConfig ensures that no value is present for SlmUiConfig, not even an explicit nil

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,omitempty"`
	DisplayOrder                 *int32                     `json:"displayOrder,omitempty"`
	Active                       *bool                      `json:"active,omitempty"`
	OrderLimit                   *int32                     `json:"orderLimit,omitempty"`
	Options                      []ServiceElement           `json:"options"`
	Properties                   []ServiceElement           `json:"properties,omitempty"`
	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"`
	SlmUiConfig                  NullableServiceSLMUIConfig `json:"slmUiConfig,omitempty"`
	ExternalId                   NullableString             `json:"externalId,omitempty"`
	Tags                         []string                   `json:"tags,omitempty"`
	AdditionalProperties         map[string]interface{}
}

ProductUpdate struct for ProductUpdate

func NewProductUpdate

func NewProductUpdate(name string, label string, version int32, description string, image string, options []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) GetExternalId added in v1.0.8

func (o *ProductUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductUpdate) GetExternalIdOk added in v1.0.8

func (o *ProductUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 if set, zero value otherwise.

func (*ProductUpdate) GetPriceOk

func (o *ProductUpdate) 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 (*ProductUpdate) GetProperties

func (o *ProductUpdate) GetProperties() []ServiceElement

GetProperties returns the Properties field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductUpdate) GetPropertiesOk

func (o *ProductUpdate) GetPropertiesOk() (*[]ServiceElement, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetSlmUiConfig added in v1.0.8

func (o *ProductUpdate) GetSlmUiConfig() ServiceSLMUIConfig

GetSlmUiConfig returns the SlmUiConfig field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductUpdate) GetSlmUiConfigOk added in v1.0.8

func (o *ProductUpdate) GetSlmUiConfigOk() (*ServiceSLMUIConfig, bool)

GetSlmUiConfigOk returns a tuple with the SlmUiConfig field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProductUpdate) GetTags added in v1.0.5

func (o *ProductUpdate) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductUpdate) GetTagsOk added in v1.0.5

func (o *ProductUpdate) GetTagsOk() (*[]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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasExternalId added in v1.0.8

func (o *ProductUpdate) HasExternalId() bool

HasExternalId 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) HasPrice added in v1.0.5

func (o *ProductUpdate) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*ProductUpdate) HasProperties added in v1.0.5

func (o *ProductUpdate) HasProperties() bool

HasProperties 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) HasSlmUiConfig added in v1.0.8

func (o *ProductUpdate) HasSlmUiConfig() bool

HasSlmUiConfig returns a boolean if a field has been set.

func (*ProductUpdate) HasTags added in v1.0.5

func (o *ProductUpdate) HasTags() bool

HasTags 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) SetExternalId added in v1.0.8

func (o *ProductUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*ProductUpdate) SetExternalIdNil added in v1.0.8

func (o *ProductUpdate) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

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 gets a reference to the given string and assigns it to the Price field.

func (*ProductUpdate) SetProperties

func (o *ProductUpdate) SetProperties(v []ServiceElement)

SetProperties gets a reference to the given []ServiceElement and assigns it to the Properties field.

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) SetSlmUiConfig added in v1.0.8

func (o *ProductUpdate) SetSlmUiConfig(v ServiceSLMUIConfig)

SetSlmUiConfig gets a reference to the given NullableServiceSLMUIConfig and assigns it to the SlmUiConfig field.

func (*ProductUpdate) SetSlmUiConfigNil added in v1.0.8

func (o *ProductUpdate) SetSlmUiConfigNil()

SetSlmUiConfigNil sets the value for SlmUiConfig to be an explicit nil

func (*ProductUpdate) SetTags added in v1.0.5

func (o *ProductUpdate) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags 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

func (*ProductUpdate) UnmarshalJSON added in v1.0.5

func (o *ProductUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*ProductUpdate) UnsetExternalId added in v1.0.8

func (o *ProductUpdate) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

func (*ProductUpdate) UnsetSlmUiConfig added in v1.0.8

func (o *ProductUpdate) UnsetSlmUiConfig()

UnsetSlmUiConfig ensures that no value is present for SlmUiConfig, not even an explicit nil

type ProductsApiService

type ProductsApiService service

ProductsApiService ProductsApi service

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) 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           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Product     `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProductsPage) GetSortOrder

func (o *ProductsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProductsPage) GetTotalItems

func (o *ProductsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*ProductsPage) SetSortByNil added in v1.0.2

func (o *ProductsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*ProductsPage) SetSortOrder

func (o *ProductsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*ProductsPage) SetSortOrderNil added in v1.0.2

func (o *ProductsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*ProductsPage) SetTotalItems

func (o *ProductsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*ProductsPage) SetTotalItemsNil added in v1.0.2

func (o *ProductsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*ProductsPage) UnmarshalJSON added in v1.0.5

func (o *ProductsPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*ProductsPage) UnsetSortBy added in v1.0.2

func (o *ProductsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*ProductsPage) UnsetSortOrder added in v1.0.2

func (o *ProductsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*ProductsPage) UnsetTotalItems added in v1.0.2

func (o *ProductsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type ProductsPageAllOf

type ProductsPageAllOf struct {
	Contents             *[]Product `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*ProductsPageAllOf) UnmarshalJSON added in v1.0.5

func (o *ProductsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type RegistrationApiService added in v1.0.8

type RegistrationApiService service

RegistrationApiService RegistrationApi service

func (*RegistrationApiService) DeleteRegisteredProductVersion added in v1.0.8

func (a *RegistrationApiService) DeleteRegisteredProductVersion(ctx _context.Context, id string) ApiDeleteRegisteredProductVersionRequest

* DeleteRegisteredProductVersion Delete a registration. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteRegisteredProductVersionRequest

func (*RegistrationApiService) DeleteRegisteredProductVersionExecute added in v1.0.8

func (a *RegistrationApiService) DeleteRegisteredProductVersionExecute(r ApiDeleteRegisteredProductVersionRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*RegistrationApiService) GetRegisteredProductVersionPage added in v1.0.8

func (a *RegistrationApiService) GetRegisteredProductVersionPage(ctx _context.Context) ApiGetRegisteredProductVersionPageRequest

* GetRegisteredProductVersionPage Returns a filtered page of registered products / versions. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetRegisteredProductVersionPageRequest

func (*RegistrationApiService) GetRegisteredProductVersionPageExecute added in v1.0.8

* Execute executes the request * @return VulnerabilitiesRegistrationPage

func (*RegistrationApiService) RegisterProductVersion added in v1.0.8

* RegisterProductVersion Register a product / verison combination for vulnerability inspection. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiRegisterProductVersionRequest

func (*RegistrationApiService) RegisterProductVersionExecute added in v1.0.8

* Execute executes the request * @return VulnerabilityRegistration

type ResourceHealth

type ResourceHealth struct {
	Id                   string         `json:"id"`
	Type                 ResourceType   `json:"type"`
	Status               ResourceStatus `json:"status"`
	Description          NullableString `json:"description,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Description field.

func (*ResourceHealth) SetDescriptionNil added in v1.0.2

func (o *ResourceHealth) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

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

func (*ResourceHealth) UnmarshalJSON added in v1.0.5

func (o *ResourceHealth) UnmarshalJSON(bytes []byte) (err error)

func (*ResourceHealth) UnsetDescription added in v1.0.2

func (o *ResourceHealth) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type ResourceStatus

type ResourceStatus string

ResourceStatus the model 'ResourceStatus'

const (
	RESOURCESTATUS_UP      ResourceStatus = "up"
	RESOURCESTATUS_DOWN    ResourceStatus = "down"
	RESOURCESTATUS_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 (
	RESOURCETYPE_SERVICE ResourceType = "service"
	RESOURCETYPE_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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*Role) UnmarshalJSON added in v1.0.5

func (o *Role) UnmarshalJSON(bytes []byte) (err error)

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           NullableTime            `json:"modifiedOn,omitempty"`
	ProvisionedOn        *time.Time              `json:"provisionedOn,omitempty"`
	Status               *map[string]interface{} `json:"status,omitempty"`
	DefinitionAttributes *map[string]interface{} `json:"definitionAttributes,omitempty"`
	Attributes           *map[string]interface{} `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Service) GetAttributesOk

func (o *Service) GetAttributesOk() (*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]interface{}

GetDefinitionAttributes returns the DefinitionAttributes field value if set, zero value otherwise.

func (*Service) GetDefinitionAttributesOk

func (o *Service) GetDefinitionAttributesOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*Service) GetStatusOk

func (o *Service) GetStatusOk() (*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 (*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]interface{})

SetAttributes gets a reference to the given 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]interface{})

SetDefinitionAttributes gets a reference to the given 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 NullableTime and assigns it to the ModifiedOn field.

func (*Service) SetModifiedOnNil added in v1.0.2

func (o *Service) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

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]interface{})

SetStatus gets a reference to the given map[string]interface{} 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.

func (*Service) UnmarshalJSON added in v1.0.5

func (o *Service) UnmarshalJSON(bytes []byte) (err error)

func (*Service) UnsetModifiedOn added in v1.0.2

func (o *Service) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

type ServiceAllOf added in v1.0.5

type ServiceAllOf 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           NullableTime `json:"modifiedOn,omitempty"`
	ProvisionedOn        *time.Time   `json:"provisionedOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceAllOf struct for ServiceAllOf

func NewServiceAllOf added in v1.0.5

func NewServiceAllOf() *ServiceAllOf

NewServiceAllOf instantiates a new ServiceAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceAllOfWithDefaults added in v1.0.5

func NewServiceAllOfWithDefaults() *ServiceAllOf

NewServiceAllOfWithDefaults instantiates a new ServiceAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceAllOf) GetCreatedOn added in v1.0.5

func (o *ServiceAllOf) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*ServiceAllOf) GetCreatedOnOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) GetId added in v1.0.5

func (o *ServiceAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ServiceAllOf) GetIdOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) GetModifiedOn added in v1.0.5

func (o *ServiceAllOf) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceAllOf) GetModifiedOnOk added in v1.0.5

func (o *ServiceAllOf) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceAllOf) GetProviderId added in v1.0.5

func (o *ServiceAllOf) GetProviderId() string

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*ServiceAllOf) GetProviderIdOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) GetProvisionedOn added in v1.0.5

func (o *ServiceAllOf) GetProvisionedOn() time.Time

GetProvisionedOn returns the ProvisionedOn field value if set, zero value otherwise.

func (*ServiceAllOf) GetProvisionedOnOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) GetSubscriptionId added in v1.0.5

func (o *ServiceAllOf) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*ServiceAllOf) GetSubscriptionIdOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) GetTenantId added in v1.0.5

func (o *ServiceAllOf) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ServiceAllOf) GetTenantIdOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) GetUserId added in v1.0.5

func (o *ServiceAllOf) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ServiceAllOf) GetUserIdOk added in v1.0.5

func (o *ServiceAllOf) 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 (*ServiceAllOf) HasCreatedOn added in v1.0.5

func (o *ServiceAllOf) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*ServiceAllOf) HasId added in v1.0.5

func (o *ServiceAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceAllOf) HasModifiedOn added in v1.0.5

func (o *ServiceAllOf) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*ServiceAllOf) HasProviderId added in v1.0.5

func (o *ServiceAllOf) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*ServiceAllOf) HasProvisionedOn added in v1.0.5

func (o *ServiceAllOf) HasProvisionedOn() bool

HasProvisionedOn returns a boolean if a field has been set.

func (*ServiceAllOf) HasSubscriptionId added in v1.0.5

func (o *ServiceAllOf) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*ServiceAllOf) HasTenantId added in v1.0.5

func (o *ServiceAllOf) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ServiceAllOf) HasUserId added in v1.0.5

func (o *ServiceAllOf) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ServiceAllOf) MarshalJSON added in v1.0.5

func (o ServiceAllOf) MarshalJSON() ([]byte, error)

func (*ServiceAllOf) SetCreatedOn added in v1.0.5

func (o *ServiceAllOf) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*ServiceAllOf) SetId added in v1.0.5

func (o *ServiceAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ServiceAllOf) SetModifiedOn added in v1.0.5

func (o *ServiceAllOf) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given NullableTime and assigns it to the ModifiedOn field.

func (*ServiceAllOf) SetModifiedOnNil added in v1.0.5

func (o *ServiceAllOf) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*ServiceAllOf) SetProviderId added in v1.0.5

func (o *ServiceAllOf) SetProviderId(v string)

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*ServiceAllOf) SetProvisionedOn added in v1.0.5

func (o *ServiceAllOf) SetProvisionedOn(v time.Time)

SetProvisionedOn gets a reference to the given time.Time and assigns it to the ProvisionedOn field.

func (*ServiceAllOf) SetSubscriptionId added in v1.0.5

func (o *ServiceAllOf) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*ServiceAllOf) SetTenantId added in v1.0.5

func (o *ServiceAllOf) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ServiceAllOf) SetUserId added in v1.0.5

func (o *ServiceAllOf) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (*ServiceAllOf) UnmarshalJSON added in v1.0.5

func (o *ServiceAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*ServiceAllOf) UnsetModifiedOn added in v1.0.5

func (o *ServiceAllOf) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

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]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   NullableServiceElementPrice `json:"pricingAtttributes,omitempty"`
	ChildElements        []ServiceElement            `json:"childElements,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetAllowedValues returns the AllowedValues field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceElement) GetAllowedValuesOk

func (o *ServiceElement) GetAllowedValuesOk() (*[]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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{})

SetAllowedValues gets a reference to the given []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 NullableServiceElementPrice and assigns it to the PricingAtttributes field.

func (*ServiceElement) SetPricingAtttributesNil added in v1.0.2

func (o *ServiceElement) SetPricingAtttributesNil()

SetPricingAtttributesNil sets the value for PricingAtttributes to be an explicit nil

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.

func (*ServiceElement) UnmarshalJSON added in v1.0.5

func (o *ServiceElement) UnmarshalJSON(bytes []byte) (err error)

func (*ServiceElement) UnsetPricingAtttributes added in v1.0.2

func (o *ServiceElement) UnsetPricingAtttributes()

UnsetPricingAtttributes ensures that no value is present for PricingAtttributes, not even an explicit nil

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"`
	AdditionalProperties    map[string]interface{}
}

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.

func (*ServiceElementPrice) UnmarshalJSON added in v1.0.5

func (o *ServiceElementPrice) UnmarshalJSON(bytes []byte) (err error)

type ServiceNowConfiguration added in v1.0.8

type ServiceNowConfiguration struct {
	Id                   *string        `json:"id,omitempty"`
	ClientId             *string        `json:"clientId,omitempty"`
	ClientSecret         *string        `json:"clientSecret,omitempty"`
	CriticalEvent        *bool          `json:"criticalEvent,omitempty"`
	Domain               *string        `json:"domain,omitempty"`
	Password             *string        `json:"password,omitempty"`
	UserName             *string        `json:"userName,omitempty"`
	TenantId             NullableString `json:"tenantId,omitempty"`
	Proxy                NullableString `json:"proxy,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceNowConfiguration struct for ServiceNowConfiguration

func NewServiceNowConfiguration added in v1.0.8

func NewServiceNowConfiguration() *ServiceNowConfiguration

NewServiceNowConfiguration instantiates a new ServiceNowConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceNowConfigurationWithDefaults added in v1.0.8

func NewServiceNowConfigurationWithDefaults() *ServiceNowConfiguration

NewServiceNowConfigurationWithDefaults instantiates a new ServiceNowConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceNowConfiguration) GetClientId added in v1.0.8

func (o *ServiceNowConfiguration) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetClientIdOk added in v1.0.8

func (o *ServiceNowConfiguration) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfiguration) GetClientSecret added in v1.0.8

func (o *ServiceNowConfiguration) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetClientSecretOk added in v1.0.8

func (o *ServiceNowConfiguration) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfiguration) GetCriticalEvent added in v1.0.8

func (o *ServiceNowConfiguration) GetCriticalEvent() bool

GetCriticalEvent returns the CriticalEvent field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetCriticalEventOk added in v1.0.8

func (o *ServiceNowConfiguration) GetCriticalEventOk() (*bool, bool)

GetCriticalEventOk returns a tuple with the CriticalEvent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfiguration) GetDomain added in v1.0.8

func (o *ServiceNowConfiguration) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetDomainOk added in v1.0.8

func (o *ServiceNowConfiguration) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfiguration) GetId added in v1.0.8

func (o *ServiceNowConfiguration) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetIdOk added in v1.0.8

func (o *ServiceNowConfiguration) 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 (*ServiceNowConfiguration) GetPassword added in v1.0.8

func (o *ServiceNowConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetPasswordOk added in v1.0.8

func (o *ServiceNowConfiguration) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfiguration) GetProxy added in v1.0.8

func (o *ServiceNowConfiguration) GetProxy() string

GetProxy returns the Proxy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfiguration) GetProxyOk added in v1.0.8

func (o *ServiceNowConfiguration) GetProxyOk() (*string, bool)

GetProxyOk returns a tuple with the Proxy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfiguration) GetTenantId added in v1.0.8

func (o *ServiceNowConfiguration) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfiguration) GetTenantIdOk added in v1.0.8

func (o *ServiceNowConfiguration) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfiguration) GetUserName added in v1.0.8

func (o *ServiceNowConfiguration) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*ServiceNowConfiguration) GetUserNameOk added in v1.0.8

func (o *ServiceNowConfiguration) 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 (*ServiceNowConfiguration) HasClientId added in v1.0.8

func (o *ServiceNowConfiguration) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasClientSecret added in v1.0.8

func (o *ServiceNowConfiguration) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasCriticalEvent added in v1.0.8

func (o *ServiceNowConfiguration) HasCriticalEvent() bool

HasCriticalEvent returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasDomain added in v1.0.8

func (o *ServiceNowConfiguration) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasId added in v1.0.8

func (o *ServiceNowConfiguration) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasPassword added in v1.0.8

func (o *ServiceNowConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasProxy added in v1.0.8

func (o *ServiceNowConfiguration) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasTenantId added in v1.0.8

func (o *ServiceNowConfiguration) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ServiceNowConfiguration) HasUserName added in v1.0.8

func (o *ServiceNowConfiguration) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (ServiceNowConfiguration) MarshalJSON added in v1.0.8

func (o ServiceNowConfiguration) MarshalJSON() ([]byte, error)

func (*ServiceNowConfiguration) SetClientId added in v1.0.8

func (o *ServiceNowConfiguration) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*ServiceNowConfiguration) SetClientSecret added in v1.0.8

func (o *ServiceNowConfiguration) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*ServiceNowConfiguration) SetCriticalEvent added in v1.0.8

func (o *ServiceNowConfiguration) SetCriticalEvent(v bool)

SetCriticalEvent gets a reference to the given bool and assigns it to the CriticalEvent field.

func (*ServiceNowConfiguration) SetDomain added in v1.0.8

func (o *ServiceNowConfiguration) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*ServiceNowConfiguration) SetId added in v1.0.8

func (o *ServiceNowConfiguration) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ServiceNowConfiguration) SetPassword added in v1.0.8

func (o *ServiceNowConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ServiceNowConfiguration) SetProxy added in v1.0.8

func (o *ServiceNowConfiguration) SetProxy(v string)

SetProxy gets a reference to the given NullableString and assigns it to the Proxy field.

func (*ServiceNowConfiguration) SetProxyNil added in v1.0.8

func (o *ServiceNowConfiguration) SetProxyNil()

SetProxyNil sets the value for Proxy to be an explicit nil

func (*ServiceNowConfiguration) SetTenantId added in v1.0.8

func (o *ServiceNowConfiguration) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*ServiceNowConfiguration) SetTenantIdNil added in v1.0.8

func (o *ServiceNowConfiguration) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ServiceNowConfiguration) SetUserName added in v1.0.8

func (o *ServiceNowConfiguration) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*ServiceNowConfiguration) UnmarshalJSON added in v1.0.8

func (o *ServiceNowConfiguration) UnmarshalJSON(bytes []byte) (err error)

func (*ServiceNowConfiguration) UnsetProxy added in v1.0.8

func (o *ServiceNowConfiguration) UnsetProxy()

UnsetProxy ensures that no value is present for Proxy, not even an explicit nil

func (*ServiceNowConfiguration) UnsetTenantId added in v1.0.8

func (o *ServiceNowConfiguration) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ServiceNowConfigurationCreate added in v1.0.8

type ServiceNowConfigurationCreate struct {
	ClientId             *string        `json:"clientId,omitempty"`
	ClientSecret         *string        `json:"clientSecret,omitempty"`
	CriticalEvent        *bool          `json:"criticalEvent,omitempty"`
	Domain               *string        `json:"domain,omitempty"`
	Password             *string        `json:"password,omitempty"`
	UserName             *string        `json:"userName,omitempty"`
	TenantId             NullableString `json:"tenantId,omitempty"`
	Proxy                NullableString `json:"proxy,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceNowConfigurationCreate struct for ServiceNowConfigurationCreate

func NewServiceNowConfigurationCreate added in v1.0.8

func NewServiceNowConfigurationCreate() *ServiceNowConfigurationCreate

NewServiceNowConfigurationCreate instantiates a new ServiceNowConfigurationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceNowConfigurationCreateWithDefaults added in v1.0.8

func NewServiceNowConfigurationCreateWithDefaults() *ServiceNowConfigurationCreate

NewServiceNowConfigurationCreateWithDefaults instantiates a new ServiceNowConfigurationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceNowConfigurationCreate) GetClientId added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*ServiceNowConfigurationCreate) GetClientIdOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationCreate) GetClientSecret added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*ServiceNowConfigurationCreate) GetClientSecretOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationCreate) GetCriticalEvent added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetCriticalEvent() bool

GetCriticalEvent returns the CriticalEvent field value if set, zero value otherwise.

func (*ServiceNowConfigurationCreate) GetCriticalEventOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetCriticalEventOk() (*bool, bool)

GetCriticalEventOk returns a tuple with the CriticalEvent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationCreate) GetDomain added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*ServiceNowConfigurationCreate) GetDomainOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationCreate) GetPassword added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ServiceNowConfigurationCreate) GetPasswordOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationCreate) GetProxy added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetProxy() string

GetProxy returns the Proxy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationCreate) GetProxyOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetProxyOk() (*string, bool)

GetProxyOk returns a tuple with the Proxy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationCreate) GetTenantId added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationCreate) GetTenantIdOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationCreate) GetUserName added in v1.0.8

func (o *ServiceNowConfigurationCreate) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*ServiceNowConfigurationCreate) GetUserNameOk added in v1.0.8

func (o *ServiceNowConfigurationCreate) 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 (*ServiceNowConfigurationCreate) HasClientId added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasClientSecret added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasCriticalEvent added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasCriticalEvent() bool

HasCriticalEvent returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasDomain added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasPassword added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasProxy added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasTenantId added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ServiceNowConfigurationCreate) HasUserName added in v1.0.8

func (o *ServiceNowConfigurationCreate) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (ServiceNowConfigurationCreate) MarshalJSON added in v1.0.8

func (o ServiceNowConfigurationCreate) MarshalJSON() ([]byte, error)

func (*ServiceNowConfigurationCreate) SetClientId added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*ServiceNowConfigurationCreate) SetClientSecret added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*ServiceNowConfigurationCreate) SetCriticalEvent added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetCriticalEvent(v bool)

SetCriticalEvent gets a reference to the given bool and assigns it to the CriticalEvent field.

func (*ServiceNowConfigurationCreate) SetDomain added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*ServiceNowConfigurationCreate) SetPassword added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ServiceNowConfigurationCreate) SetProxy added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetProxy(v string)

SetProxy gets a reference to the given NullableString and assigns it to the Proxy field.

func (*ServiceNowConfigurationCreate) SetProxyNil added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetProxyNil()

SetProxyNil sets the value for Proxy to be an explicit nil

func (*ServiceNowConfigurationCreate) SetTenantId added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*ServiceNowConfigurationCreate) SetTenantIdNil added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ServiceNowConfigurationCreate) SetUserName added in v1.0.8

func (o *ServiceNowConfigurationCreate) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*ServiceNowConfigurationCreate) UnmarshalJSON added in v1.0.8

func (o *ServiceNowConfigurationCreate) UnmarshalJSON(bytes []byte) (err error)

func (*ServiceNowConfigurationCreate) UnsetProxy added in v1.0.8

func (o *ServiceNowConfigurationCreate) UnsetProxy()

UnsetProxy ensures that no value is present for Proxy, not even an explicit nil

func (*ServiceNowConfigurationCreate) UnsetTenantId added in v1.0.8

func (o *ServiceNowConfigurationCreate) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ServiceNowConfigurationRequest added in v1.0.8

type ServiceNowConfigurationRequest struct {
	ClientId             *string        `json:"clientId,omitempty"`
	ClientSecret         *string        `json:"clientSecret,omitempty"`
	CriticalEvent        *bool          `json:"criticalEvent,omitempty"`
	Domain               *string        `json:"domain,omitempty"`
	Password             *string        `json:"password,omitempty"`
	UserName             *string        `json:"userName,omitempty"`
	TenantId             NullableString `json:"tenantId,omitempty"`
	Proxy                NullableString `json:"proxy,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceNowConfigurationRequest struct for ServiceNowConfigurationRequest

func NewServiceNowConfigurationRequest added in v1.0.8

func NewServiceNowConfigurationRequest() *ServiceNowConfigurationRequest

NewServiceNowConfigurationRequest instantiates a new ServiceNowConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceNowConfigurationRequestWithDefaults added in v1.0.8

func NewServiceNowConfigurationRequestWithDefaults() *ServiceNowConfigurationRequest

NewServiceNowConfigurationRequestWithDefaults instantiates a new ServiceNowConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceNowConfigurationRequest) GetClientId added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*ServiceNowConfigurationRequest) GetClientIdOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationRequest) GetClientSecret added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*ServiceNowConfigurationRequest) GetClientSecretOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationRequest) GetCriticalEvent added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetCriticalEvent() bool

GetCriticalEvent returns the CriticalEvent field value if set, zero value otherwise.

func (*ServiceNowConfigurationRequest) GetCriticalEventOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetCriticalEventOk() (*bool, bool)

GetCriticalEventOk returns a tuple with the CriticalEvent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationRequest) GetDomain added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*ServiceNowConfigurationRequest) GetDomainOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetDomainOk() (*string, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationRequest) GetPassword added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ServiceNowConfigurationRequest) GetPasswordOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceNowConfigurationRequest) GetProxy added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetProxy() string

GetProxy returns the Proxy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationRequest) GetProxyOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetProxyOk() (*string, bool)

GetProxyOk returns a tuple with the Proxy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationRequest) GetTenantId added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationRequest) GetTenantIdOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationRequest) GetUserName added in v1.0.8

func (o *ServiceNowConfigurationRequest) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*ServiceNowConfigurationRequest) GetUserNameOk added in v1.0.8

func (o *ServiceNowConfigurationRequest) 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 (*ServiceNowConfigurationRequest) HasClientId added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasClientSecret added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasCriticalEvent added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasCriticalEvent() bool

HasCriticalEvent returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasDomain added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasPassword added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasProxy added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasProxy() bool

HasProxy returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasTenantId added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ServiceNowConfigurationRequest) HasUserName added in v1.0.8

func (o *ServiceNowConfigurationRequest) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (ServiceNowConfigurationRequest) MarshalJSON added in v1.0.8

func (o ServiceNowConfigurationRequest) MarshalJSON() ([]byte, error)

func (*ServiceNowConfigurationRequest) SetClientId added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*ServiceNowConfigurationRequest) SetClientSecret added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*ServiceNowConfigurationRequest) SetCriticalEvent added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetCriticalEvent(v bool)

SetCriticalEvent gets a reference to the given bool and assigns it to the CriticalEvent field.

func (*ServiceNowConfigurationRequest) SetDomain added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*ServiceNowConfigurationRequest) SetPassword added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ServiceNowConfigurationRequest) SetProxy added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetProxy(v string)

SetProxy gets a reference to the given NullableString and assigns it to the Proxy field.

func (*ServiceNowConfigurationRequest) SetProxyNil added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetProxyNil()

SetProxyNil sets the value for Proxy to be an explicit nil

func (*ServiceNowConfigurationRequest) SetTenantId added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetTenantId(v string)

SetTenantId gets a reference to the given NullableString and assigns it to the TenantId field.

func (*ServiceNowConfigurationRequest) SetTenantIdNil added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetTenantIdNil()

SetTenantIdNil sets the value for TenantId to be an explicit nil

func (*ServiceNowConfigurationRequest) SetUserName added in v1.0.8

func (o *ServiceNowConfigurationRequest) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*ServiceNowConfigurationRequest) UnmarshalJSON added in v1.0.8

func (o *ServiceNowConfigurationRequest) UnmarshalJSON(bytes []byte) (err error)

func (*ServiceNowConfigurationRequest) UnsetProxy added in v1.0.8

func (o *ServiceNowConfigurationRequest) UnsetProxy()

UnsetProxy ensures that no value is present for Proxy, not even an explicit nil

func (*ServiceNowConfigurationRequest) UnsetTenantId added in v1.0.8

func (o *ServiceNowConfigurationRequest) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

type ServiceNowConfigurationsPage added in v1.0.8

type ServiceNowConfigurationsPage struct {
	Page                 *int32                     `json:"page,omitempty"`
	PageSize             *int32                     `json:"pageSize,omitempty"`
	TotalItems           NullableInt64              `json:"totalItems,omitempty"`
	HasNext              NullableBool               `json:"hasNext,omitempty"`
	HasPrevious          NullableBool               `json:"hasPrevious,omitempty"`
	SortBy               NullableString             `json:"sortBy,omitempty"`
	SortOrder            NullableString             `json:"sortOrder,omitempty"`
	Contents             *[]ServiceNowConfiguration `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceNowConfigurationsPage struct for ServiceNowConfigurationsPage

func NewServiceNowConfigurationsPage added in v1.0.8

func NewServiceNowConfigurationsPage() *ServiceNowConfigurationsPage

NewServiceNowConfigurationsPage instantiates a new ServiceNowConfigurationsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceNowConfigurationsPageWithDefaults added in v1.0.8

func NewServiceNowConfigurationsPageWithDefaults() *ServiceNowConfigurationsPage

NewServiceNowConfigurationsPageWithDefaults instantiates a new ServiceNowConfigurationsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceNowConfigurationsPage) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*ServiceNowConfigurationsPage) GetContentsOk added in v1.0.8

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 (*ServiceNowConfigurationsPage) GetHasNext added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationsPage) GetHasNextOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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 (*ServiceNowConfigurationsPage) GetHasPrevious added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationsPage) GetHasPreviousOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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 (*ServiceNowConfigurationsPage) GetPage added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*ServiceNowConfigurationsPage) GetPageOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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 (*ServiceNowConfigurationsPage) GetPageSize added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*ServiceNowConfigurationsPage) GetPageSizeOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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 (*ServiceNowConfigurationsPage) GetSortBy added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationsPage) GetSortByOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationsPage) GetSortOrder added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationsPage) GetSortOrderOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationsPage) GetTotalItems added in v1.0.8

func (o *ServiceNowConfigurationsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServiceNowConfigurationsPage) GetTotalItemsOk added in v1.0.8

func (o *ServiceNowConfigurationsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServiceNowConfigurationsPage) HasContents added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasHasNext added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasHasPrevious added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasPage added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasPageSize added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasSortBy added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasSortOrder added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*ServiceNowConfigurationsPage) HasTotalItems added in v1.0.8

func (o *ServiceNowConfigurationsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ServiceNowConfigurationsPage) MarshalJSON added in v1.0.8

func (o ServiceNowConfigurationsPage) MarshalJSON() ([]byte, error)

func (*ServiceNowConfigurationsPage) SetContents added in v1.0.8

SetContents gets a reference to the given []ServiceNowConfiguration and assigns it to the Contents field.

func (*ServiceNowConfigurationsPage) SetHasNext added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*ServiceNowConfigurationsPage) SetHasNextNil added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*ServiceNowConfigurationsPage) SetHasPrevious added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*ServiceNowConfigurationsPage) SetHasPreviousNil added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*ServiceNowConfigurationsPage) SetPage added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*ServiceNowConfigurationsPage) SetPageSize added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*ServiceNowConfigurationsPage) SetSortBy added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*ServiceNowConfigurationsPage) SetSortByNil added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*ServiceNowConfigurationsPage) SetSortOrder added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*ServiceNowConfigurationsPage) SetSortOrderNil added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*ServiceNowConfigurationsPage) SetTotalItems added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*ServiceNowConfigurationsPage) SetTotalItemsNil added in v1.0.8

func (o *ServiceNowConfigurationsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*ServiceNowConfigurationsPage) UnmarshalJSON added in v1.0.8

func (o *ServiceNowConfigurationsPage) UnmarshalJSON(bytes []byte) (err error)

func (*ServiceNowConfigurationsPage) UnsetHasNext added in v1.0.8

func (o *ServiceNowConfigurationsPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*ServiceNowConfigurationsPage) UnsetHasPrevious added in v1.0.8

func (o *ServiceNowConfigurationsPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*ServiceNowConfigurationsPage) UnsetSortBy added in v1.0.8

func (o *ServiceNowConfigurationsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*ServiceNowConfigurationsPage) UnsetSortOrder added in v1.0.8

func (o *ServiceNowConfigurationsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*ServiceNowConfigurationsPage) UnsetTotalItems added in v1.0.8

func (o *ServiceNowConfigurationsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type ServiceNowConfigurationsPageAllOf added in v1.0.8

type ServiceNowConfigurationsPageAllOf struct {
	Contents             *[]ServiceNowConfiguration `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceNowConfigurationsPageAllOf struct for ServiceNowConfigurationsPageAllOf

func NewServiceNowConfigurationsPageAllOf added in v1.0.8

func NewServiceNowConfigurationsPageAllOf() *ServiceNowConfigurationsPageAllOf

NewServiceNowConfigurationsPageAllOf instantiates a new ServiceNowConfigurationsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceNowConfigurationsPageAllOfWithDefaults added in v1.0.8

func NewServiceNowConfigurationsPageAllOfWithDefaults() *ServiceNowConfigurationsPageAllOf

NewServiceNowConfigurationsPageAllOfWithDefaults instantiates a new ServiceNowConfigurationsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceNowConfigurationsPageAllOf) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*ServiceNowConfigurationsPageAllOf) GetContentsOk added in v1.0.8

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 (*ServiceNowConfigurationsPageAllOf) HasContents added in v1.0.8

func (o *ServiceNowConfigurationsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (ServiceNowConfigurationsPageAllOf) MarshalJSON added in v1.0.8

func (o ServiceNowConfigurationsPageAllOf) MarshalJSON() ([]byte, error)

func (*ServiceNowConfigurationsPageAllOf) SetContents added in v1.0.8

SetContents gets a reference to the given []ServiceNowConfiguration and assigns it to the Contents field.

func (*ServiceNowConfigurationsPageAllOf) UnmarshalJSON added in v1.0.8

func (o *ServiceNowConfigurationsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type ServiceSLMUIConfig added in v1.0.8

type ServiceSLMUIConfig struct {
	Type                 *string              `json:"type,omitempty"`
	Resources            *[]ServiceUIResource `json:"resources,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceSLMUIConfig struct for ServiceSLMUIConfig

func NewServiceSLMUIConfig added in v1.0.8

func NewServiceSLMUIConfig() *ServiceSLMUIConfig

NewServiceSLMUIConfig instantiates a new ServiceSLMUIConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceSLMUIConfigWithDefaults added in v1.0.8

func NewServiceSLMUIConfigWithDefaults() *ServiceSLMUIConfig

NewServiceSLMUIConfigWithDefaults instantiates a new ServiceSLMUIConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceSLMUIConfig) GetResources added in v1.0.8

func (o *ServiceSLMUIConfig) GetResources() []ServiceUIResource

GetResources returns the Resources field value if set, zero value otherwise.

func (*ServiceSLMUIConfig) GetResourcesOk added in v1.0.8

func (o *ServiceSLMUIConfig) GetResourcesOk() (*[]ServiceUIResource, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceSLMUIConfig) GetType added in v1.0.8

func (o *ServiceSLMUIConfig) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ServiceSLMUIConfig) GetTypeOk added in v1.0.8

func (o *ServiceSLMUIConfig) 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 (*ServiceSLMUIConfig) HasResources added in v1.0.8

func (o *ServiceSLMUIConfig) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*ServiceSLMUIConfig) HasType added in v1.0.8

func (o *ServiceSLMUIConfig) HasType() bool

HasType returns a boolean if a field has been set.

func (ServiceSLMUIConfig) MarshalJSON added in v1.0.8

func (o ServiceSLMUIConfig) MarshalJSON() ([]byte, error)

func (*ServiceSLMUIConfig) SetResources added in v1.0.8

func (o *ServiceSLMUIConfig) SetResources(v []ServiceUIResource)

SetResources gets a reference to the given []ServiceUIResource and assigns it to the Resources field.

func (*ServiceSLMUIConfig) SetType added in v1.0.8

func (o *ServiceSLMUIConfig) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ServiceSLMUIConfig) UnmarshalJSON added in v1.0.8

func (o *ServiceSLMUIConfig) UnmarshalJSON(bytes []byte) (err error)

type ServiceUIConfig

type ServiceUIConfig struct {
	BannerImage          *string          `json:"bannerImage,omitempty"`
	Links                *[]ServiceUILink `json:"links,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*ServiceUIConfig) UnmarshalJSON added in v1.0.5

func (o *ServiceUIConfig) UnmarshalJSON(bytes []byte) (err error)
type ServiceUILink struct {
	Type                 *string `json:"type,omitempty"`
	Label                *string `json:"label,omitempty"`
	Address              *string `json:"address,omitempty"`
	Target               *string `json:"target,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*ServiceUILink) UnmarshalJSON added in v1.0.5

func (o *ServiceUILink) UnmarshalJSON(bytes []byte) (err error)

type ServiceUIResource added in v1.0.8

type ServiceUIResource struct {
	Type                 *string `json:"type,omitempty"`
	Href                 *string `json:"href,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceUIResource struct for ServiceUIResource

func NewServiceUIResource added in v1.0.8

func NewServiceUIResource() *ServiceUIResource

NewServiceUIResource instantiates a new ServiceUIResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceUIResourceWithDefaults added in v1.0.8

func NewServiceUIResourceWithDefaults() *ServiceUIResource

NewServiceUIResourceWithDefaults instantiates a new ServiceUIResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceUIResource) GetHref added in v1.0.8

func (o *ServiceUIResource) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ServiceUIResource) GetHrefOk added in v1.0.8

func (o *ServiceUIResource) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceUIResource) GetType added in v1.0.8

func (o *ServiceUIResource) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ServiceUIResource) GetTypeOk added in v1.0.8

func (o *ServiceUIResource) 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 (*ServiceUIResource) HasHref added in v1.0.8

func (o *ServiceUIResource) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ServiceUIResource) HasType added in v1.0.8

func (o *ServiceUIResource) HasType() bool

HasType returns a boolean if a field has been set.

func (ServiceUIResource) MarshalJSON added in v1.0.8

func (o ServiceUIResource) MarshalJSON() ([]byte, error)

func (*ServiceUIResource) SetHref added in v1.0.8

func (o *ServiceUIResource) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ServiceUIResource) SetType added in v1.0.8

func (o *ServiceUIResource) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ServiceUIResource) UnmarshalJSON added in v1.0.8

func (o *ServiceUIResource) UnmarshalJSON(bytes []byte) (err error)

type ServiceUpdate added in v1.0.5

type ServiceUpdate struct {
	Status               *map[string]interface{} `json:"status,omitempty"`
	DefinitionAttributes *map[string]interface{} `json:"definitionAttributes,omitempty"`
	Attributes           *map[string]interface{} `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

ServiceUpdate struct for ServiceUpdate

func NewServiceUpdate added in v1.0.5

func NewServiceUpdate() *ServiceUpdate

NewServiceUpdate instantiates a new ServiceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceUpdateWithDefaults added in v1.0.5

func NewServiceUpdateWithDefaults() *ServiceUpdate

NewServiceUpdateWithDefaults instantiates a new ServiceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceUpdate) GetAttributes added in v1.0.5

func (o *ServiceUpdate) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ServiceUpdate) GetAttributesOk added in v1.0.5

func (o *ServiceUpdate) GetAttributesOk() (*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 (*ServiceUpdate) GetDefinitionAttributes added in v1.0.5

func (o *ServiceUpdate) GetDefinitionAttributes() map[string]interface{}

GetDefinitionAttributes returns the DefinitionAttributes field value if set, zero value otherwise.

func (*ServiceUpdate) GetDefinitionAttributesOk added in v1.0.5

func (o *ServiceUpdate) GetDefinitionAttributesOk() (*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 (*ServiceUpdate) GetStatus added in v1.0.5

func (o *ServiceUpdate) GetStatus() map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*ServiceUpdate) GetStatusOk added in v1.0.5

func (o *ServiceUpdate) GetStatusOk() (*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 (*ServiceUpdate) HasAttributes added in v1.0.5

func (o *ServiceUpdate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ServiceUpdate) HasDefinitionAttributes added in v1.0.5

func (o *ServiceUpdate) HasDefinitionAttributes() bool

HasDefinitionAttributes returns a boolean if a field has been set.

func (*ServiceUpdate) HasStatus added in v1.0.5

func (o *ServiceUpdate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ServiceUpdate) MarshalJSON added in v1.0.5

func (o ServiceUpdate) MarshalJSON() ([]byte, error)

func (*ServiceUpdate) SetAttributes added in v1.0.5

func (o *ServiceUpdate) SetAttributes(v map[string]interface{})

SetAttributes gets a reference to the given map[string]interface{} and assigns it to the Attributes field.

func (*ServiceUpdate) SetDefinitionAttributes added in v1.0.5

func (o *ServiceUpdate) SetDefinitionAttributes(v map[string]interface{})

SetDefinitionAttributes gets a reference to the given map[string]interface{} and assigns it to the DefinitionAttributes field.

func (*ServiceUpdate) SetStatus added in v1.0.5

func (o *ServiceUpdate) SetStatus(v map[string]interface{})

SetStatus gets a reference to the given map[string]interface{} and assigns it to the Status field.

func (*ServiceUpdate) UnmarshalJSON added in v1.0.5

func (o *ServiceUpdate) UnmarshalJSON(bytes []byte) (err error)

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

func (*ServicesApiService) UpdateService added in v1.0.5

* UpdateService Updates a service. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateServiceRequest

func (*ServicesApiService) UpdateServiceExecute added in v1.0.5

func (a *ServicesApiService) UpdateServiceExecute(r ApiUpdateServiceRequest) (Service, *_nethttp.Response, error)

* Execute executes the request * @return Service

type ServicesPage

type ServicesPage struct {
	Page                 *int32         `json:"page,omitempty"`
	PageSize             *int32         `json:"pageSize,omitempty"`
	TotalItems           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Service     `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServicesPage) GetSortOrder

func (o *ServicesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServicesPage) GetTotalItems

func (o *ServicesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*ServicesPage) SetSortByNil added in v1.0.2

func (o *ServicesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*ServicesPage) SetSortOrder

func (o *ServicesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*ServicesPage) SetSortOrderNil added in v1.0.2

func (o *ServicesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*ServicesPage) SetTotalItems

func (o *ServicesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*ServicesPage) SetTotalItemsNil added in v1.0.2

func (o *ServicesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*ServicesPage) UnmarshalJSON added in v1.0.5

func (o *ServicesPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*ServicesPage) UnsetSortBy added in v1.0.2

func (o *ServicesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*ServicesPage) UnsetSortOrder added in v1.0.2

func (o *ServicesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*ServicesPage) UnsetTotalItems added in v1.0.2

func (o *ServicesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type ServicesPageAllOf

type ServicesPageAllOf struct {
	Contents             *[]Service `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*ServicesPageAllOf) UnmarshalJSON added in v1.0.5

func (o *ServicesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type Site

type Site struct {
	Id                   *string              `json:"id,omitempty"`
	TenantId             *string              `json:"tenantId,omitempty"`
	ParentId             NullableString       `json:"parentId,omitempty"`
	Name                 *string              `json:"name,omitempty"`
	Type                 NullableString       `json:"type,omitempty"`
	Description          NullableString       `json:"description,omitempty"`
	Address              NullableSiteAddress  `json:"address,omitempty"`
	Contact              NullableSiteContact  `json:"contact,omitempty"`
	Image                NullableString       `json:"image,omitempty"`
	Attributes           map[string]string    `json:"attributes,omitempty"`
	Devices              *[]DeviceSummary     `json:"devices,omitempty"`
	ServiceIds           *[]string            `json:"serviceIds,omitempty"`
	Location             NullableSiteLocation `json:"location,omitempty"`
	Status               *SiteStatus          `json:"status,omitempty"`
	CreatedOn            *time.Time           `json:"createdOn,omitempty"`
	CreatedBy            *string              `json:"createdBy,omitempty"`
	ModifiedOn           NullableTime         `json:"modifiedOn,omitempty"`
	ModifiedBy           *string              `json:"modifiedBy,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Site) GetLocation

func (o *Site) GetLocation() SiteLocation

GetLocation returns the Location field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Site) GetServiceIds added in v1.0.2

func (o *Site) GetServiceIds() []string

GetServiceIds returns the ServiceIds field value if set, zero value otherwise.

func (*Site) GetServiceIdsOk added in v1.0.2

func (o *Site) 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 (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasServiceIds added in v1.0.2

func (o *Site) HasServiceIds() bool

HasServiceIds 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 NullableString and assigns it to the Description field.

func (*Site) SetDescriptionNil added in v1.0.5

func (o *Site) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

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 NullableString and assigns it to the Image field.

func (*Site) SetImageNil added in v1.0.2

func (o *Site) SetImageNil()

SetImageNil sets the value for Image to be an explicit nil

func (*Site) SetLocation

func (o *Site) SetLocation(v SiteLocation)

SetLocation gets a reference to the given NullableSiteLocation and assigns it to the Location field.

func (*Site) SetLocationNil added in v1.0.2

func (o *Site) SetLocationNil()

SetLocationNil sets the value for Location to be an explicit nil

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 NullableTime and assigns it to the ModifiedOn field.

func (*Site) SetModifiedOnNil added in v1.0.5

func (o *Site) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

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 NullableString and assigns it to the ParentId field.

func (*Site) SetParentIdNil added in v1.0.2

func (o *Site) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (*Site) SetServiceIds added in v1.0.2

func (o *Site) SetServiceIds(v []string)

SetServiceIds gets a reference to the given []string and assigns it to the ServiceIds 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 NullableString and assigns it to the Type field.

func (*Site) SetTypeNil added in v1.0.2

func (o *Site) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*Site) UnmarshalJSON added in v1.0.5

func (o *Site) UnmarshalJSON(bytes []byte) (err error)

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

func (*Site) UnsetDescription added in v1.0.5

func (o *Site) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Site) UnsetImage added in v1.0.2

func (o *Site) UnsetImage()

UnsetImage ensures that no value is present for Image, not even an explicit nil

func (*Site) UnsetLocation added in v1.0.2

func (o *Site) UnsetLocation()

UnsetLocation ensures that no value is present for Location, not even an explicit nil

func (*Site) UnsetModifiedOn added in v1.0.5

func (o *Site) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*Site) UnsetParentId added in v1.0.2

func (o *Site) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

func (*Site) UnsetType added in v1.0.2

func (o *Site) UnsetType()

UnsetType ensures that no value is present for Type, 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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*SiteAddress) UnmarshalJSON added in v1.0.5

func (o *SiteAddress) UnmarshalJSON(bytes []byte) (err error)

type SiteContact

type SiteContact struct {
	Name                 string  `json:"name"`
	Phone                string  `json:"phone"`
	Email                *string `json:"email,omitempty"`
	AdditionalProperties map[string]interface{}
}

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

func (*SiteContact) UnmarshalJSON added in v1.0.5

func (o *SiteContact) UnmarshalJSON(bytes []byte) (err error)

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          NullableString       `json:"description,omitempty"`
	Type                 *string              `json:"type,omitempty"`
	Address              NullableSiteAddress  `json:"address,omitempty"`
	Contact              NullableSiteContact  `json:"contact,omitempty"`
	Location             NullableSiteLocation `json:"location,omitempty"`
	Image                *string              `json:"image,omitempty"`
	Attributes           *map[string]string   `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Description field.

func (*SiteCreate) SetDescriptionNil added in v1.0.5

func (o *SiteCreate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

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 NullableSiteLocation and assigns it to the Location field.

func (*SiteCreate) SetLocationNil added in v1.0.2

func (o *SiteCreate) SetLocationNil()

SetLocationNil sets the value for Location to be an explicit nil

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) UnmarshalJSON added in v1.0.5

func (o *SiteCreate) UnmarshalJSON(bytes []byte) (err error)

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

func (*SiteCreate) UnsetDescription added in v1.0.5

func (o *SiteCreate) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*SiteCreate) UnsetLocation added in v1.0.2

func (o *SiteCreate) UnsetLocation()

UnsetLocation ensures that no value is present for Location, not even an explicit nil

type SiteCreateAllOf

type SiteCreateAllOf struct {
	TenantId             string    `json:"tenantId"`
	DeviceIds            *[]string `json:"deviceIds,omitempty"`
	ServiceIds           *[]string `json:"serviceIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

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

func (*SiteCreateAllOf) UnmarshalJSON added in v1.0.5

func (o *SiteCreateAllOf) UnmarshalJSON(bytes []byte) (err error)

type SiteLocation

type SiteLocation struct {
	Latitude             float64 `json:"latitude"`
	Longitude            float64 `json:"longitude"`
	AdditionalProperties map[string]interface{}
}

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

func (*SiteLocation) UnmarshalJSON added in v1.0.5

func (o *SiteLocation) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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

func (*SiteStatus) UnmarshalJSON added in v1.0.5

func (o *SiteStatus) UnmarshalJSON(bytes []byte) (err error)

type SiteUpdate

type SiteUpdate struct {
	ParentId             *string              `json:"parentId,omitempty"`
	Name                 string               `json:"name"`
	Description          NullableString       `json:"description,omitempty"`
	Type                 *string              `json:"type,omitempty"`
	Address              NullableSiteAddress  `json:"address,omitempty"`
	Contact              NullableSiteContact  `json:"contact,omitempty"`
	Location             NullableSiteLocation `json:"location,omitempty"`
	Image                *string              `json:"image,omitempty"`
	Attributes           *map[string]string   `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Description field.

func (*SiteUpdate) SetDescriptionNil added in v1.0.5

func (o *SiteUpdate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

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 NullableSiteLocation and assigns it to the Location field.

func (*SiteUpdate) SetLocationNil added in v1.0.2

func (o *SiteUpdate) SetLocationNil()

SetLocationNil sets the value for Location to be an explicit nil

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) UnmarshalJSON added in v1.0.5

func (o *SiteUpdate) UnmarshalJSON(bytes []byte) (err error)

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

func (*SiteUpdate) UnsetDescription added in v1.0.5

func (o *SiteUpdate) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*SiteUpdate) UnsetLocation added in v1.0.2

func (o *SiteUpdate) UnsetLocation()

UnsetLocation ensures that no value is present for Location, 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           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Site        `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SitesPage) GetSortOrder

func (o *SitesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SitesPage) GetTotalItems

func (o *SitesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*SitesPage) SetSortByNil added in v1.0.2

func (o *SitesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*SitesPage) SetSortOrder

func (o *SitesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*SitesPage) SetSortOrderNil added in v1.0.2

func (o *SitesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*SitesPage) SetTotalItems

func (o *SitesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*SitesPage) SetTotalItemsNil added in v1.0.2

func (o *SitesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*SitesPage) UnmarshalJSON added in v1.0.5

func (o *SitesPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*SitesPage) UnsetSortBy added in v1.0.2

func (o *SitesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*SitesPage) UnsetSortOrder added in v1.0.2

func (o *SitesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*SitesPage) UnsetTotalItems added in v1.0.2

func (o *SitesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type SitesPageAllOf

type SitesPageAllOf struct {
	Contents             *[]Site `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*SitesPageAllOf) UnmarshalJSON added in v1.0.5

func (o *SitesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type SmartAccountConfiguration added in v1.0.8

type SmartAccountConfiguration struct {
	Id                   *string `json:"id,omitempty"`
	BaseAuthUrl          *string `json:"baseAuthUrl,omitempty"`
	BaseSmartUrl         *string `json:"baseSmartUrl,omitempty"`
	ContentType          *string `json:"contentType,omitempty"`
	GrantType            *string `json:"grantType,omitempty"`
	ClientId             *string `json:"clientId,omitempty"`
	ClientSecret         *string `json:"clientSecret,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartAccountConfiguration struct for SmartAccountConfiguration

func NewSmartAccountConfiguration added in v1.0.8

func NewSmartAccountConfiguration() *SmartAccountConfiguration

NewSmartAccountConfiguration instantiates a new SmartAccountConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartAccountConfigurationWithDefaults added in v1.0.8

func NewSmartAccountConfigurationWithDefaults() *SmartAccountConfiguration

NewSmartAccountConfigurationWithDefaults instantiates a new SmartAccountConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartAccountConfiguration) GetBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfiguration) GetBaseAuthUrl() string

GetBaseAuthUrl returns the BaseAuthUrl field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetBaseAuthUrlOk added in v1.0.8

func (o *SmartAccountConfiguration) GetBaseAuthUrlOk() (*string, bool)

GetBaseAuthUrlOk returns a tuple with the BaseAuthUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfiguration) GetBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfiguration) GetBaseSmartUrl() string

GetBaseSmartUrl returns the BaseSmartUrl field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetBaseSmartUrlOk added in v1.0.8

func (o *SmartAccountConfiguration) GetBaseSmartUrlOk() (*string, bool)

GetBaseSmartUrlOk returns a tuple with the BaseSmartUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfiguration) GetClientId added in v1.0.8

func (o *SmartAccountConfiguration) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetClientIdOk added in v1.0.8

func (o *SmartAccountConfiguration) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfiguration) GetClientSecret added in v1.0.8

func (o *SmartAccountConfiguration) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetClientSecretOk added in v1.0.8

func (o *SmartAccountConfiguration) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfiguration) GetContentType added in v1.0.8

func (o *SmartAccountConfiguration) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetContentTypeOk added in v1.0.8

func (o *SmartAccountConfiguration) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfiguration) GetGrantType added in v1.0.8

func (o *SmartAccountConfiguration) GetGrantType() string

GetGrantType returns the GrantType field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetGrantTypeOk added in v1.0.8

func (o *SmartAccountConfiguration) GetGrantTypeOk() (*string, bool)

GetGrantTypeOk returns a tuple with the GrantType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfiguration) GetId added in v1.0.8

func (o *SmartAccountConfiguration) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SmartAccountConfiguration) GetIdOk added in v1.0.8

func (o *SmartAccountConfiguration) 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 (*SmartAccountConfiguration) HasBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfiguration) HasBaseAuthUrl() bool

HasBaseAuthUrl returns a boolean if a field has been set.

func (*SmartAccountConfiguration) HasBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfiguration) HasBaseSmartUrl() bool

HasBaseSmartUrl returns a boolean if a field has been set.

func (*SmartAccountConfiguration) HasClientId added in v1.0.8

func (o *SmartAccountConfiguration) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*SmartAccountConfiguration) HasClientSecret added in v1.0.8

func (o *SmartAccountConfiguration) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*SmartAccountConfiguration) HasContentType added in v1.0.8

func (o *SmartAccountConfiguration) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*SmartAccountConfiguration) HasGrantType added in v1.0.8

func (o *SmartAccountConfiguration) HasGrantType() bool

HasGrantType returns a boolean if a field has been set.

func (*SmartAccountConfiguration) HasId added in v1.0.8

func (o *SmartAccountConfiguration) HasId() bool

HasId returns a boolean if a field has been set.

func (SmartAccountConfiguration) MarshalJSON added in v1.0.8

func (o SmartAccountConfiguration) MarshalJSON() ([]byte, error)

func (*SmartAccountConfiguration) SetBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfiguration) SetBaseAuthUrl(v string)

SetBaseAuthUrl gets a reference to the given string and assigns it to the BaseAuthUrl field.

func (*SmartAccountConfiguration) SetBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfiguration) SetBaseSmartUrl(v string)

SetBaseSmartUrl gets a reference to the given string and assigns it to the BaseSmartUrl field.

func (*SmartAccountConfiguration) SetClientId added in v1.0.8

func (o *SmartAccountConfiguration) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*SmartAccountConfiguration) SetClientSecret added in v1.0.8

func (o *SmartAccountConfiguration) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*SmartAccountConfiguration) SetContentType added in v1.0.8

func (o *SmartAccountConfiguration) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*SmartAccountConfiguration) SetGrantType added in v1.0.8

func (o *SmartAccountConfiguration) SetGrantType(v string)

SetGrantType gets a reference to the given string and assigns it to the GrantType field.

func (*SmartAccountConfiguration) SetId added in v1.0.8

func (o *SmartAccountConfiguration) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SmartAccountConfiguration) UnmarshalJSON added in v1.0.8

func (o *SmartAccountConfiguration) UnmarshalJSON(bytes []byte) (err error)

type SmartAccountConfigurationCreate added in v1.0.8

type SmartAccountConfigurationCreate struct {
	BaseAuthUrl          *string `json:"baseAuthUrl,omitempty"`
	BaseSmartUrl         *string `json:"baseSmartUrl,omitempty"`
	ContentType          *string `json:"contentType,omitempty"`
	GrantType            *string `json:"grantType,omitempty"`
	ClientId             *string `json:"clientId,omitempty"`
	ClientSecret         *string `json:"clientSecret,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartAccountConfigurationCreate struct for SmartAccountConfigurationCreate

func NewSmartAccountConfigurationCreate added in v1.0.8

func NewSmartAccountConfigurationCreate() *SmartAccountConfigurationCreate

NewSmartAccountConfigurationCreate instantiates a new SmartAccountConfigurationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartAccountConfigurationCreateWithDefaults added in v1.0.8

func NewSmartAccountConfigurationCreateWithDefaults() *SmartAccountConfigurationCreate

NewSmartAccountConfigurationCreateWithDefaults instantiates a new SmartAccountConfigurationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartAccountConfigurationCreate) GetBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetBaseAuthUrl() string

GetBaseAuthUrl returns the BaseAuthUrl field value if set, zero value otherwise.

func (*SmartAccountConfigurationCreate) GetBaseAuthUrlOk added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetBaseAuthUrlOk() (*string, bool)

GetBaseAuthUrlOk returns a tuple with the BaseAuthUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationCreate) GetBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetBaseSmartUrl() string

GetBaseSmartUrl returns the BaseSmartUrl field value if set, zero value otherwise.

func (*SmartAccountConfigurationCreate) GetBaseSmartUrlOk added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetBaseSmartUrlOk() (*string, bool)

GetBaseSmartUrlOk returns a tuple with the BaseSmartUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationCreate) GetClientId added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*SmartAccountConfigurationCreate) GetClientIdOk added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationCreate) GetClientSecret added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*SmartAccountConfigurationCreate) GetClientSecretOk added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationCreate) GetContentType added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*SmartAccountConfigurationCreate) GetContentTypeOk added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationCreate) GetGrantType added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetGrantType() string

GetGrantType returns the GrantType field value if set, zero value otherwise.

func (*SmartAccountConfigurationCreate) GetGrantTypeOk added in v1.0.8

func (o *SmartAccountConfigurationCreate) GetGrantTypeOk() (*string, bool)

GetGrantTypeOk returns a tuple with the GrantType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationCreate) HasBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfigurationCreate) HasBaseAuthUrl() bool

HasBaseAuthUrl returns a boolean if a field has been set.

func (*SmartAccountConfigurationCreate) HasBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfigurationCreate) HasBaseSmartUrl() bool

HasBaseSmartUrl returns a boolean if a field has been set.

func (*SmartAccountConfigurationCreate) HasClientId added in v1.0.8

func (o *SmartAccountConfigurationCreate) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*SmartAccountConfigurationCreate) HasClientSecret added in v1.0.8

func (o *SmartAccountConfigurationCreate) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*SmartAccountConfigurationCreate) HasContentType added in v1.0.8

func (o *SmartAccountConfigurationCreate) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*SmartAccountConfigurationCreate) HasGrantType added in v1.0.8

func (o *SmartAccountConfigurationCreate) HasGrantType() bool

HasGrantType returns a boolean if a field has been set.

func (SmartAccountConfigurationCreate) MarshalJSON added in v1.0.8

func (o SmartAccountConfigurationCreate) MarshalJSON() ([]byte, error)

func (*SmartAccountConfigurationCreate) SetBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfigurationCreate) SetBaseAuthUrl(v string)

SetBaseAuthUrl gets a reference to the given string and assigns it to the BaseAuthUrl field.

func (*SmartAccountConfigurationCreate) SetBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfigurationCreate) SetBaseSmartUrl(v string)

SetBaseSmartUrl gets a reference to the given string and assigns it to the BaseSmartUrl field.

func (*SmartAccountConfigurationCreate) SetClientId added in v1.0.8

func (o *SmartAccountConfigurationCreate) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*SmartAccountConfigurationCreate) SetClientSecret added in v1.0.8

func (o *SmartAccountConfigurationCreate) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*SmartAccountConfigurationCreate) SetContentType added in v1.0.8

func (o *SmartAccountConfigurationCreate) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*SmartAccountConfigurationCreate) SetGrantType added in v1.0.8

func (o *SmartAccountConfigurationCreate) SetGrantType(v string)

SetGrantType gets a reference to the given string and assigns it to the GrantType field.

func (*SmartAccountConfigurationCreate) UnmarshalJSON added in v1.0.8

func (o *SmartAccountConfigurationCreate) UnmarshalJSON(bytes []byte) (err error)

type SmartAccountConfigurationUpdate added in v1.0.8

type SmartAccountConfigurationUpdate struct {
	BaseAuthUrl          *string `json:"baseAuthUrl,omitempty"`
	BaseSmartUrl         *string `json:"baseSmartUrl,omitempty"`
	ContentType          *string `json:"contentType,omitempty"`
	GrantType            *string `json:"grantType,omitempty"`
	ClientId             *string `json:"clientId,omitempty"`
	ClientSecret         *string `json:"clientSecret,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartAccountConfigurationUpdate struct for SmartAccountConfigurationUpdate

func NewSmartAccountConfigurationUpdate added in v1.0.8

func NewSmartAccountConfigurationUpdate() *SmartAccountConfigurationUpdate

NewSmartAccountConfigurationUpdate instantiates a new SmartAccountConfigurationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartAccountConfigurationUpdateWithDefaults added in v1.0.8

func NewSmartAccountConfigurationUpdateWithDefaults() *SmartAccountConfigurationUpdate

NewSmartAccountConfigurationUpdateWithDefaults instantiates a new SmartAccountConfigurationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartAccountConfigurationUpdate) GetBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetBaseAuthUrl() string

GetBaseAuthUrl returns the BaseAuthUrl field value if set, zero value otherwise.

func (*SmartAccountConfigurationUpdate) GetBaseAuthUrlOk added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetBaseAuthUrlOk() (*string, bool)

GetBaseAuthUrlOk returns a tuple with the BaseAuthUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationUpdate) GetBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetBaseSmartUrl() string

GetBaseSmartUrl returns the BaseSmartUrl field value if set, zero value otherwise.

func (*SmartAccountConfigurationUpdate) GetBaseSmartUrlOk added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetBaseSmartUrlOk() (*string, bool)

GetBaseSmartUrlOk returns a tuple with the BaseSmartUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationUpdate) GetClientId added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*SmartAccountConfigurationUpdate) GetClientIdOk added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationUpdate) GetClientSecret added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*SmartAccountConfigurationUpdate) GetClientSecretOk added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationUpdate) GetContentType added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*SmartAccountConfigurationUpdate) GetContentTypeOk added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationUpdate) GetGrantType added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetGrantType() string

GetGrantType returns the GrantType field value if set, zero value otherwise.

func (*SmartAccountConfigurationUpdate) GetGrantTypeOk added in v1.0.8

func (o *SmartAccountConfigurationUpdate) GetGrantTypeOk() (*string, bool)

GetGrantTypeOk returns a tuple with the GrantType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountConfigurationUpdate) HasBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfigurationUpdate) HasBaseAuthUrl() bool

HasBaseAuthUrl returns a boolean if a field has been set.

func (*SmartAccountConfigurationUpdate) HasBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfigurationUpdate) HasBaseSmartUrl() bool

HasBaseSmartUrl returns a boolean if a field has been set.

func (*SmartAccountConfigurationUpdate) HasClientId added in v1.0.8

func (o *SmartAccountConfigurationUpdate) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*SmartAccountConfigurationUpdate) HasClientSecret added in v1.0.8

func (o *SmartAccountConfigurationUpdate) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*SmartAccountConfigurationUpdate) HasContentType added in v1.0.8

func (o *SmartAccountConfigurationUpdate) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*SmartAccountConfigurationUpdate) HasGrantType added in v1.0.8

func (o *SmartAccountConfigurationUpdate) HasGrantType() bool

HasGrantType returns a boolean if a field has been set.

func (SmartAccountConfigurationUpdate) MarshalJSON added in v1.0.8

func (o SmartAccountConfigurationUpdate) MarshalJSON() ([]byte, error)

func (*SmartAccountConfigurationUpdate) SetBaseAuthUrl added in v1.0.8

func (o *SmartAccountConfigurationUpdate) SetBaseAuthUrl(v string)

SetBaseAuthUrl gets a reference to the given string and assigns it to the BaseAuthUrl field.

func (*SmartAccountConfigurationUpdate) SetBaseSmartUrl added in v1.0.8

func (o *SmartAccountConfigurationUpdate) SetBaseSmartUrl(v string)

SetBaseSmartUrl gets a reference to the given string and assigns it to the BaseSmartUrl field.

func (*SmartAccountConfigurationUpdate) SetClientId added in v1.0.8

func (o *SmartAccountConfigurationUpdate) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*SmartAccountConfigurationUpdate) SetClientSecret added in v1.0.8

func (o *SmartAccountConfigurationUpdate) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*SmartAccountConfigurationUpdate) SetContentType added in v1.0.8

func (o *SmartAccountConfigurationUpdate) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*SmartAccountConfigurationUpdate) SetGrantType added in v1.0.8

func (o *SmartAccountConfigurationUpdate) SetGrantType(v string)

SetGrantType gets a reference to the given string and assigns it to the GrantType field.

func (*SmartAccountConfigurationUpdate) UnmarshalJSON added in v1.0.8

func (o *SmartAccountConfigurationUpdate) UnmarshalJSON(bytes []byte) (err error)

type SmartAccountType added in v1.0.8

type SmartAccountType string

SmartAccountType Smart Account Types

const (
	SMARTACCOUNTTYPE_CUSTOMER SmartAccountType = "CUSTOMER"
	SMARTACCOUNTTYPE_HOLDING  SmartAccountType = "HOLDING"
)

List of SmartAccountType

func (SmartAccountType) Ptr added in v1.0.8

Ptr returns reference to SmartAccountType value

func (*SmartAccountType) UnmarshalJSON added in v1.0.8

func (v *SmartAccountType) UnmarshalJSON(src []byte) error

type SmartAccountUser added in v1.0.8

type SmartAccountUser struct {
	// Smart Account identifier
	AccountId *int32 `json:"accountId,omitempty"`
	// Smart Account Name
	AccountName *string `json:"accountName,omitempty"`
	// Smart Accont Domain
	AccountDomain        *string                 `json:"accountDomain,omitempty"`
	AccountType          *SmartAccountType       `json:"accountType,omitempty"`
	Roles                *[]SmartAccountUserRole `json:"roles,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartAccountUser struct for SmartAccountUser

func NewSmartAccountUser added in v1.0.8

func NewSmartAccountUser() *SmartAccountUser

NewSmartAccountUser instantiates a new SmartAccountUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartAccountUserWithDefaults added in v1.0.8

func NewSmartAccountUserWithDefaults() *SmartAccountUser

NewSmartAccountUserWithDefaults instantiates a new SmartAccountUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartAccountUser) GetAccountDomain added in v1.0.8

func (o *SmartAccountUser) GetAccountDomain() string

GetAccountDomain returns the AccountDomain field value if set, zero value otherwise.

func (*SmartAccountUser) GetAccountDomainOk added in v1.0.8

func (o *SmartAccountUser) GetAccountDomainOk() (*string, bool)

GetAccountDomainOk returns a tuple with the AccountDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUser) GetAccountId added in v1.0.8

func (o *SmartAccountUser) GetAccountId() int32

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*SmartAccountUser) GetAccountIdOk added in v1.0.8

func (o *SmartAccountUser) GetAccountIdOk() (*int32, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUser) GetAccountName added in v1.0.8

func (o *SmartAccountUser) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*SmartAccountUser) GetAccountNameOk added in v1.0.8

func (o *SmartAccountUser) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUser) GetAccountType added in v1.0.8

func (o *SmartAccountUser) GetAccountType() SmartAccountType

GetAccountType returns the AccountType field value if set, zero value otherwise.

func (*SmartAccountUser) GetAccountTypeOk added in v1.0.8

func (o *SmartAccountUser) GetAccountTypeOk() (*SmartAccountType, bool)

GetAccountTypeOk returns a tuple with the AccountType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUser) GetRoles added in v1.0.8

func (o *SmartAccountUser) GetRoles() []SmartAccountUserRole

GetRoles returns the Roles field value if set, zero value otherwise.

func (*SmartAccountUser) GetRolesOk added in v1.0.8

func (o *SmartAccountUser) GetRolesOk() (*[]SmartAccountUserRole, 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 (*SmartAccountUser) HasAccountDomain added in v1.0.8

func (o *SmartAccountUser) HasAccountDomain() bool

HasAccountDomain returns a boolean if a field has been set.

func (*SmartAccountUser) HasAccountId added in v1.0.8

func (o *SmartAccountUser) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*SmartAccountUser) HasAccountName added in v1.0.8

func (o *SmartAccountUser) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*SmartAccountUser) HasAccountType added in v1.0.8

func (o *SmartAccountUser) HasAccountType() bool

HasAccountType returns a boolean if a field has been set.

func (*SmartAccountUser) HasRoles added in v1.0.8

func (o *SmartAccountUser) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (SmartAccountUser) MarshalJSON added in v1.0.8

func (o SmartAccountUser) MarshalJSON() ([]byte, error)

func (*SmartAccountUser) SetAccountDomain added in v1.0.8

func (o *SmartAccountUser) SetAccountDomain(v string)

SetAccountDomain gets a reference to the given string and assigns it to the AccountDomain field.

func (*SmartAccountUser) SetAccountId added in v1.0.8

func (o *SmartAccountUser) SetAccountId(v int32)

SetAccountId gets a reference to the given int32 and assigns it to the AccountId field.

func (*SmartAccountUser) SetAccountName added in v1.0.8

func (o *SmartAccountUser) SetAccountName(v string)

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*SmartAccountUser) SetAccountType added in v1.0.8

func (o *SmartAccountUser) SetAccountType(v SmartAccountType)

SetAccountType gets a reference to the given SmartAccountType and assigns it to the AccountType field.

func (*SmartAccountUser) SetRoles added in v1.0.8

func (o *SmartAccountUser) SetRoles(v []SmartAccountUserRole)

SetRoles gets a reference to the given []SmartAccountUserRole and assigns it to the Roles field.

func (*SmartAccountUser) UnmarshalJSON added in v1.0.8

func (o *SmartAccountUser) UnmarshalJSON(bytes []byte) (err error)

type SmartAccountUserRole added in v1.0.8

type SmartAccountUserRole struct {
	RoleName *string `json:"roleName,omitempty"`
	// Virtual Account identifier
	VirtualAccountId *int32 `json:"virtualAccountId,omitempty"`
	// Virtual Account Name
	VirtualAccountName   *string `json:"virtualAccountName,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartAccountUserRole struct for SmartAccountUserRole

func NewSmartAccountUserRole added in v1.0.8

func NewSmartAccountUserRole() *SmartAccountUserRole

NewSmartAccountUserRole instantiates a new SmartAccountUserRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartAccountUserRoleWithDefaults added in v1.0.8

func NewSmartAccountUserRoleWithDefaults() *SmartAccountUserRole

NewSmartAccountUserRoleWithDefaults instantiates a new SmartAccountUserRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartAccountUserRole) GetRoleName added in v1.0.8

func (o *SmartAccountUserRole) GetRoleName() string

GetRoleName returns the RoleName field value if set, zero value otherwise.

func (*SmartAccountUserRole) GetRoleNameOk added in v1.0.8

func (o *SmartAccountUserRole) GetRoleNameOk() (*string, bool)

GetRoleNameOk returns a tuple with the RoleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUserRole) GetVirtualAccountId added in v1.0.8

func (o *SmartAccountUserRole) GetVirtualAccountId() int32

GetVirtualAccountId returns the VirtualAccountId field value if set, zero value otherwise.

func (*SmartAccountUserRole) GetVirtualAccountIdOk added in v1.0.8

func (o *SmartAccountUserRole) GetVirtualAccountIdOk() (*int32, bool)

GetVirtualAccountIdOk returns a tuple with the VirtualAccountId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUserRole) GetVirtualAccountName added in v1.0.8

func (o *SmartAccountUserRole) GetVirtualAccountName() string

GetVirtualAccountName returns the VirtualAccountName field value if set, zero value otherwise.

func (*SmartAccountUserRole) GetVirtualAccountNameOk added in v1.0.8

func (o *SmartAccountUserRole) GetVirtualAccountNameOk() (*string, bool)

GetVirtualAccountNameOk returns a tuple with the VirtualAccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartAccountUserRole) HasRoleName added in v1.0.8

func (o *SmartAccountUserRole) HasRoleName() bool

HasRoleName returns a boolean if a field has been set.

func (*SmartAccountUserRole) HasVirtualAccountId added in v1.0.8

func (o *SmartAccountUserRole) HasVirtualAccountId() bool

HasVirtualAccountId returns a boolean if a field has been set.

func (*SmartAccountUserRole) HasVirtualAccountName added in v1.0.8

func (o *SmartAccountUserRole) HasVirtualAccountName() bool

HasVirtualAccountName returns a boolean if a field has been set.

func (SmartAccountUserRole) MarshalJSON added in v1.0.8

func (o SmartAccountUserRole) MarshalJSON() ([]byte, error)

func (*SmartAccountUserRole) SetRoleName added in v1.0.8

func (o *SmartAccountUserRole) SetRoleName(v string)

SetRoleName gets a reference to the given string and assigns it to the RoleName field.

func (*SmartAccountUserRole) SetVirtualAccountId added in v1.0.8

func (o *SmartAccountUserRole) SetVirtualAccountId(v int32)

SetVirtualAccountId gets a reference to the given int32 and assigns it to the VirtualAccountId field.

func (*SmartAccountUserRole) SetVirtualAccountName added in v1.0.8

func (o *SmartAccountUserRole) SetVirtualAccountName(v string)

SetVirtualAccountName gets a reference to the given string and assigns it to the VirtualAccountName field.

func (*SmartAccountUserRole) UnmarshalJSON added in v1.0.8

func (o *SmartAccountUserRole) UnmarshalJSON(bytes []byte) (err error)

type SmartUserAccounts added in v1.0.8

type SmartUserAccounts struct {
	Accounts             *[]SmartAccountUser `json:"accounts,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartUserAccounts struct for SmartUserAccounts

func NewSmartUserAccounts added in v1.0.8

func NewSmartUserAccounts() *SmartUserAccounts

NewSmartUserAccounts instantiates a new SmartUserAccounts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartUserAccountsWithDefaults added in v1.0.8

func NewSmartUserAccountsWithDefaults() *SmartUserAccounts

NewSmartUserAccountsWithDefaults instantiates a new SmartUserAccounts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartUserAccounts) GetAccounts added in v1.0.8

func (o *SmartUserAccounts) GetAccounts() []SmartAccountUser

GetAccounts returns the Accounts field value if set, zero value otherwise.

func (*SmartUserAccounts) GetAccountsOk added in v1.0.8

func (o *SmartUserAccounts) GetAccountsOk() (*[]SmartAccountUser, bool)

GetAccountsOk returns a tuple with the Accounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartUserAccounts) HasAccounts added in v1.0.8

func (o *SmartUserAccounts) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (SmartUserAccounts) MarshalJSON added in v1.0.8

func (o SmartUserAccounts) MarshalJSON() ([]byte, error)

func (*SmartUserAccounts) SetAccounts added in v1.0.8

func (o *SmartUserAccounts) SetAccounts(v []SmartAccountUser)

SetAccounts gets a reference to the given []SmartAccountUser and assigns it to the Accounts field.

func (*SmartUserAccounts) UnmarshalJSON added in v1.0.8

func (o *SmartUserAccounts) UnmarshalJSON(bytes []byte) (err error)

type SmartUserAccountsAllOf added in v1.0.8

type SmartUserAccountsAllOf struct {
	Accounts             *[]SmartAccountUser `json:"accounts,omitempty"`
	AdditionalProperties map[string]interface{}
}

SmartUserAccountsAllOf struct for SmartUserAccountsAllOf

func NewSmartUserAccountsAllOf added in v1.0.8

func NewSmartUserAccountsAllOf() *SmartUserAccountsAllOf

NewSmartUserAccountsAllOf instantiates a new SmartUserAccountsAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmartUserAccountsAllOfWithDefaults added in v1.0.8

func NewSmartUserAccountsAllOfWithDefaults() *SmartUserAccountsAllOf

NewSmartUserAccountsAllOfWithDefaults instantiates a new SmartUserAccountsAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmartUserAccountsAllOf) GetAccounts added in v1.0.8

func (o *SmartUserAccountsAllOf) GetAccounts() []SmartAccountUser

GetAccounts returns the Accounts field value if set, zero value otherwise.

func (*SmartUserAccountsAllOf) GetAccountsOk added in v1.0.8

func (o *SmartUserAccountsAllOf) GetAccountsOk() (*[]SmartAccountUser, bool)

GetAccountsOk returns a tuple with the Accounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmartUserAccountsAllOf) HasAccounts added in v1.0.8

func (o *SmartUserAccountsAllOf) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (SmartUserAccountsAllOf) MarshalJSON added in v1.0.8

func (o SmartUserAccountsAllOf) MarshalJSON() ([]byte, error)

func (*SmartUserAccountsAllOf) SetAccounts added in v1.0.8

func (o *SmartUserAccountsAllOf) SetAccounts(v []SmartAccountUser)

SetAccounts gets a reference to the given []SmartAccountUser and assigns it to the Accounts field.

func (*SmartUserAccountsAllOf) UnmarshalJSON added in v1.0.8

func (o *SmartUserAccountsAllOf) UnmarshalJSON(bytes []byte) (err error)

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]interface{} `json:"status,omitempty"`
	Version              *string                 `json:"version,omitempty"`
	CreatedBy            *string                 `json:"created_by,omitempty"`
	CreatedOn            *string                 `json:"created_on,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetStatusOk

func (o *StartWorkflowResponse) GetStatusOk() (*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]interface{})

SetStatus gets a reference to the given 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.

func (*StartWorkflowResponse) UnmarshalJSON added in v1.0.5

func (o *StartWorkflowResponse) UnmarshalJSON(bytes []byte) (err error)

type Template added in v1.0.8

type Template struct {
	Id                   *string            `json:"id,omitempty"`
	ExternalId           NullableString     `json:"externalId,omitempty"`
	Name                 string             `json:"name"`
	Description          *string            `json:"description,omitempty"`
	ServiceType          string             `json:"serviceType"`
	Type                 string             `json:"type"`
	Subtype              NullableString     `json:"subtype,omitempty"`
	Configuration        *string            `json:"configuration,omitempty"`
	Attributes           *map[string]string `json:"attributes,omitempty"`
	Tags                 *[]string          `json:"tags,omitempty"`
	Notes                NullableString     `json:"notes,omitempty"`
	Status               *TemplateStatus    `json:"status,omitempty"`
	StatusDetails        NullableString     `json:"statusDetails,omitempty"`
	CreatedOn            NullableTime       `json:"createdOn,omitempty"`
	CreatedBy            NullableString     `json:"createdBy,omitempty"`
	ModifiedOn           NullableTime       `json:"modifiedOn,omitempty"`
	ModifiedBy           NullableString     `json:"modifiedBy,omitempty"`
	AdditionalProperties map[string]interface{}
}

Template struct for Template

func NewTemplate added in v1.0.8

func NewTemplate(name string, serviceType string, type_ string) *Template

NewTemplate instantiates a new Template object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateWithDefaults added in v1.0.8

func NewTemplateWithDefaults() *Template

NewTemplateWithDefaults instantiates a new Template object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Template) GetAttributes added in v1.0.8

func (o *Template) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Template) GetAttributesOk added in v1.0.8

func (o *Template) 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 (*Template) GetConfiguration added in v1.0.8

func (o *Template) GetConfiguration() string

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*Template) GetConfigurationOk added in v1.0.8

func (o *Template) GetConfigurationOk() (*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 (*Template) GetCreatedBy added in v1.0.8

func (o *Template) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetCreatedByOk added in v1.0.8

func (o *Template) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetCreatedOn added in v1.0.8

func (o *Template) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetCreatedOnOk added in v1.0.8

func (o *Template) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetDescription added in v1.0.8

func (o *Template) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Template) GetDescriptionOk added in v1.0.8

func (o *Template) 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 (*Template) GetExternalId added in v1.0.8

func (o *Template) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetExternalIdOk added in v1.0.8

func (o *Template) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetId added in v1.0.8

func (o *Template) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Template) GetIdOk added in v1.0.8

func (o *Template) 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 (*Template) GetModifiedBy added in v1.0.8

func (o *Template) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetModifiedByOk added in v1.0.8

func (o *Template) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetModifiedOn added in v1.0.8

func (o *Template) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetModifiedOnOk added in v1.0.8

func (o *Template) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetName added in v1.0.8

func (o *Template) GetName() string

GetName returns the Name field value

func (*Template) GetNameOk added in v1.0.8

func (o *Template) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Template) GetNotes added in v1.0.8

func (o *Template) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetNotesOk added in v1.0.8

func (o *Template) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetServiceType added in v1.0.8

func (o *Template) GetServiceType() string

GetServiceType returns the ServiceType field value

func (*Template) GetServiceTypeOk added in v1.0.8

func (o *Template) GetServiceTypeOk() (*string, bool)

GetServiceTypeOk returns a tuple with the ServiceType field value and a boolean to check if the value has been set.

func (*Template) GetStatus added in v1.0.8

func (o *Template) GetStatus() TemplateStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Template) GetStatusDetails added in v1.0.8

func (o *Template) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetStatusDetailsOk added in v1.0.8

func (o *Template) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetStatusOk added in v1.0.8

func (o *Template) GetStatusOk() (*TemplateStatus, 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 (*Template) GetSubtype added in v1.0.8

func (o *Template) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Template) GetSubtypeOk added in v1.0.8

func (o *Template) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetTags added in v1.0.8

func (o *Template) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*Template) GetTagsOk added in v1.0.8

func (o *Template) GetTagsOk() (*[]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 (*Template) GetType added in v1.0.8

func (o *Template) GetType() string

GetType returns the Type field value

func (*Template) GetTypeOk added in v1.0.8

func (o *Template) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*Template) HasAttributes added in v1.0.8

func (o *Template) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Template) HasConfiguration added in v1.0.8

func (o *Template) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*Template) HasCreatedBy added in v1.0.8

func (o *Template) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Template) HasCreatedOn added in v1.0.8

func (o *Template) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Template) HasDescription added in v1.0.8

func (o *Template) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Template) HasExternalId added in v1.0.8

func (o *Template) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*Template) HasId added in v1.0.8

func (o *Template) HasId() bool

HasId returns a boolean if a field has been set.

func (*Template) HasModifiedBy added in v1.0.8

func (o *Template) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*Template) HasModifiedOn added in v1.0.8

func (o *Template) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*Template) HasNotes added in v1.0.8

func (o *Template) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*Template) HasStatus added in v1.0.8

func (o *Template) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Template) HasStatusDetails added in v1.0.8

func (o *Template) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (*Template) HasSubtype added in v1.0.8

func (o *Template) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*Template) HasTags added in v1.0.8

func (o *Template) HasTags() bool

HasTags returns a boolean if a field has been set.

func (Template) MarshalJSON added in v1.0.8

func (o Template) MarshalJSON() ([]byte, error)

func (*Template) SetAttributes added in v1.0.8

func (o *Template) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*Template) SetConfiguration added in v1.0.8

func (o *Template) SetConfiguration(v string)

SetConfiguration gets a reference to the given string and assigns it to the Configuration field.

func (*Template) SetCreatedBy added in v1.0.8

func (o *Template) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*Template) SetCreatedByNil added in v1.0.8

func (o *Template) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*Template) SetCreatedOn added in v1.0.8

func (o *Template) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given NullableTime and assigns it to the CreatedOn field.

func (*Template) SetCreatedOnNil added in v1.0.8

func (o *Template) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

func (*Template) SetDescription added in v1.0.8

func (o *Template) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Template) SetExternalId added in v1.0.8

func (o *Template) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*Template) SetExternalIdNil added in v1.0.9

func (o *Template) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

func (*Template) SetId added in v1.0.8

func (o *Template) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Template) SetModifiedBy added in v1.0.8

func (o *Template) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*Template) SetModifiedByNil added in v1.0.8

func (o *Template) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*Template) SetModifiedOn added in v1.0.8

func (o *Template) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given NullableTime and assigns it to the ModifiedOn field.

func (*Template) SetModifiedOnNil added in v1.0.8

func (o *Template) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*Template) SetName added in v1.0.8

func (o *Template) SetName(v string)

SetName sets field value

func (*Template) SetNotes added in v1.0.8

func (o *Template) SetNotes(v string)

SetNotes gets a reference to the given NullableString and assigns it to the Notes field.

func (*Template) SetNotesNil added in v1.0.9

func (o *Template) SetNotesNil()

SetNotesNil sets the value for Notes to be an explicit nil

func (*Template) SetServiceType added in v1.0.8

func (o *Template) SetServiceType(v string)

SetServiceType sets field value

func (*Template) SetStatus added in v1.0.8

func (o *Template) SetStatus(v TemplateStatus)

SetStatus gets a reference to the given TemplateStatus and assigns it to the Status field.

func (*Template) SetStatusDetails added in v1.0.8

func (o *Template) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given NullableString and assigns it to the StatusDetails field.

func (*Template) SetStatusDetailsNil added in v1.0.8

func (o *Template) SetStatusDetailsNil()

SetStatusDetailsNil sets the value for StatusDetails to be an explicit nil

func (*Template) SetSubtype added in v1.0.8

func (o *Template) SetSubtype(v string)

SetSubtype gets a reference to the given NullableString and assigns it to the Subtype field.

func (*Template) SetSubtypeNil added in v1.0.8

func (o *Template) SetSubtypeNil()

SetSubtypeNil sets the value for Subtype to be an explicit nil

func (*Template) SetTags added in v1.0.8

func (o *Template) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (*Template) SetType added in v1.0.8

func (o *Template) SetType(v string)

SetType sets field value

func (*Template) UnmarshalJSON added in v1.0.8

func (o *Template) UnmarshalJSON(bytes []byte) (err error)

func (*Template) UnsetCreatedBy added in v1.0.8

func (o *Template) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*Template) UnsetCreatedOn added in v1.0.8

func (o *Template) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*Template) UnsetExternalId added in v1.0.9

func (o *Template) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

func (*Template) UnsetModifiedBy added in v1.0.8

func (o *Template) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*Template) UnsetModifiedOn added in v1.0.8

func (o *Template) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*Template) UnsetNotes added in v1.0.9

func (o *Template) UnsetNotes()

UnsetNotes ensures that no value is present for Notes, not even an explicit nil

func (*Template) UnsetStatusDetails added in v1.0.8

func (o *Template) UnsetStatusDetails()

UnsetStatusDetails ensures that no value is present for StatusDetails, not even an explicit nil

func (*Template) UnsetSubtype added in v1.0.8

func (o *Template) UnsetSubtype()

UnsetSubtype ensures that no value is present for Subtype, not even an explicit nil

type TemplateApplication added in v1.0.8

type TemplateApplication struct {
	Id                   *string            `json:"id,omitempty"`
	TemplateId           *string            `json:"templateId,omitempty"`
	TemplateName         *string            `json:"templateName,omitempty"`
	TenantId             string             `json:"tenantId"`
	TargetId             string             `json:"targetId"`
	TargetType           string             `json:"targetType"`
	Parameters           *map[string]string `json:"parameters,omitempty"`
	Status               *TemplateStatus    `json:"status,omitempty"`
	StatusDetails        NullableString     `json:"statusDetails,omitempty"`
	CreatedOn            NullableTime       `json:"createdOn,omitempty"`
	CreatedBy            NullableString     `json:"createdBy,omitempty"`
	ModifiedOn           NullableTime       `json:"modifiedOn,omitempty"`
	ModifiedBy           NullableString     `json:"modifiedBy,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateApplication struct for TemplateApplication

func NewTemplateApplication added in v1.0.8

func NewTemplateApplication(tenantId string, targetId string, targetType string) *TemplateApplication

NewTemplateApplication instantiates a new TemplateApplication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateApplicationWithDefaults added in v1.0.8

func NewTemplateApplicationWithDefaults() *TemplateApplication

NewTemplateApplicationWithDefaults instantiates a new TemplateApplication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateApplication) GetCreatedBy added in v1.0.8

func (o *TemplateApplication) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplication) GetCreatedByOk added in v1.0.8

func (o *TemplateApplication) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplication) GetCreatedOn added in v1.0.8

func (o *TemplateApplication) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplication) GetCreatedOnOk added in v1.0.8

func (o *TemplateApplication) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplication) GetId added in v1.0.8

func (o *TemplateApplication) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TemplateApplication) GetIdOk added in v1.0.8

func (o *TemplateApplication) 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 (*TemplateApplication) GetModifiedBy added in v1.0.8

func (o *TemplateApplication) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplication) GetModifiedByOk added in v1.0.8

func (o *TemplateApplication) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplication) GetModifiedOn added in v1.0.8

func (o *TemplateApplication) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplication) GetModifiedOnOk added in v1.0.8

func (o *TemplateApplication) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplication) GetParameters added in v1.0.8

func (o *TemplateApplication) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*TemplateApplication) GetParametersOk added in v1.0.8

func (o *TemplateApplication) GetParametersOk() (*map[string]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateApplication) GetStatus added in v1.0.8

func (o *TemplateApplication) GetStatus() TemplateStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*TemplateApplication) GetStatusDetails added in v1.0.8

func (o *TemplateApplication) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplication) GetStatusDetailsOk added in v1.0.8

func (o *TemplateApplication) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplication) GetStatusOk added in v1.0.8

func (o *TemplateApplication) GetStatusOk() (*TemplateStatus, 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 (*TemplateApplication) GetTargetId added in v1.0.8

func (o *TemplateApplication) GetTargetId() string

GetTargetId returns the TargetId field value

func (*TemplateApplication) GetTargetIdOk added in v1.0.8

func (o *TemplateApplication) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value and a boolean to check if the value has been set.

func (*TemplateApplication) GetTargetType added in v1.0.8

func (o *TemplateApplication) GetTargetType() string

GetTargetType returns the TargetType field value

func (*TemplateApplication) GetTargetTypeOk added in v1.0.8

func (o *TemplateApplication) GetTargetTypeOk() (*string, bool)

GetTargetTypeOk returns a tuple with the TargetType field value and a boolean to check if the value has been set.

func (*TemplateApplication) GetTemplateId added in v1.0.8

func (o *TemplateApplication) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*TemplateApplication) GetTemplateIdOk added in v1.0.8

func (o *TemplateApplication) 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 (*TemplateApplication) GetTemplateName added in v1.0.8

func (o *TemplateApplication) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*TemplateApplication) GetTemplateNameOk added in v1.0.8

func (o *TemplateApplication) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateApplication) GetTenantId added in v1.0.8

func (o *TemplateApplication) GetTenantId() string

GetTenantId returns the TenantId field value

func (*TemplateApplication) GetTenantIdOk added in v1.0.8

func (o *TemplateApplication) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value and a boolean to check if the value has been set.

func (*TemplateApplication) HasCreatedBy added in v1.0.8

func (o *TemplateApplication) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*TemplateApplication) HasCreatedOn added in v1.0.8

func (o *TemplateApplication) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*TemplateApplication) HasId added in v1.0.8

func (o *TemplateApplication) HasId() bool

HasId returns a boolean if a field has been set.

func (*TemplateApplication) HasModifiedBy added in v1.0.8

func (o *TemplateApplication) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*TemplateApplication) HasModifiedOn added in v1.0.8

func (o *TemplateApplication) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*TemplateApplication) HasParameters added in v1.0.8

func (o *TemplateApplication) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*TemplateApplication) HasStatus added in v1.0.8

func (o *TemplateApplication) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TemplateApplication) HasStatusDetails added in v1.0.8

func (o *TemplateApplication) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (*TemplateApplication) HasTemplateId added in v1.0.8

func (o *TemplateApplication) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*TemplateApplication) HasTemplateName added in v1.0.8

func (o *TemplateApplication) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (TemplateApplication) MarshalJSON added in v1.0.8

func (o TemplateApplication) MarshalJSON() ([]byte, error)

func (*TemplateApplication) SetCreatedBy added in v1.0.8

func (o *TemplateApplication) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*TemplateApplication) SetCreatedByNil added in v1.0.8

func (o *TemplateApplication) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*TemplateApplication) SetCreatedOn added in v1.0.8

func (o *TemplateApplication) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given NullableTime and assigns it to the CreatedOn field.

func (*TemplateApplication) SetCreatedOnNil added in v1.0.8

func (o *TemplateApplication) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

func (*TemplateApplication) SetId added in v1.0.8

func (o *TemplateApplication) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TemplateApplication) SetModifiedBy added in v1.0.8

func (o *TemplateApplication) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*TemplateApplication) SetModifiedByNil added in v1.0.8

func (o *TemplateApplication) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*TemplateApplication) SetModifiedOn added in v1.0.8

func (o *TemplateApplication) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given NullableTime and assigns it to the ModifiedOn field.

func (*TemplateApplication) SetModifiedOnNil added in v1.0.8

func (o *TemplateApplication) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*TemplateApplication) SetParameters added in v1.0.8

func (o *TemplateApplication) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (*TemplateApplication) SetStatus added in v1.0.8

func (o *TemplateApplication) SetStatus(v TemplateStatus)

SetStatus gets a reference to the given TemplateStatus and assigns it to the Status field.

func (*TemplateApplication) SetStatusDetails added in v1.0.8

func (o *TemplateApplication) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given NullableString and assigns it to the StatusDetails field.

func (*TemplateApplication) SetStatusDetailsNil added in v1.0.8

func (o *TemplateApplication) SetStatusDetailsNil()

SetStatusDetailsNil sets the value for StatusDetails to be an explicit nil

func (*TemplateApplication) SetTargetId added in v1.0.8

func (o *TemplateApplication) SetTargetId(v string)

SetTargetId sets field value

func (*TemplateApplication) SetTargetType added in v1.0.8

func (o *TemplateApplication) SetTargetType(v string)

SetTargetType sets field value

func (*TemplateApplication) SetTemplateId added in v1.0.8

func (o *TemplateApplication) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*TemplateApplication) SetTemplateName added in v1.0.8

func (o *TemplateApplication) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*TemplateApplication) SetTenantId added in v1.0.8

func (o *TemplateApplication) SetTenantId(v string)

SetTenantId sets field value

func (*TemplateApplication) UnmarshalJSON added in v1.0.8

func (o *TemplateApplication) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateApplication) UnsetCreatedBy added in v1.0.8

func (o *TemplateApplication) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*TemplateApplication) UnsetCreatedOn added in v1.0.8

func (o *TemplateApplication) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*TemplateApplication) UnsetModifiedBy added in v1.0.8

func (o *TemplateApplication) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*TemplateApplication) UnsetModifiedOn added in v1.0.8

func (o *TemplateApplication) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*TemplateApplication) UnsetStatusDetails added in v1.0.8

func (o *TemplateApplication) UnsetStatusDetails()

UnsetStatusDetails ensures that no value is present for StatusDetails, not even an explicit nil

type TemplateApplicationAllOf added in v1.0.8

type TemplateApplicationAllOf struct {
	Id                   *string `json:"id,omitempty"`
	TemplateId           *string `json:"templateId,omitempty"`
	TemplateName         *string `json:"templateName,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateApplicationAllOf struct for TemplateApplicationAllOf

func NewTemplateApplicationAllOf added in v1.0.8

func NewTemplateApplicationAllOf() *TemplateApplicationAllOf

NewTemplateApplicationAllOf instantiates a new TemplateApplicationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateApplicationAllOfWithDefaults added in v1.0.8

func NewTemplateApplicationAllOfWithDefaults() *TemplateApplicationAllOf

NewTemplateApplicationAllOfWithDefaults instantiates a new TemplateApplicationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateApplicationAllOf) GetId added in v1.0.8

func (o *TemplateApplicationAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TemplateApplicationAllOf) GetIdOk added in v1.0.8

func (o *TemplateApplicationAllOf) 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 (*TemplateApplicationAllOf) GetTemplateId added in v1.0.8

func (o *TemplateApplicationAllOf) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*TemplateApplicationAllOf) GetTemplateIdOk added in v1.0.8

func (o *TemplateApplicationAllOf) 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 (*TemplateApplicationAllOf) GetTemplateName added in v1.0.8

func (o *TemplateApplicationAllOf) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*TemplateApplicationAllOf) GetTemplateNameOk added in v1.0.8

func (o *TemplateApplicationAllOf) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateApplicationAllOf) HasId added in v1.0.8

func (o *TemplateApplicationAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*TemplateApplicationAllOf) HasTemplateId added in v1.0.8

func (o *TemplateApplicationAllOf) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*TemplateApplicationAllOf) HasTemplateName added in v1.0.8

func (o *TemplateApplicationAllOf) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (TemplateApplicationAllOf) MarshalJSON added in v1.0.8

func (o TemplateApplicationAllOf) MarshalJSON() ([]byte, error)

func (*TemplateApplicationAllOf) SetId added in v1.0.8

func (o *TemplateApplicationAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TemplateApplicationAllOf) SetTemplateId added in v1.0.8

func (o *TemplateApplicationAllOf) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*TemplateApplicationAllOf) SetTemplateName added in v1.0.8

func (o *TemplateApplicationAllOf) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*TemplateApplicationAllOf) UnmarshalJSON added in v1.0.8

func (o *TemplateApplicationAllOf) UnmarshalJSON(bytes []byte) (err error)

type TemplateApplicationCreate added in v1.0.8

type TemplateApplicationCreate struct {
	TenantId             string             `json:"tenantId"`
	TargetId             string             `json:"targetId"`
	TargetType           string             `json:"targetType"`
	Parameters           *map[string]string `json:"parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateApplicationCreate struct for TemplateApplicationCreate

func NewTemplateApplicationCreate added in v1.0.8

func NewTemplateApplicationCreate(tenantId string, targetId string, targetType string) *TemplateApplicationCreate

NewTemplateApplicationCreate instantiates a new TemplateApplicationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateApplicationCreateWithDefaults added in v1.0.8

func NewTemplateApplicationCreateWithDefaults() *TemplateApplicationCreate

NewTemplateApplicationCreateWithDefaults instantiates a new TemplateApplicationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateApplicationCreate) GetParameters added in v1.0.8

func (o *TemplateApplicationCreate) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*TemplateApplicationCreate) GetParametersOk added in v1.0.8

func (o *TemplateApplicationCreate) GetParametersOk() (*map[string]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateApplicationCreate) GetTargetId added in v1.0.8

func (o *TemplateApplicationCreate) GetTargetId() string

GetTargetId returns the TargetId field value

func (*TemplateApplicationCreate) GetTargetIdOk added in v1.0.8

func (o *TemplateApplicationCreate) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value and a boolean to check if the value has been set.

func (*TemplateApplicationCreate) GetTargetType added in v1.0.8

func (o *TemplateApplicationCreate) GetTargetType() string

GetTargetType returns the TargetType field value

func (*TemplateApplicationCreate) GetTargetTypeOk added in v1.0.8

func (o *TemplateApplicationCreate) GetTargetTypeOk() (*string, bool)

GetTargetTypeOk returns a tuple with the TargetType field value and a boolean to check if the value has been set.

func (*TemplateApplicationCreate) GetTenantId added in v1.0.8

func (o *TemplateApplicationCreate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*TemplateApplicationCreate) GetTenantIdOk added in v1.0.8

func (o *TemplateApplicationCreate) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value and a boolean to check if the value has been set.

func (*TemplateApplicationCreate) HasParameters added in v1.0.8

func (o *TemplateApplicationCreate) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (TemplateApplicationCreate) MarshalJSON added in v1.0.8

func (o TemplateApplicationCreate) MarshalJSON() ([]byte, error)

func (*TemplateApplicationCreate) SetParameters added in v1.0.8

func (o *TemplateApplicationCreate) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (*TemplateApplicationCreate) SetTargetId added in v1.0.8

func (o *TemplateApplicationCreate) SetTargetId(v string)

SetTargetId sets field value

func (*TemplateApplicationCreate) SetTargetType added in v1.0.8

func (o *TemplateApplicationCreate) SetTargetType(v string)

SetTargetType sets field value

func (*TemplateApplicationCreate) SetTenantId added in v1.0.8

func (o *TemplateApplicationCreate) SetTenantId(v string)

SetTenantId sets field value

func (*TemplateApplicationCreate) UnmarshalJSON added in v1.0.8

func (o *TemplateApplicationCreate) UnmarshalJSON(bytes []byte) (err error)

type TemplateApplicationStatusPatch added in v1.0.8

type TemplateApplicationStatusPatch struct {
	Status               TemplateStatus `json:"status"`
	StatusDetails        *string        `json:"statusDetails,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateApplicationStatusPatch struct for TemplateApplicationStatusPatch

func NewTemplateApplicationStatusPatch added in v1.0.8

func NewTemplateApplicationStatusPatch(status TemplateStatus) *TemplateApplicationStatusPatch

NewTemplateApplicationStatusPatch instantiates a new TemplateApplicationStatusPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateApplicationStatusPatchWithDefaults added in v1.0.8

func NewTemplateApplicationStatusPatchWithDefaults() *TemplateApplicationStatusPatch

NewTemplateApplicationStatusPatchWithDefaults instantiates a new TemplateApplicationStatusPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateApplicationStatusPatch) GetStatus added in v1.0.8

GetStatus returns the Status field value

func (*TemplateApplicationStatusPatch) GetStatusDetails added in v1.0.8

func (o *TemplateApplicationStatusPatch) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise.

func (*TemplateApplicationStatusPatch) GetStatusDetailsOk added in v1.0.8

func (o *TemplateApplicationStatusPatch) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateApplicationStatusPatch) GetStatusOk added in v1.0.8

func (o *TemplateApplicationStatusPatch) GetStatusOk() (*TemplateStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*TemplateApplicationStatusPatch) HasStatusDetails added in v1.0.8

func (o *TemplateApplicationStatusPatch) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (TemplateApplicationStatusPatch) MarshalJSON added in v1.0.8

func (o TemplateApplicationStatusPatch) MarshalJSON() ([]byte, error)

func (*TemplateApplicationStatusPatch) SetStatus added in v1.0.8

SetStatus sets field value

func (*TemplateApplicationStatusPatch) SetStatusDetails added in v1.0.8

func (o *TemplateApplicationStatusPatch) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given string and assigns it to the StatusDetails field.

func (*TemplateApplicationStatusPatch) UnmarshalJSON added in v1.0.8

func (o *TemplateApplicationStatusPatch) UnmarshalJSON(bytes []byte) (err error)

type TemplateApplicationsApiService added in v1.0.8

type TemplateApplicationsApiService service

TemplateApplicationsApiService TemplateApplicationsApi service

func (*TemplateApplicationsApiService) ApplyTemplate added in v1.0.8

* ApplyTemplate Applies a template to a target. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiApplyTemplateRequest

func (*TemplateApplicationsApiService) ApplyTemplateExecute added in v1.0.8

* Execute executes the request * @return TemplateApplication

func (*TemplateApplicationsApiService) DeleteTemplateApplication added in v1.0.8

* DeleteTemplateApplication Deletes a template application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteTemplateApplicationRequest

func (*TemplateApplicationsApiService) DeleteTemplateApplicationExecute added in v1.0.8

* Execute executes the request

func (*TemplateApplicationsApiService) GetTemplateApplication added in v1.0.8

* GetTemplateApplication Gets a template application. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetTemplateApplicationRequest

func (*TemplateApplicationsApiService) GetTemplateApplicationExecute added in v1.0.8

* Execute executes the request * @return TemplateApplication

func (*TemplateApplicationsApiService) GetTemplateApplicationHistory added in v1.0.8

* GetTemplateApplicationHistory Gets a template application history. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetTemplateApplicationHistoryRequest

func (*TemplateApplicationsApiService) GetTemplateApplicationHistoryExecute added in v1.0.8

* Execute executes the request * @return []TemplateApplication

func (*TemplateApplicationsApiService) GetTemplateApplicationsPage added in v1.0.8

* GetTemplateApplicationsPage Get a page of template applications. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetTemplateApplicationsPageRequest

func (*TemplateApplicationsApiService) GetTemplateApplicationsPageExecute added in v1.0.8

* Execute executes the request * @return TemplateApplicationsPage

func (*TemplateApplicationsApiService) UpdateApplicationStatus added in v1.0.8

* UpdateApplicationStatus Updates an application status. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateApplicationStatusRequest

func (*TemplateApplicationsApiService) UpdateApplicationStatusExecute added in v1.0.8

* Execute executes the request * @return TemplateApplication

type TemplateApplicationsPage added in v1.0.8

type TemplateApplicationsPage struct {
	Page                 *int32                 `json:"page,omitempty"`
	PageSize             *int32                 `json:"pageSize,omitempty"`
	TotalItems           NullableInt64          `json:"totalItems,omitempty"`
	HasNext              NullableBool           `json:"hasNext,omitempty"`
	HasPrevious          NullableBool           `json:"hasPrevious,omitempty"`
	SortBy               NullableString         `json:"sortBy,omitempty"`
	SortOrder            NullableString         `json:"sortOrder,omitempty"`
	Contents             *[]TemplateApplication `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateApplicationsPage struct for TemplateApplicationsPage

func NewTemplateApplicationsPage added in v1.0.8

func NewTemplateApplicationsPage() *TemplateApplicationsPage

NewTemplateApplicationsPage instantiates a new TemplateApplicationsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateApplicationsPageWithDefaults added in v1.0.8

func NewTemplateApplicationsPageWithDefaults() *TemplateApplicationsPage

NewTemplateApplicationsPageWithDefaults instantiates a new TemplateApplicationsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateApplicationsPage) GetContents added in v1.0.8

func (o *TemplateApplicationsPage) GetContents() []TemplateApplication

GetContents returns the Contents field value if set, zero value otherwise.

func (*TemplateApplicationsPage) GetContentsOk added in v1.0.8

func (o *TemplateApplicationsPage) GetContentsOk() (*[]TemplateApplication, 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 (*TemplateApplicationsPage) GetHasNext added in v1.0.8

func (o *TemplateApplicationsPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplicationsPage) GetHasNextOk added in v1.0.8

func (o *TemplateApplicationsPage) 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 (*TemplateApplicationsPage) GetHasPrevious added in v1.0.8

func (o *TemplateApplicationsPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplicationsPage) GetHasPreviousOk added in v1.0.8

func (o *TemplateApplicationsPage) 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 (*TemplateApplicationsPage) GetPage added in v1.0.8

func (o *TemplateApplicationsPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*TemplateApplicationsPage) GetPageOk added in v1.0.8

func (o *TemplateApplicationsPage) 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 (*TemplateApplicationsPage) GetPageSize added in v1.0.8

func (o *TemplateApplicationsPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*TemplateApplicationsPage) GetPageSizeOk added in v1.0.8

func (o *TemplateApplicationsPage) 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 (*TemplateApplicationsPage) GetSortBy added in v1.0.8

func (o *TemplateApplicationsPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplicationsPage) GetSortByOk added in v1.0.8

func (o *TemplateApplicationsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplicationsPage) GetSortOrder added in v1.0.8

func (o *TemplateApplicationsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplicationsPage) GetSortOrderOk added in v1.0.8

func (o *TemplateApplicationsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplicationsPage) GetTotalItems added in v1.0.8

func (o *TemplateApplicationsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateApplicationsPage) GetTotalItemsOk added in v1.0.8

func (o *TemplateApplicationsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateApplicationsPage) HasContents added in v1.0.8

func (o *TemplateApplicationsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasHasNext added in v1.0.8

func (o *TemplateApplicationsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasHasPrevious added in v1.0.8

func (o *TemplateApplicationsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasPage added in v1.0.8

func (o *TemplateApplicationsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasPageSize added in v1.0.8

func (o *TemplateApplicationsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasSortBy added in v1.0.8

func (o *TemplateApplicationsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasSortOrder added in v1.0.8

func (o *TemplateApplicationsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*TemplateApplicationsPage) HasTotalItems added in v1.0.8

func (o *TemplateApplicationsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (TemplateApplicationsPage) MarshalJSON added in v1.0.8

func (o TemplateApplicationsPage) MarshalJSON() ([]byte, error)

func (*TemplateApplicationsPage) SetContents added in v1.0.8

func (o *TemplateApplicationsPage) SetContents(v []TemplateApplication)

SetContents gets a reference to the given []TemplateApplication and assigns it to the Contents field.

func (*TemplateApplicationsPage) SetHasNext added in v1.0.8

func (o *TemplateApplicationsPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*TemplateApplicationsPage) SetHasNextNil added in v1.0.8

func (o *TemplateApplicationsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*TemplateApplicationsPage) SetHasPrevious added in v1.0.8

func (o *TemplateApplicationsPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*TemplateApplicationsPage) SetHasPreviousNil added in v1.0.8

func (o *TemplateApplicationsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*TemplateApplicationsPage) SetPage added in v1.0.8

func (o *TemplateApplicationsPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*TemplateApplicationsPage) SetPageSize added in v1.0.8

func (o *TemplateApplicationsPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*TemplateApplicationsPage) SetSortBy added in v1.0.8

func (o *TemplateApplicationsPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*TemplateApplicationsPage) SetSortByNil added in v1.0.8

func (o *TemplateApplicationsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*TemplateApplicationsPage) SetSortOrder added in v1.0.8

func (o *TemplateApplicationsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*TemplateApplicationsPage) SetSortOrderNil added in v1.0.8

func (o *TemplateApplicationsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*TemplateApplicationsPage) SetTotalItems added in v1.0.8

func (o *TemplateApplicationsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*TemplateApplicationsPage) SetTotalItemsNil added in v1.0.8

func (o *TemplateApplicationsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*TemplateApplicationsPage) UnmarshalJSON added in v1.0.8

func (o *TemplateApplicationsPage) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateApplicationsPage) UnsetHasNext added in v1.0.8

func (o *TemplateApplicationsPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*TemplateApplicationsPage) UnsetHasPrevious added in v1.0.8

func (o *TemplateApplicationsPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*TemplateApplicationsPage) UnsetSortBy added in v1.0.8

func (o *TemplateApplicationsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*TemplateApplicationsPage) UnsetSortOrder added in v1.0.8

func (o *TemplateApplicationsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*TemplateApplicationsPage) UnsetTotalItems added in v1.0.8

func (o *TemplateApplicationsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type TemplateApplicationsPageAllOf added in v1.0.8

type TemplateApplicationsPageAllOf struct {
	Contents             *[]TemplateApplication `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateApplicationsPageAllOf struct for TemplateApplicationsPageAllOf

func NewTemplateApplicationsPageAllOf added in v1.0.8

func NewTemplateApplicationsPageAllOf() *TemplateApplicationsPageAllOf

NewTemplateApplicationsPageAllOf instantiates a new TemplateApplicationsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateApplicationsPageAllOfWithDefaults added in v1.0.8

func NewTemplateApplicationsPageAllOfWithDefaults() *TemplateApplicationsPageAllOf

NewTemplateApplicationsPageAllOfWithDefaults instantiates a new TemplateApplicationsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateApplicationsPageAllOf) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*TemplateApplicationsPageAllOf) GetContentsOk added in v1.0.8

func (o *TemplateApplicationsPageAllOf) GetContentsOk() (*[]TemplateApplication, 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 (*TemplateApplicationsPageAllOf) HasContents added in v1.0.8

func (o *TemplateApplicationsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (TemplateApplicationsPageAllOf) MarshalJSON added in v1.0.8

func (o TemplateApplicationsPageAllOf) MarshalJSON() ([]byte, error)

func (*TemplateApplicationsPageAllOf) SetContents added in v1.0.8

SetContents gets a reference to the given []TemplateApplication and assigns it to the Contents field.

func (*TemplateApplicationsPageAllOf) UnmarshalJSON added in v1.0.8

func (o *TemplateApplicationsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type TemplateAssignment added in v1.0.8

type TemplateAssignment struct {
	Id                   *string         `json:"id,omitempty"`
	TemplateId           *string         `json:"templateId,omitempty"`
	TemplateName         *string         `json:"templateName,omitempty"`
	TenantId             *string         `json:"tenantId,omitempty"`
	AssignedTenantId     *string         `json:"assignedTenantId,omitempty"`
	Inheritable          NullableBool    `json:"inheritable,omitempty"`
	Status               *TemplateStatus `json:"status,omitempty"`
	StatusDetails        NullableString  `json:"statusDetails,omitempty"`
	CreatedOn            NullableTime    `json:"createdOn,omitempty"`
	CreatedBy            NullableString  `json:"createdBy,omitempty"`
	ModifiedOn           NullableTime    `json:"modifiedOn,omitempty"`
	ModifiedBy           NullableString  `json:"modifiedBy,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignment struct for TemplateAssignment

func NewTemplateAssignment added in v1.0.8

func NewTemplateAssignment() *TemplateAssignment

NewTemplateAssignment instantiates a new TemplateAssignment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentWithDefaults added in v1.0.8

func NewTemplateAssignmentWithDefaults() *TemplateAssignment

NewTemplateAssignmentWithDefaults instantiates a new TemplateAssignment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignment) GetAssignedTenantId added in v1.0.8

func (o *TemplateAssignment) GetAssignedTenantId() string

GetAssignedTenantId returns the AssignedTenantId field value if set, zero value otherwise.

func (*TemplateAssignment) GetAssignedTenantIdOk added in v1.0.8

func (o *TemplateAssignment) GetAssignedTenantIdOk() (*string, bool)

GetAssignedTenantIdOk returns a tuple with the AssignedTenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignment) GetCreatedBy added in v1.0.8

func (o *TemplateAssignment) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignment) GetCreatedByOk added in v1.0.8

func (o *TemplateAssignment) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignment) GetCreatedOn added in v1.0.8

func (o *TemplateAssignment) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignment) GetCreatedOnOk added in v1.0.8

func (o *TemplateAssignment) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignment) GetId added in v1.0.8

func (o *TemplateAssignment) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TemplateAssignment) GetIdOk added in v1.0.8

func (o *TemplateAssignment) 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 (*TemplateAssignment) GetInheritable added in v1.0.8

func (o *TemplateAssignment) GetInheritable() bool

GetInheritable returns the Inheritable field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignment) GetInheritableOk added in v1.0.8

func (o *TemplateAssignment) GetInheritableOk() (*bool, bool)

GetInheritableOk returns a tuple with the Inheritable field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignment) GetModifiedBy added in v1.0.8

func (o *TemplateAssignment) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignment) GetModifiedByOk added in v1.0.8

func (o *TemplateAssignment) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignment) GetModifiedOn added in v1.0.8

func (o *TemplateAssignment) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignment) GetModifiedOnOk added in v1.0.8

func (o *TemplateAssignment) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignment) GetStatus added in v1.0.8

func (o *TemplateAssignment) GetStatus() TemplateStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*TemplateAssignment) GetStatusDetails added in v1.0.8

func (o *TemplateAssignment) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignment) GetStatusDetailsOk added in v1.0.8

func (o *TemplateAssignment) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignment) GetStatusOk added in v1.0.8

func (o *TemplateAssignment) GetStatusOk() (*TemplateStatus, 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 (*TemplateAssignment) GetTemplateId added in v1.0.8

func (o *TemplateAssignment) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*TemplateAssignment) GetTemplateIdOk added in v1.0.8

func (o *TemplateAssignment) 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 (*TemplateAssignment) GetTemplateName added in v1.0.8

func (o *TemplateAssignment) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*TemplateAssignment) GetTemplateNameOk added in v1.0.8

func (o *TemplateAssignment) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignment) GetTenantId added in v1.0.8

func (o *TemplateAssignment) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*TemplateAssignment) GetTenantIdOk added in v1.0.8

func (o *TemplateAssignment) 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 (*TemplateAssignment) HasAssignedTenantId added in v1.0.8

func (o *TemplateAssignment) HasAssignedTenantId() bool

HasAssignedTenantId returns a boolean if a field has been set.

func (*TemplateAssignment) HasCreatedBy added in v1.0.8

func (o *TemplateAssignment) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*TemplateAssignment) HasCreatedOn added in v1.0.8

func (o *TemplateAssignment) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*TemplateAssignment) HasId added in v1.0.8

func (o *TemplateAssignment) HasId() bool

HasId returns a boolean if a field has been set.

func (*TemplateAssignment) HasInheritable added in v1.0.8

func (o *TemplateAssignment) HasInheritable() bool

HasInheritable returns a boolean if a field has been set.

func (*TemplateAssignment) HasModifiedBy added in v1.0.8

func (o *TemplateAssignment) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*TemplateAssignment) HasModifiedOn added in v1.0.8

func (o *TemplateAssignment) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*TemplateAssignment) HasStatus added in v1.0.8

func (o *TemplateAssignment) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TemplateAssignment) HasStatusDetails added in v1.0.8

func (o *TemplateAssignment) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (*TemplateAssignment) HasTemplateId added in v1.0.8

func (o *TemplateAssignment) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*TemplateAssignment) HasTemplateName added in v1.0.8

func (o *TemplateAssignment) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (*TemplateAssignment) HasTenantId added in v1.0.8

func (o *TemplateAssignment) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (TemplateAssignment) MarshalJSON added in v1.0.8

func (o TemplateAssignment) MarshalJSON() ([]byte, error)

func (*TemplateAssignment) SetAssignedTenantId added in v1.0.8

func (o *TemplateAssignment) SetAssignedTenantId(v string)

SetAssignedTenantId gets a reference to the given string and assigns it to the AssignedTenantId field.

func (*TemplateAssignment) SetCreatedBy added in v1.0.8

func (o *TemplateAssignment) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*TemplateAssignment) SetCreatedByNil added in v1.0.8

func (o *TemplateAssignment) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*TemplateAssignment) SetCreatedOn added in v1.0.8

func (o *TemplateAssignment) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given NullableTime and assigns it to the CreatedOn field.

func (*TemplateAssignment) SetCreatedOnNil added in v1.0.8

func (o *TemplateAssignment) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

func (*TemplateAssignment) SetId added in v1.0.8

func (o *TemplateAssignment) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TemplateAssignment) SetInheritable added in v1.0.8

func (o *TemplateAssignment) SetInheritable(v bool)

SetInheritable gets a reference to the given NullableBool and assigns it to the Inheritable field.

func (*TemplateAssignment) SetInheritableNil added in v1.0.8

func (o *TemplateAssignment) SetInheritableNil()

SetInheritableNil sets the value for Inheritable to be an explicit nil

func (*TemplateAssignment) SetModifiedBy added in v1.0.8

func (o *TemplateAssignment) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*TemplateAssignment) SetModifiedByNil added in v1.0.8

func (o *TemplateAssignment) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*TemplateAssignment) SetModifiedOn added in v1.0.8

func (o *TemplateAssignment) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given NullableTime and assigns it to the ModifiedOn field.

func (*TemplateAssignment) SetModifiedOnNil added in v1.0.8

func (o *TemplateAssignment) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*TemplateAssignment) SetStatus added in v1.0.8

func (o *TemplateAssignment) SetStatus(v TemplateStatus)

SetStatus gets a reference to the given TemplateStatus and assigns it to the Status field.

func (*TemplateAssignment) SetStatusDetails added in v1.0.8

func (o *TemplateAssignment) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given NullableString and assigns it to the StatusDetails field.

func (*TemplateAssignment) SetStatusDetailsNil added in v1.0.8

func (o *TemplateAssignment) SetStatusDetailsNil()

SetStatusDetailsNil sets the value for StatusDetails to be an explicit nil

func (*TemplateAssignment) SetTemplateId added in v1.0.8

func (o *TemplateAssignment) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*TemplateAssignment) SetTemplateName added in v1.0.8

func (o *TemplateAssignment) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*TemplateAssignment) SetTenantId added in v1.0.8

func (o *TemplateAssignment) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*TemplateAssignment) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignment) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateAssignment) UnsetCreatedBy added in v1.0.8

func (o *TemplateAssignment) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*TemplateAssignment) UnsetCreatedOn added in v1.0.8

func (o *TemplateAssignment) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*TemplateAssignment) UnsetInheritable added in v1.0.8

func (o *TemplateAssignment) UnsetInheritable()

UnsetInheritable ensures that no value is present for Inheritable, not even an explicit nil

func (*TemplateAssignment) UnsetModifiedBy added in v1.0.8

func (o *TemplateAssignment) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*TemplateAssignment) UnsetModifiedOn added in v1.0.8

func (o *TemplateAssignment) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*TemplateAssignment) UnsetStatusDetails added in v1.0.8

func (o *TemplateAssignment) UnsetStatusDetails()

UnsetStatusDetails ensures that no value is present for StatusDetails, not even an explicit nil

type TemplateAssignmentAllOf added in v1.0.8

type TemplateAssignmentAllOf struct {
	Id                   *string      `json:"id,omitempty"`
	TemplateId           *string      `json:"templateId,omitempty"`
	TemplateName         *string      `json:"templateName,omitempty"`
	TenantId             *string      `json:"tenantId,omitempty"`
	AssignedTenantId     *string      `json:"assignedTenantId,omitempty"`
	Inheritable          NullableBool `json:"inheritable,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignmentAllOf struct for TemplateAssignmentAllOf

func NewTemplateAssignmentAllOf added in v1.0.8

func NewTemplateAssignmentAllOf() *TemplateAssignmentAllOf

NewTemplateAssignmentAllOf instantiates a new TemplateAssignmentAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentAllOfWithDefaults added in v1.0.8

func NewTemplateAssignmentAllOfWithDefaults() *TemplateAssignmentAllOf

NewTemplateAssignmentAllOfWithDefaults instantiates a new TemplateAssignmentAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignmentAllOf) GetAssignedTenantId added in v1.0.8

func (o *TemplateAssignmentAllOf) GetAssignedTenantId() string

GetAssignedTenantId returns the AssignedTenantId field value if set, zero value otherwise.

func (*TemplateAssignmentAllOf) GetAssignedTenantIdOk added in v1.0.8

func (o *TemplateAssignmentAllOf) GetAssignedTenantIdOk() (*string, bool)

GetAssignedTenantIdOk returns a tuple with the AssignedTenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentAllOf) GetId added in v1.0.8

func (o *TemplateAssignmentAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TemplateAssignmentAllOf) GetIdOk added in v1.0.8

func (o *TemplateAssignmentAllOf) 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 (*TemplateAssignmentAllOf) GetInheritable added in v1.0.8

func (o *TemplateAssignmentAllOf) GetInheritable() bool

GetInheritable returns the Inheritable field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentAllOf) GetInheritableOk added in v1.0.8

func (o *TemplateAssignmentAllOf) GetInheritableOk() (*bool, bool)

GetInheritableOk returns a tuple with the Inheritable field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentAllOf) GetTemplateId added in v1.0.8

func (o *TemplateAssignmentAllOf) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*TemplateAssignmentAllOf) GetTemplateIdOk added in v1.0.8

func (o *TemplateAssignmentAllOf) 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 (*TemplateAssignmentAllOf) GetTemplateName added in v1.0.8

func (o *TemplateAssignmentAllOf) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*TemplateAssignmentAllOf) GetTemplateNameOk added in v1.0.8

func (o *TemplateAssignmentAllOf) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentAllOf) GetTenantId added in v1.0.8

func (o *TemplateAssignmentAllOf) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*TemplateAssignmentAllOf) GetTenantIdOk added in v1.0.8

func (o *TemplateAssignmentAllOf) 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 (*TemplateAssignmentAllOf) HasAssignedTenantId added in v1.0.8

func (o *TemplateAssignmentAllOf) HasAssignedTenantId() bool

HasAssignedTenantId returns a boolean if a field has been set.

func (*TemplateAssignmentAllOf) HasId added in v1.0.8

func (o *TemplateAssignmentAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*TemplateAssignmentAllOf) HasInheritable added in v1.0.8

func (o *TemplateAssignmentAllOf) HasInheritable() bool

HasInheritable returns a boolean if a field has been set.

func (*TemplateAssignmentAllOf) HasTemplateId added in v1.0.8

func (o *TemplateAssignmentAllOf) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*TemplateAssignmentAllOf) HasTemplateName added in v1.0.8

func (o *TemplateAssignmentAllOf) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (*TemplateAssignmentAllOf) HasTenantId added in v1.0.8

func (o *TemplateAssignmentAllOf) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (TemplateAssignmentAllOf) MarshalJSON added in v1.0.8

func (o TemplateAssignmentAllOf) MarshalJSON() ([]byte, error)

func (*TemplateAssignmentAllOf) SetAssignedTenantId added in v1.0.8

func (o *TemplateAssignmentAllOf) SetAssignedTenantId(v string)

SetAssignedTenantId gets a reference to the given string and assigns it to the AssignedTenantId field.

func (*TemplateAssignmentAllOf) SetId added in v1.0.8

func (o *TemplateAssignmentAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TemplateAssignmentAllOf) SetInheritable added in v1.0.8

func (o *TemplateAssignmentAllOf) SetInheritable(v bool)

SetInheritable gets a reference to the given NullableBool and assigns it to the Inheritable field.

func (*TemplateAssignmentAllOf) SetInheritableNil added in v1.0.8

func (o *TemplateAssignmentAllOf) SetInheritableNil()

SetInheritableNil sets the value for Inheritable to be an explicit nil

func (*TemplateAssignmentAllOf) SetTemplateId added in v1.0.8

func (o *TemplateAssignmentAllOf) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*TemplateAssignmentAllOf) SetTemplateName added in v1.0.8

func (o *TemplateAssignmentAllOf) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*TemplateAssignmentAllOf) SetTenantId added in v1.0.8

func (o *TemplateAssignmentAllOf) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*TemplateAssignmentAllOf) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignmentAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateAssignmentAllOf) UnsetInheritable added in v1.0.8

func (o *TemplateAssignmentAllOf) UnsetInheritable()

UnsetInheritable ensures that no value is present for Inheritable, not even an explicit nil

type TemplateAssignmentResponse added in v1.0.8

type TemplateAssignmentResponse struct {
	Id                   *string         `json:"id,omitempty"`
	TemplateId           *string         `json:"templateId,omitempty"`
	TemplateName         *string         `json:"templateName,omitempty"`
	TenantId             *string         `json:"tenantId,omitempty"`
	AssignedTenantId     *string         `json:"assignedTenantId,omitempty"`
	Inheritable          NullableBool    `json:"inheritable,omitempty"`
	Status               *TemplateStatus `json:"status,omitempty"`
	StatusDetails        NullableString  `json:"statusDetails,omitempty"`
	CreatedOn            NullableTime    `json:"createdOn,omitempty"`
	CreatedBy            NullableString  `json:"createdBy,omitempty"`
	ModifiedOn           NullableTime    `json:"modifiedOn,omitempty"`
	ModifiedBy           NullableString  `json:"modifiedBy,omitempty"`
	ResponseStatus       *string         `json:"responseStatus,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignmentResponse struct for TemplateAssignmentResponse

func NewTemplateAssignmentResponse added in v1.0.8

func NewTemplateAssignmentResponse() *TemplateAssignmentResponse

NewTemplateAssignmentResponse instantiates a new TemplateAssignmentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentResponseWithDefaults added in v1.0.8

func NewTemplateAssignmentResponseWithDefaults() *TemplateAssignmentResponse

NewTemplateAssignmentResponseWithDefaults instantiates a new TemplateAssignmentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignmentResponse) GetAssignedTenantId added in v1.0.8

func (o *TemplateAssignmentResponse) GetAssignedTenantId() string

GetAssignedTenantId returns the AssignedTenantId field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetAssignedTenantIdOk added in v1.0.8

func (o *TemplateAssignmentResponse) GetAssignedTenantIdOk() (*string, bool)

GetAssignedTenantIdOk returns a tuple with the AssignedTenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentResponse) GetCreatedBy added in v1.0.8

func (o *TemplateAssignmentResponse) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentResponse) GetCreatedByOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentResponse) GetCreatedOn added in v1.0.8

func (o *TemplateAssignmentResponse) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentResponse) GetCreatedOnOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentResponse) GetId added in v1.0.8

GetId returns the Id field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetIdOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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 (*TemplateAssignmentResponse) GetInheritable added in v1.0.8

func (o *TemplateAssignmentResponse) GetInheritable() bool

GetInheritable returns the Inheritable field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentResponse) GetInheritableOk added in v1.0.8

func (o *TemplateAssignmentResponse) GetInheritableOk() (*bool, bool)

GetInheritableOk returns a tuple with the Inheritable field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentResponse) GetModifiedBy added in v1.0.8

func (o *TemplateAssignmentResponse) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentResponse) GetModifiedByOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentResponse) GetModifiedOn added in v1.0.8

func (o *TemplateAssignmentResponse) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentResponse) GetModifiedOnOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentResponse) GetResponseStatus added in v1.0.8

func (o *TemplateAssignmentResponse) GetResponseStatus() string

GetResponseStatus returns the ResponseStatus field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetResponseStatusOk added in v1.0.8

func (o *TemplateAssignmentResponse) GetResponseStatusOk() (*string, bool)

GetResponseStatusOk returns a tuple with the ResponseStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentResponse) GetStatus added in v1.0.8

GetStatus returns the Status field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetStatusDetails added in v1.0.8

func (o *TemplateAssignmentResponse) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentResponse) GetStatusDetailsOk added in v1.0.8

func (o *TemplateAssignmentResponse) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentResponse) GetStatusOk added in v1.0.8

func (o *TemplateAssignmentResponse) GetStatusOk() (*TemplateStatus, 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 (*TemplateAssignmentResponse) GetTemplateId added in v1.0.8

func (o *TemplateAssignmentResponse) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetTemplateIdOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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 (*TemplateAssignmentResponse) GetTemplateName added in v1.0.8

func (o *TemplateAssignmentResponse) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetTemplateNameOk added in v1.0.8

func (o *TemplateAssignmentResponse) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentResponse) GetTenantId added in v1.0.8

func (o *TemplateAssignmentResponse) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*TemplateAssignmentResponse) GetTenantIdOk added in v1.0.8

func (o *TemplateAssignmentResponse) 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 (*TemplateAssignmentResponse) HasAssignedTenantId added in v1.0.8

func (o *TemplateAssignmentResponse) HasAssignedTenantId() bool

HasAssignedTenantId returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasCreatedBy added in v1.0.8

func (o *TemplateAssignmentResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasCreatedOn added in v1.0.8

func (o *TemplateAssignmentResponse) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasId added in v1.0.8

func (o *TemplateAssignmentResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasInheritable added in v1.0.8

func (o *TemplateAssignmentResponse) HasInheritable() bool

HasInheritable returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasModifiedBy added in v1.0.8

func (o *TemplateAssignmentResponse) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasModifiedOn added in v1.0.8

func (o *TemplateAssignmentResponse) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasResponseStatus added in v1.0.8

func (o *TemplateAssignmentResponse) HasResponseStatus() bool

HasResponseStatus returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasStatus added in v1.0.8

func (o *TemplateAssignmentResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasStatusDetails added in v1.0.8

func (o *TemplateAssignmentResponse) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasTemplateId added in v1.0.8

func (o *TemplateAssignmentResponse) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasTemplateName added in v1.0.8

func (o *TemplateAssignmentResponse) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (*TemplateAssignmentResponse) HasTenantId added in v1.0.8

func (o *TemplateAssignmentResponse) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (TemplateAssignmentResponse) MarshalJSON added in v1.0.8

func (o TemplateAssignmentResponse) MarshalJSON() ([]byte, error)

func (*TemplateAssignmentResponse) SetAssignedTenantId added in v1.0.8

func (o *TemplateAssignmentResponse) SetAssignedTenantId(v string)

SetAssignedTenantId gets a reference to the given string and assigns it to the AssignedTenantId field.

func (*TemplateAssignmentResponse) SetCreatedBy added in v1.0.8

func (o *TemplateAssignmentResponse) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*TemplateAssignmentResponse) SetCreatedByNil added in v1.0.8

func (o *TemplateAssignmentResponse) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*TemplateAssignmentResponse) SetCreatedOn added in v1.0.8

func (o *TemplateAssignmentResponse) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given NullableTime and assigns it to the CreatedOn field.

func (*TemplateAssignmentResponse) SetCreatedOnNil added in v1.0.8

func (o *TemplateAssignmentResponse) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

func (*TemplateAssignmentResponse) SetId added in v1.0.8

func (o *TemplateAssignmentResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TemplateAssignmentResponse) SetInheritable added in v1.0.8

func (o *TemplateAssignmentResponse) SetInheritable(v bool)

SetInheritable gets a reference to the given NullableBool and assigns it to the Inheritable field.

func (*TemplateAssignmentResponse) SetInheritableNil added in v1.0.8

func (o *TemplateAssignmentResponse) SetInheritableNil()

SetInheritableNil sets the value for Inheritable to be an explicit nil

func (*TemplateAssignmentResponse) SetModifiedBy added in v1.0.8

func (o *TemplateAssignmentResponse) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*TemplateAssignmentResponse) SetModifiedByNil added in v1.0.8

func (o *TemplateAssignmentResponse) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*TemplateAssignmentResponse) SetModifiedOn added in v1.0.8

func (o *TemplateAssignmentResponse) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given NullableTime and assigns it to the ModifiedOn field.

func (*TemplateAssignmentResponse) SetModifiedOnNil added in v1.0.8

func (o *TemplateAssignmentResponse) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*TemplateAssignmentResponse) SetResponseStatus added in v1.0.8

func (o *TemplateAssignmentResponse) SetResponseStatus(v string)

SetResponseStatus gets a reference to the given string and assigns it to the ResponseStatus field.

func (*TemplateAssignmentResponse) SetStatus added in v1.0.8

SetStatus gets a reference to the given TemplateStatus and assigns it to the Status field.

func (*TemplateAssignmentResponse) SetStatusDetails added in v1.0.8

func (o *TemplateAssignmentResponse) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given NullableString and assigns it to the StatusDetails field.

func (*TemplateAssignmentResponse) SetStatusDetailsNil added in v1.0.8

func (o *TemplateAssignmentResponse) SetStatusDetailsNil()

SetStatusDetailsNil sets the value for StatusDetails to be an explicit nil

func (*TemplateAssignmentResponse) SetTemplateId added in v1.0.8

func (o *TemplateAssignmentResponse) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*TemplateAssignmentResponse) SetTemplateName added in v1.0.8

func (o *TemplateAssignmentResponse) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*TemplateAssignmentResponse) SetTenantId added in v1.0.8

func (o *TemplateAssignmentResponse) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*TemplateAssignmentResponse) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignmentResponse) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateAssignmentResponse) UnsetCreatedBy added in v1.0.8

func (o *TemplateAssignmentResponse) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*TemplateAssignmentResponse) UnsetCreatedOn added in v1.0.8

func (o *TemplateAssignmentResponse) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*TemplateAssignmentResponse) UnsetInheritable added in v1.0.8

func (o *TemplateAssignmentResponse) UnsetInheritable()

UnsetInheritable ensures that no value is present for Inheritable, not even an explicit nil

func (*TemplateAssignmentResponse) UnsetModifiedBy added in v1.0.8

func (o *TemplateAssignmentResponse) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*TemplateAssignmentResponse) UnsetModifiedOn added in v1.0.8

func (o *TemplateAssignmentResponse) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*TemplateAssignmentResponse) UnsetStatusDetails added in v1.0.8

func (o *TemplateAssignmentResponse) UnsetStatusDetails()

UnsetStatusDetails ensures that no value is present for StatusDetails, not even an explicit nil

type TemplateAssignmentResponseAllOf added in v1.0.8

type TemplateAssignmentResponseAllOf struct {
	ResponseStatus       *string `json:"responseStatus,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignmentResponseAllOf struct for TemplateAssignmentResponseAllOf

func NewTemplateAssignmentResponseAllOf added in v1.0.8

func NewTemplateAssignmentResponseAllOf() *TemplateAssignmentResponseAllOf

NewTemplateAssignmentResponseAllOf instantiates a new TemplateAssignmentResponseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentResponseAllOfWithDefaults added in v1.0.8

func NewTemplateAssignmentResponseAllOfWithDefaults() *TemplateAssignmentResponseAllOf

NewTemplateAssignmentResponseAllOfWithDefaults instantiates a new TemplateAssignmentResponseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignmentResponseAllOf) GetResponseStatus added in v1.0.8

func (o *TemplateAssignmentResponseAllOf) GetResponseStatus() string

GetResponseStatus returns the ResponseStatus field value if set, zero value otherwise.

func (*TemplateAssignmentResponseAllOf) GetResponseStatusOk added in v1.0.8

func (o *TemplateAssignmentResponseAllOf) GetResponseStatusOk() (*string, bool)

GetResponseStatusOk returns a tuple with the ResponseStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentResponseAllOf) HasResponseStatus added in v1.0.8

func (o *TemplateAssignmentResponseAllOf) HasResponseStatus() bool

HasResponseStatus returns a boolean if a field has been set.

func (TemplateAssignmentResponseAllOf) MarshalJSON added in v1.0.8

func (o TemplateAssignmentResponseAllOf) MarshalJSON() ([]byte, error)

func (*TemplateAssignmentResponseAllOf) SetResponseStatus added in v1.0.8

func (o *TemplateAssignmentResponseAllOf) SetResponseStatus(v string)

SetResponseStatus gets a reference to the given string and assigns it to the ResponseStatus field.

func (*TemplateAssignmentResponseAllOf) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignmentResponseAllOf) UnmarshalJSON(bytes []byte) (err error)

type TemplateAssignmentStatusPatch added in v1.0.8

type TemplateAssignmentStatusPatch struct {
	Status               TemplateStatus `json:"status"`
	StatusDetails        *string        `json:"statusDetails,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignmentStatusPatch struct for TemplateAssignmentStatusPatch

func NewTemplateAssignmentStatusPatch added in v1.0.8

func NewTemplateAssignmentStatusPatch(status TemplateStatus) *TemplateAssignmentStatusPatch

NewTemplateAssignmentStatusPatch instantiates a new TemplateAssignmentStatusPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentStatusPatchWithDefaults added in v1.0.8

func NewTemplateAssignmentStatusPatchWithDefaults() *TemplateAssignmentStatusPatch

NewTemplateAssignmentStatusPatchWithDefaults instantiates a new TemplateAssignmentStatusPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignmentStatusPatch) GetStatus added in v1.0.8

GetStatus returns the Status field value

func (*TemplateAssignmentStatusPatch) GetStatusDetails added in v1.0.8

func (o *TemplateAssignmentStatusPatch) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise.

func (*TemplateAssignmentStatusPatch) GetStatusDetailsOk added in v1.0.8

func (o *TemplateAssignmentStatusPatch) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAssignmentStatusPatch) GetStatusOk added in v1.0.8

func (o *TemplateAssignmentStatusPatch) GetStatusOk() (*TemplateStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*TemplateAssignmentStatusPatch) HasStatusDetails added in v1.0.8

func (o *TemplateAssignmentStatusPatch) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (TemplateAssignmentStatusPatch) MarshalJSON added in v1.0.8

func (o TemplateAssignmentStatusPatch) MarshalJSON() ([]byte, error)

func (*TemplateAssignmentStatusPatch) SetStatus added in v1.0.8

SetStatus sets field value

func (*TemplateAssignmentStatusPatch) SetStatusDetails added in v1.0.8

func (o *TemplateAssignmentStatusPatch) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given string and assigns it to the StatusDetails field.

func (*TemplateAssignmentStatusPatch) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignmentStatusPatch) UnmarshalJSON(bytes []byte) (err error)

type TemplateAssignmentsApiService added in v1.0.8

type TemplateAssignmentsApiService service

TemplateAssignmentsApiService TemplateAssignmentsApi service

func (*TemplateAssignmentsApiService) BatchAssignTemplate added in v1.0.8

* BatchAssignTemplate Assigns a template 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 ApiBatchAssignTemplateRequest

func (*TemplateAssignmentsApiService) BatchAssignTemplateExecute added in v1.0.8

* Execute executes the request * @return []TemplateAssignmentResponse

func (*TemplateAssignmentsApiService) BatchUnassignTemplate added in v1.0.8

* BatchUnassignTemplate Unassigns a template 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 ApiBatchUnassignTemplateRequest

func (*TemplateAssignmentsApiService) BatchUnassignTemplateExecute added in v1.0.8

* Execute executes the request * @return []TemplateAssignmentResponse

func (*TemplateAssignmentsApiService) GetAssignment added in v1.0.8

* GetAssignment Gets a template assignment. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id ID of template assignment record. * @return ApiGetAssignmentRequest

func (*TemplateAssignmentsApiService) GetAssignmentExecute added in v1.0.8

* Execute executes the request * @return TemplateAssignment

func (*TemplateAssignmentsApiService) GetAssignmentHistory added in v1.0.8

* GetAssignmentHistory Gets a template assignment history. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetAssignmentHistoryRequest

func (*TemplateAssignmentsApiService) GetAssignmentHistoryExecute added in v1.0.8

* Execute executes the request * @return []TemplateAssignment

func (*TemplateAssignmentsApiService) GetTemplateAssignmentsPage added in v1.0.8

* GetTemplateAssignmentsPage Returns a page of template assignments. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetTemplateAssignmentsPageRequest

func (*TemplateAssignmentsApiService) GetTemplateAssignmentsPageExecute added in v1.0.8

* Execute executes the request * @return TemplateAssignmentsPage

func (*TemplateAssignmentsApiService) UpdateAssignmentStatus added in v1.0.8

* UpdateAssignmentStatus Updates a template assignment status. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id ID of template assignment record. * @return ApiUpdateAssignmentStatusRequest

func (*TemplateAssignmentsApiService) UpdateAssignmentStatusExecute added in v1.0.8

* Execute executes the request * @return TemplateAssignment

type TemplateAssignmentsPage added in v1.0.8

type TemplateAssignmentsPage struct {
	Page                 *int32                `json:"page,omitempty"`
	PageSize             *int32                `json:"pageSize,omitempty"`
	TotalItems           NullableInt64         `json:"totalItems,omitempty"`
	HasNext              NullableBool          `json:"hasNext,omitempty"`
	HasPrevious          NullableBool          `json:"hasPrevious,omitempty"`
	SortBy               NullableString        `json:"sortBy,omitempty"`
	SortOrder            NullableString        `json:"sortOrder,omitempty"`
	Contents             *[]TemplateAssignment `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignmentsPage struct for TemplateAssignmentsPage

func NewTemplateAssignmentsPage added in v1.0.8

func NewTemplateAssignmentsPage() *TemplateAssignmentsPage

NewTemplateAssignmentsPage instantiates a new TemplateAssignmentsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentsPageWithDefaults added in v1.0.8

func NewTemplateAssignmentsPageWithDefaults() *TemplateAssignmentsPage

NewTemplateAssignmentsPageWithDefaults instantiates a new TemplateAssignmentsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignmentsPage) GetContents added in v1.0.8

func (o *TemplateAssignmentsPage) GetContents() []TemplateAssignment

GetContents returns the Contents field value if set, zero value otherwise.

func (*TemplateAssignmentsPage) GetContentsOk added in v1.0.8

func (o *TemplateAssignmentsPage) GetContentsOk() (*[]TemplateAssignment, 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 (*TemplateAssignmentsPage) GetHasNext added in v1.0.8

func (o *TemplateAssignmentsPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentsPage) GetHasNextOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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 (*TemplateAssignmentsPage) GetHasPrevious added in v1.0.8

func (o *TemplateAssignmentsPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentsPage) GetHasPreviousOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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 (*TemplateAssignmentsPage) GetPage added in v1.0.8

func (o *TemplateAssignmentsPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*TemplateAssignmentsPage) GetPageOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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 (*TemplateAssignmentsPage) GetPageSize added in v1.0.8

func (o *TemplateAssignmentsPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*TemplateAssignmentsPage) GetPageSizeOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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 (*TemplateAssignmentsPage) GetSortBy added in v1.0.8

func (o *TemplateAssignmentsPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentsPage) GetSortByOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentsPage) GetSortOrder added in v1.0.8

func (o *TemplateAssignmentsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentsPage) GetSortOrderOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentsPage) GetTotalItems added in v1.0.8

func (o *TemplateAssignmentsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateAssignmentsPage) GetTotalItemsOk added in v1.0.8

func (o *TemplateAssignmentsPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateAssignmentsPage) HasContents added in v1.0.8

func (o *TemplateAssignmentsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasHasNext added in v1.0.8

func (o *TemplateAssignmentsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasHasPrevious added in v1.0.8

func (o *TemplateAssignmentsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasPage added in v1.0.8

func (o *TemplateAssignmentsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasPageSize added in v1.0.8

func (o *TemplateAssignmentsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasSortBy added in v1.0.8

func (o *TemplateAssignmentsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasSortOrder added in v1.0.8

func (o *TemplateAssignmentsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*TemplateAssignmentsPage) HasTotalItems added in v1.0.8

func (o *TemplateAssignmentsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (TemplateAssignmentsPage) MarshalJSON added in v1.0.8

func (o TemplateAssignmentsPage) MarshalJSON() ([]byte, error)

func (*TemplateAssignmentsPage) SetContents added in v1.0.8

func (o *TemplateAssignmentsPage) SetContents(v []TemplateAssignment)

SetContents gets a reference to the given []TemplateAssignment and assigns it to the Contents field.

func (*TemplateAssignmentsPage) SetHasNext added in v1.0.8

func (o *TemplateAssignmentsPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*TemplateAssignmentsPage) SetHasNextNil added in v1.0.8

func (o *TemplateAssignmentsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*TemplateAssignmentsPage) SetHasPrevious added in v1.0.8

func (o *TemplateAssignmentsPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*TemplateAssignmentsPage) SetHasPreviousNil added in v1.0.8

func (o *TemplateAssignmentsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*TemplateAssignmentsPage) SetPage added in v1.0.8

func (o *TemplateAssignmentsPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*TemplateAssignmentsPage) SetPageSize added in v1.0.8

func (o *TemplateAssignmentsPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*TemplateAssignmentsPage) SetSortBy added in v1.0.8

func (o *TemplateAssignmentsPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*TemplateAssignmentsPage) SetSortByNil added in v1.0.8

func (o *TemplateAssignmentsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*TemplateAssignmentsPage) SetSortOrder added in v1.0.8

func (o *TemplateAssignmentsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*TemplateAssignmentsPage) SetSortOrderNil added in v1.0.8

func (o *TemplateAssignmentsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*TemplateAssignmentsPage) SetTotalItems added in v1.0.8

func (o *TemplateAssignmentsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*TemplateAssignmentsPage) SetTotalItemsNil added in v1.0.8

func (o *TemplateAssignmentsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*TemplateAssignmentsPage) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignmentsPage) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateAssignmentsPage) UnsetHasNext added in v1.0.8

func (o *TemplateAssignmentsPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*TemplateAssignmentsPage) UnsetHasPrevious added in v1.0.8

func (o *TemplateAssignmentsPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*TemplateAssignmentsPage) UnsetSortBy added in v1.0.8

func (o *TemplateAssignmentsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*TemplateAssignmentsPage) UnsetSortOrder added in v1.0.8

func (o *TemplateAssignmentsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*TemplateAssignmentsPage) UnsetTotalItems added in v1.0.8

func (o *TemplateAssignmentsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type TemplateAssignmentsPageAllOf added in v1.0.8

type TemplateAssignmentsPageAllOf struct {
	Contents             *[]TemplateAssignment `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateAssignmentsPageAllOf struct for TemplateAssignmentsPageAllOf

func NewTemplateAssignmentsPageAllOf added in v1.0.8

func NewTemplateAssignmentsPageAllOf() *TemplateAssignmentsPageAllOf

NewTemplateAssignmentsPageAllOf instantiates a new TemplateAssignmentsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAssignmentsPageAllOfWithDefaults added in v1.0.8

func NewTemplateAssignmentsPageAllOfWithDefaults() *TemplateAssignmentsPageAllOf

NewTemplateAssignmentsPageAllOfWithDefaults instantiates a new TemplateAssignmentsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAssignmentsPageAllOf) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*TemplateAssignmentsPageAllOf) GetContentsOk added in v1.0.8

func (o *TemplateAssignmentsPageAllOf) GetContentsOk() (*[]TemplateAssignment, 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 (*TemplateAssignmentsPageAllOf) HasContents added in v1.0.8

func (o *TemplateAssignmentsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (TemplateAssignmentsPageAllOf) MarshalJSON added in v1.0.8

func (o TemplateAssignmentsPageAllOf) MarshalJSON() ([]byte, error)

func (*TemplateAssignmentsPageAllOf) SetContents added in v1.0.8

SetContents gets a reference to the given []TemplateAssignment and assigns it to the Contents field.

func (*TemplateAssignmentsPageAllOf) UnmarshalJSON added in v1.0.8

func (o *TemplateAssignmentsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type TemplateCreate added in v1.0.8

type TemplateCreate struct {
	ExternalId           NullableString     `json:"externalId,omitempty"`
	Name                 string             `json:"name"`
	Description          *string            `json:"description,omitempty"`
	ServiceType          string             `json:"serviceType"`
	Type                 string             `json:"type"`
	Subtype              NullableString     `json:"subtype,omitempty"`
	Configuration        *string            `json:"configuration,omitempty"`
	Attributes           *map[string]string `json:"attributes,omitempty"`
	Tags                 *[]string          `json:"tags,omitempty"`
	Notes                NullableString     `json:"notes,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateCreate struct for TemplateCreate

func NewTemplateCreate added in v1.0.8

func NewTemplateCreate(name string, serviceType string, type_ string) *TemplateCreate

NewTemplateCreate instantiates a new TemplateCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateCreateWithDefaults added in v1.0.8

func NewTemplateCreateWithDefaults() *TemplateCreate

NewTemplateCreateWithDefaults instantiates a new TemplateCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateCreate) GetAttributes added in v1.0.8

func (o *TemplateCreate) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*TemplateCreate) GetAttributesOk added in v1.0.8

func (o *TemplateCreate) 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 (*TemplateCreate) GetConfiguration added in v1.0.8

func (o *TemplateCreate) GetConfiguration() string

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*TemplateCreate) GetConfigurationOk added in v1.0.8

func (o *TemplateCreate) GetConfigurationOk() (*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 (*TemplateCreate) GetDescription added in v1.0.8

func (o *TemplateCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TemplateCreate) GetDescriptionOk added in v1.0.8

func (o *TemplateCreate) 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 (*TemplateCreate) GetExternalId added in v1.0.8

func (o *TemplateCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateCreate) GetExternalIdOk added in v1.0.8

func (o *TemplateCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateCreate) GetName added in v1.0.8

func (o *TemplateCreate) GetName() string

GetName returns the Name field value

func (*TemplateCreate) GetNameOk added in v1.0.8

func (o *TemplateCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TemplateCreate) GetNotes added in v1.0.8

func (o *TemplateCreate) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateCreate) GetNotesOk added in v1.0.8

func (o *TemplateCreate) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateCreate) GetServiceType added in v1.0.8

func (o *TemplateCreate) GetServiceType() string

GetServiceType returns the ServiceType field value

func (*TemplateCreate) GetServiceTypeOk added in v1.0.8

func (o *TemplateCreate) GetServiceTypeOk() (*string, bool)

GetServiceTypeOk returns a tuple with the ServiceType field value and a boolean to check if the value has been set.

func (*TemplateCreate) GetSubtype added in v1.0.8

func (o *TemplateCreate) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateCreate) GetSubtypeOk added in v1.0.8

func (o *TemplateCreate) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateCreate) GetTags added in v1.0.8

func (o *TemplateCreate) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*TemplateCreate) GetTagsOk added in v1.0.8

func (o *TemplateCreate) GetTagsOk() (*[]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 (*TemplateCreate) GetType added in v1.0.8

func (o *TemplateCreate) GetType() string

GetType returns the Type field value

func (*TemplateCreate) GetTypeOk added in v1.0.8

func (o *TemplateCreate) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TemplateCreate) HasAttributes added in v1.0.8

func (o *TemplateCreate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*TemplateCreate) HasConfiguration added in v1.0.8

func (o *TemplateCreate) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*TemplateCreate) HasDescription added in v1.0.8

func (o *TemplateCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TemplateCreate) HasExternalId added in v1.0.8

func (o *TemplateCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*TemplateCreate) HasNotes added in v1.0.8

func (o *TemplateCreate) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*TemplateCreate) HasSubtype added in v1.0.8

func (o *TemplateCreate) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*TemplateCreate) HasTags added in v1.0.8

func (o *TemplateCreate) HasTags() bool

HasTags returns a boolean if a field has been set.

func (TemplateCreate) MarshalJSON added in v1.0.8

func (o TemplateCreate) MarshalJSON() ([]byte, error)

func (*TemplateCreate) SetAttributes added in v1.0.8

func (o *TemplateCreate) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*TemplateCreate) SetConfiguration added in v1.0.8

func (o *TemplateCreate) SetConfiguration(v string)

SetConfiguration gets a reference to the given string and assigns it to the Configuration field.

func (*TemplateCreate) SetDescription added in v1.0.8

func (o *TemplateCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TemplateCreate) SetExternalId added in v1.0.8

func (o *TemplateCreate) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*TemplateCreate) SetExternalIdNil added in v1.0.9

func (o *TemplateCreate) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

func (*TemplateCreate) SetName added in v1.0.8

func (o *TemplateCreate) SetName(v string)

SetName sets field value

func (*TemplateCreate) SetNotes added in v1.0.8

func (o *TemplateCreate) SetNotes(v string)

SetNotes gets a reference to the given NullableString and assigns it to the Notes field.

func (*TemplateCreate) SetNotesNil added in v1.0.9

func (o *TemplateCreate) SetNotesNil()

SetNotesNil sets the value for Notes to be an explicit nil

func (*TemplateCreate) SetServiceType added in v1.0.8

func (o *TemplateCreate) SetServiceType(v string)

SetServiceType sets field value

func (*TemplateCreate) SetSubtype added in v1.0.8

func (o *TemplateCreate) SetSubtype(v string)

SetSubtype gets a reference to the given NullableString and assigns it to the Subtype field.

func (*TemplateCreate) SetSubtypeNil added in v1.0.8

func (o *TemplateCreate) SetSubtypeNil()

SetSubtypeNil sets the value for Subtype to be an explicit nil

func (*TemplateCreate) SetTags added in v1.0.8

func (o *TemplateCreate) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (*TemplateCreate) SetType added in v1.0.8

func (o *TemplateCreate) SetType(v string)

SetType sets field value

func (*TemplateCreate) UnmarshalJSON added in v1.0.8

func (o *TemplateCreate) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateCreate) UnsetExternalId added in v1.0.9

func (o *TemplateCreate) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

func (*TemplateCreate) UnsetNotes added in v1.0.9

func (o *TemplateCreate) UnsetNotes()

UnsetNotes ensures that no value is present for Notes, not even an explicit nil

func (*TemplateCreate) UnsetSubtype added in v1.0.8

func (o *TemplateCreate) UnsetSubtype()

UnsetSubtype ensures that no value is present for Subtype, not even an explicit nil

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*TemplateParameterValidator) UnmarshalJSON added in v1.0.5

func (o *TemplateParameterValidator) UnmarshalJSON(bytes []byte) (err error)

type TemplatePatch added in v1.0.8

type TemplatePatch struct {
	Name                 *string            `json:"name,omitempty"`
	Description          *string            `json:"description,omitempty"`
	ServiceType          *string            `json:"serviceType,omitempty"`
	Type                 *string            `json:"type,omitempty"`
	Subtype              NullableString     `json:"subtype,omitempty"`
	Configuration        *string            `json:"configuration,omitempty"`
	Attributes           *map[string]string `json:"attributes,omitempty"`
	Tags                 *[]string          `json:"tags,omitempty"`
	Notes                *string            `json:"notes,omitempty"`
	Status               *TemplateStatus    `json:"status,omitempty"`
	StatusDetails        *string            `json:"statusDetails,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplatePatch struct for TemplatePatch

func NewTemplatePatch added in v1.0.8

func NewTemplatePatch() *TemplatePatch

NewTemplatePatch instantiates a new TemplatePatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplatePatchWithDefaults added in v1.0.8

func NewTemplatePatchWithDefaults() *TemplatePatch

NewTemplatePatchWithDefaults instantiates a new TemplatePatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplatePatch) GetAttributes added in v1.0.8

func (o *TemplatePatch) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*TemplatePatch) GetAttributesOk added in v1.0.8

func (o *TemplatePatch) 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 (*TemplatePatch) GetConfiguration added in v1.0.8

func (o *TemplatePatch) GetConfiguration() string

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*TemplatePatch) GetConfigurationOk added in v1.0.8

func (o *TemplatePatch) GetConfigurationOk() (*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 (*TemplatePatch) GetDescription added in v1.0.8

func (o *TemplatePatch) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TemplatePatch) GetDescriptionOk added in v1.0.8

func (o *TemplatePatch) 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 (*TemplatePatch) GetName added in v1.0.8

func (o *TemplatePatch) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TemplatePatch) GetNameOk added in v1.0.8

func (o *TemplatePatch) 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 (*TemplatePatch) GetNotes added in v1.0.8

func (o *TemplatePatch) GetNotes() string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*TemplatePatch) GetNotesOk added in v1.0.8

func (o *TemplatePatch) GetNotesOk() (*string, bool)

GetNotesOk returns a tuple with the Notes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePatch) GetServiceType added in v1.0.8

func (o *TemplatePatch) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*TemplatePatch) GetServiceTypeOk added in v1.0.8

func (o *TemplatePatch) 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 (*TemplatePatch) GetStatus added in v1.0.8

func (o *TemplatePatch) GetStatus() TemplateStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*TemplatePatch) GetStatusDetails added in v1.0.8

func (o *TemplatePatch) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise.

func (*TemplatePatch) GetStatusDetailsOk added in v1.0.8

func (o *TemplatePatch) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePatch) GetStatusOk added in v1.0.8

func (o *TemplatePatch) GetStatusOk() (*TemplateStatus, 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 (*TemplatePatch) GetSubtype added in v1.0.8

func (o *TemplatePatch) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatePatch) GetSubtypeOk added in v1.0.8

func (o *TemplatePatch) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePatch) GetTags added in v1.0.8

func (o *TemplatePatch) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*TemplatePatch) GetTagsOk added in v1.0.8

func (o *TemplatePatch) GetTagsOk() (*[]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 (*TemplatePatch) GetType added in v1.0.8

func (o *TemplatePatch) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TemplatePatch) GetTypeOk added in v1.0.8

func (o *TemplatePatch) 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 (*TemplatePatch) HasAttributes added in v1.0.8

func (o *TemplatePatch) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*TemplatePatch) HasConfiguration added in v1.0.8

func (o *TemplatePatch) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*TemplatePatch) HasDescription added in v1.0.8

func (o *TemplatePatch) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TemplatePatch) HasName added in v1.0.8

func (o *TemplatePatch) HasName() bool

HasName returns a boolean if a field has been set.

func (*TemplatePatch) HasNotes added in v1.0.8

func (o *TemplatePatch) HasNotes() bool

HasNotes returns a boolean if a field has been set.

func (*TemplatePatch) HasServiceType added in v1.0.8

func (o *TemplatePatch) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*TemplatePatch) HasStatus added in v1.0.8

func (o *TemplatePatch) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TemplatePatch) HasStatusDetails added in v1.0.8

func (o *TemplatePatch) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (*TemplatePatch) HasSubtype added in v1.0.8

func (o *TemplatePatch) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*TemplatePatch) HasTags added in v1.0.8

func (o *TemplatePatch) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*TemplatePatch) HasType added in v1.0.8

func (o *TemplatePatch) HasType() bool

HasType returns a boolean if a field has been set.

func (TemplatePatch) MarshalJSON added in v1.0.8

func (o TemplatePatch) MarshalJSON() ([]byte, error)

func (*TemplatePatch) SetAttributes added in v1.0.8

func (o *TemplatePatch) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*TemplatePatch) SetConfiguration added in v1.0.8

func (o *TemplatePatch) SetConfiguration(v string)

SetConfiguration gets a reference to the given string and assigns it to the Configuration field.

func (*TemplatePatch) SetDescription added in v1.0.8

func (o *TemplatePatch) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TemplatePatch) SetName added in v1.0.8

func (o *TemplatePatch) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TemplatePatch) SetNotes added in v1.0.8

func (o *TemplatePatch) SetNotes(v string)

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*TemplatePatch) SetServiceType added in v1.0.8

func (o *TemplatePatch) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

func (*TemplatePatch) SetStatus added in v1.0.8

func (o *TemplatePatch) SetStatus(v TemplateStatus)

SetStatus gets a reference to the given TemplateStatus and assigns it to the Status field.

func (*TemplatePatch) SetStatusDetails added in v1.0.8

func (o *TemplatePatch) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given string and assigns it to the StatusDetails field.

func (*TemplatePatch) SetSubtype added in v1.0.8

func (o *TemplatePatch) SetSubtype(v string)

SetSubtype gets a reference to the given NullableString and assigns it to the Subtype field.

func (*TemplatePatch) SetSubtypeNil added in v1.0.8

func (o *TemplatePatch) SetSubtypeNil()

SetSubtypeNil sets the value for Subtype to be an explicit nil

func (*TemplatePatch) SetTags added in v1.0.8

func (o *TemplatePatch) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (*TemplatePatch) SetType added in v1.0.8

func (o *TemplatePatch) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*TemplatePatch) UnmarshalJSON added in v1.0.8

func (o *TemplatePatch) UnmarshalJSON(bytes []byte) (err error)

func (*TemplatePatch) UnsetSubtype added in v1.0.8

func (o *TemplatePatch) UnsetSubtype()

UnsetSubtype ensures that no value is present for Subtype, not even an explicit nil

type TemplateStatus added in v1.0.8

type TemplateStatus string

TemplateStatus the model 'TemplateStatus'

const (
	TEMPLATESTATUS_NEW     TemplateStatus = "NEW"
	TEMPLATESTATUS_PENDING TemplateStatus = "PENDING"
	TEMPLATESTATUS_FAILED  TemplateStatus = "FAILED"
	TEMPLATESTATUS_SUCCESS TemplateStatus = "SUCCESS"
	TEMPLATESTATUS_DELETE  TemplateStatus = "DELETE"
	TEMPLATESTATUS_ERROR   TemplateStatus = "ERROR"
)

List of TemplateStatus

func (TemplateStatus) Ptr added in v1.0.8

func (v TemplateStatus) Ptr() *TemplateStatus

Ptr returns reference to TemplateStatus value

func (*TemplateStatus) UnmarshalJSON added in v1.0.8

func (v *TemplateStatus) UnmarshalJSON(src []byte) error

type TemplateStatusMeta added in v1.0.8

type TemplateStatusMeta struct {
	Status               *TemplateStatus `json:"status,omitempty"`
	StatusDetails        NullableString  `json:"statusDetails,omitempty"`
	CreatedOn            NullableTime    `json:"createdOn,omitempty"`
	CreatedBy            NullableString  `json:"createdBy,omitempty"`
	ModifiedOn           NullableTime    `json:"modifiedOn,omitempty"`
	ModifiedBy           NullableString  `json:"modifiedBy,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplateStatusMeta struct for TemplateStatusMeta

func NewTemplateStatusMeta added in v1.0.8

func NewTemplateStatusMeta() *TemplateStatusMeta

NewTemplateStatusMeta instantiates a new TemplateStatusMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateStatusMetaWithDefaults added in v1.0.8

func NewTemplateStatusMetaWithDefaults() *TemplateStatusMeta

NewTemplateStatusMetaWithDefaults instantiates a new TemplateStatusMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateStatusMeta) GetCreatedBy added in v1.0.8

func (o *TemplateStatusMeta) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateStatusMeta) GetCreatedByOk added in v1.0.8

func (o *TemplateStatusMeta) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateStatusMeta) GetCreatedOn added in v1.0.8

func (o *TemplateStatusMeta) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateStatusMeta) GetCreatedOnOk added in v1.0.8

func (o *TemplateStatusMeta) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateStatusMeta) GetModifiedBy added in v1.0.8

func (o *TemplateStatusMeta) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateStatusMeta) GetModifiedByOk added in v1.0.8

func (o *TemplateStatusMeta) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateStatusMeta) GetModifiedOn added in v1.0.8

func (o *TemplateStatusMeta) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateStatusMeta) GetModifiedOnOk added in v1.0.8

func (o *TemplateStatusMeta) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateStatusMeta) GetStatus added in v1.0.8

func (o *TemplateStatusMeta) GetStatus() TemplateStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*TemplateStatusMeta) GetStatusDetails added in v1.0.8

func (o *TemplateStatusMeta) GetStatusDetails() string

GetStatusDetails returns the StatusDetails field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateStatusMeta) GetStatusDetailsOk added in v1.0.8

func (o *TemplateStatusMeta) GetStatusDetailsOk() (*string, bool)

GetStatusDetailsOk returns a tuple with the StatusDetails field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateStatusMeta) GetStatusOk added in v1.0.8

func (o *TemplateStatusMeta) GetStatusOk() (*TemplateStatus, 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 (*TemplateStatusMeta) HasCreatedBy added in v1.0.8

func (o *TemplateStatusMeta) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*TemplateStatusMeta) HasCreatedOn added in v1.0.8

func (o *TemplateStatusMeta) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*TemplateStatusMeta) HasModifiedBy added in v1.0.8

func (o *TemplateStatusMeta) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*TemplateStatusMeta) HasModifiedOn added in v1.0.8

func (o *TemplateStatusMeta) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*TemplateStatusMeta) HasStatus added in v1.0.8

func (o *TemplateStatusMeta) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TemplateStatusMeta) HasStatusDetails added in v1.0.8

func (o *TemplateStatusMeta) HasStatusDetails() bool

HasStatusDetails returns a boolean if a field has been set.

func (TemplateStatusMeta) MarshalJSON added in v1.0.8

func (o TemplateStatusMeta) MarshalJSON() ([]byte, error)

func (*TemplateStatusMeta) SetCreatedBy added in v1.0.8

func (o *TemplateStatusMeta) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*TemplateStatusMeta) SetCreatedByNil added in v1.0.8

func (o *TemplateStatusMeta) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*TemplateStatusMeta) SetCreatedOn added in v1.0.8

func (o *TemplateStatusMeta) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given NullableTime and assigns it to the CreatedOn field.

func (*TemplateStatusMeta) SetCreatedOnNil added in v1.0.8

func (o *TemplateStatusMeta) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

func (*TemplateStatusMeta) SetModifiedBy added in v1.0.8

func (o *TemplateStatusMeta) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given NullableString and assigns it to the ModifiedBy field.

func (*TemplateStatusMeta) SetModifiedByNil added in v1.0.8

func (o *TemplateStatusMeta) SetModifiedByNil()

SetModifiedByNil sets the value for ModifiedBy to be an explicit nil

func (*TemplateStatusMeta) SetModifiedOn added in v1.0.8

func (o *TemplateStatusMeta) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given NullableTime and assigns it to the ModifiedOn field.

func (*TemplateStatusMeta) SetModifiedOnNil added in v1.0.8

func (o *TemplateStatusMeta) SetModifiedOnNil()

SetModifiedOnNil sets the value for ModifiedOn to be an explicit nil

func (*TemplateStatusMeta) SetStatus added in v1.0.8

func (o *TemplateStatusMeta) SetStatus(v TemplateStatus)

SetStatus gets a reference to the given TemplateStatus and assigns it to the Status field.

func (*TemplateStatusMeta) SetStatusDetails added in v1.0.8

func (o *TemplateStatusMeta) SetStatusDetails(v string)

SetStatusDetails gets a reference to the given NullableString and assigns it to the StatusDetails field.

func (*TemplateStatusMeta) SetStatusDetailsNil added in v1.0.8

func (o *TemplateStatusMeta) SetStatusDetailsNil()

SetStatusDetailsNil sets the value for StatusDetails to be an explicit nil

func (*TemplateStatusMeta) UnmarshalJSON added in v1.0.8

func (o *TemplateStatusMeta) UnmarshalJSON(bytes []byte) (err error)

func (*TemplateStatusMeta) UnsetCreatedBy added in v1.0.8

func (o *TemplateStatusMeta) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*TemplateStatusMeta) UnsetCreatedOn added in v1.0.8

func (o *TemplateStatusMeta) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*TemplateStatusMeta) UnsetModifiedBy added in v1.0.8

func (o *TemplateStatusMeta) UnsetModifiedBy()

UnsetModifiedBy ensures that no value is present for ModifiedBy, not even an explicit nil

func (*TemplateStatusMeta) UnsetModifiedOn added in v1.0.8

func (o *TemplateStatusMeta) UnsetModifiedOn()

UnsetModifiedOn ensures that no value is present for ModifiedOn, not even an explicit nil

func (*TemplateStatusMeta) UnsetStatusDetails added in v1.0.8

func (o *TemplateStatusMeta) UnsetStatusDetails()

UnsetStatusDetails ensures that no value is present for StatusDetails, not even an explicit nil

type TemplatesApiService added in v1.0.8

type TemplatesApiService service

TemplatesApiService TemplatesApi service

func (*TemplatesApiService) DeleteTemplate added in v1.0.8

* DeleteTemplate Deletes a template. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteTemplateRequest

func (*TemplatesApiService) DeleteTemplateExecute added in v1.0.8

func (a *TemplatesApiService) DeleteTemplateExecute(r ApiDeleteTemplateRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*TemplatesApiService) GetTemplate added in v1.0.8

* GetTemplate Returns a template by id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetTemplateRequest

func (*TemplatesApiService) GetTemplateExecute added in v1.0.8

* Execute executes the request * @return Template

func (*TemplatesApiService) GetTemplateHistory added in v1.0.8

* GetTemplateHistory Returns a template history by id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetTemplateHistoryRequest

func (*TemplatesApiService) GetTemplateHistoryExecute added in v1.0.8

func (a *TemplatesApiService) GetTemplateHistoryExecute(r ApiGetTemplateHistoryRequest) ([]Template, *_nethttp.Response, error)

* Execute executes the request * @return []Template

func (*TemplatesApiService) GetTemplatesPage added in v1.0.8

* GetTemplatesPage Returns a page of templates. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetTemplatesPageRequest

func (*TemplatesApiService) GetTemplatesPageExecute added in v1.0.8

* Execute executes the request * @return TemplatesPage

func (*TemplatesApiService) ImportTemplate added in v1.0.8

* ImportTemplate Imports a template. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiImportTemplateRequest

func (*TemplatesApiService) ImportTemplateExecute added in v1.0.8

* Execute executes the request * @return Template

func (*TemplatesApiService) UpdateTemplateStatus added in v1.0.8

* UpdateTemplateStatus Updates a template status. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateTemplateStatusRequest

func (*TemplatesApiService) UpdateTemplateStatusExecute added in v1.0.8

func (a *TemplatesApiService) UpdateTemplateStatusExecute(r ApiUpdateTemplateStatusRequest) (Template, *_nethttp.Response, error)

* Execute executes the request * @return Template

type TemplatesPage added in v1.0.8

type TemplatesPage struct {
	Page                 *int32         `json:"page,omitempty"`
	PageSize             *int32         `json:"pageSize,omitempty"`
	TotalItems           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Template    `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplatesPage struct for TemplatesPage

func NewTemplatesPage added in v1.0.8

func NewTemplatesPage() *TemplatesPage

NewTemplatesPage instantiates a new TemplatesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplatesPageWithDefaults added in v1.0.8

func NewTemplatesPageWithDefaults() *TemplatesPage

NewTemplatesPageWithDefaults instantiates a new TemplatesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplatesPage) GetContents added in v1.0.8

func (o *TemplatesPage) GetContents() []Template

GetContents returns the Contents field value if set, zero value otherwise.

func (*TemplatesPage) GetContentsOk added in v1.0.8

func (o *TemplatesPage) GetContentsOk() (*[]Template, 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 (*TemplatesPage) GetHasNext added in v1.0.8

func (o *TemplatesPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatesPage) GetHasNextOk added in v1.0.8

func (o *TemplatesPage) 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 (*TemplatesPage) GetHasPrevious added in v1.0.8

func (o *TemplatesPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatesPage) GetHasPreviousOk added in v1.0.8

func (o *TemplatesPage) 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 (*TemplatesPage) GetPage added in v1.0.8

func (o *TemplatesPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*TemplatesPage) GetPageOk added in v1.0.8

func (o *TemplatesPage) 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 (*TemplatesPage) GetPageSize added in v1.0.8

func (o *TemplatesPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*TemplatesPage) GetPageSizeOk added in v1.0.8

func (o *TemplatesPage) 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 (*TemplatesPage) GetSortBy added in v1.0.8

func (o *TemplatesPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatesPage) GetSortByOk added in v1.0.8

func (o *TemplatesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatesPage) GetSortOrder added in v1.0.8

func (o *TemplatesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatesPage) GetSortOrderOk added in v1.0.8

func (o *TemplatesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatesPage) GetTotalItems added in v1.0.8

func (o *TemplatesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplatesPage) GetTotalItemsOk added in v1.0.8

func (o *TemplatesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatesPage) HasContents added in v1.0.8

func (o *TemplatesPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*TemplatesPage) HasHasNext added in v1.0.8

func (o *TemplatesPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*TemplatesPage) HasHasPrevious added in v1.0.8

func (o *TemplatesPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*TemplatesPage) HasPage added in v1.0.8

func (o *TemplatesPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*TemplatesPage) HasPageSize added in v1.0.8

func (o *TemplatesPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*TemplatesPage) HasSortBy added in v1.0.8

func (o *TemplatesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*TemplatesPage) HasSortOrder added in v1.0.8

func (o *TemplatesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*TemplatesPage) HasTotalItems added in v1.0.8

func (o *TemplatesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (TemplatesPage) MarshalJSON added in v1.0.8

func (o TemplatesPage) MarshalJSON() ([]byte, error)

func (*TemplatesPage) SetContents added in v1.0.8

func (o *TemplatesPage) SetContents(v []Template)

SetContents gets a reference to the given []Template and assigns it to the Contents field.

func (*TemplatesPage) SetHasNext added in v1.0.8

func (o *TemplatesPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*TemplatesPage) SetHasNextNil added in v1.0.8

func (o *TemplatesPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*TemplatesPage) SetHasPrevious added in v1.0.8

func (o *TemplatesPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*TemplatesPage) SetHasPreviousNil added in v1.0.8

func (o *TemplatesPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*TemplatesPage) SetPage added in v1.0.8

func (o *TemplatesPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*TemplatesPage) SetPageSize added in v1.0.8

func (o *TemplatesPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*TemplatesPage) SetSortBy added in v1.0.8

func (o *TemplatesPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*TemplatesPage) SetSortByNil added in v1.0.8

func (o *TemplatesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*TemplatesPage) SetSortOrder added in v1.0.8

func (o *TemplatesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*TemplatesPage) SetSortOrderNil added in v1.0.8

func (o *TemplatesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*TemplatesPage) SetTotalItems added in v1.0.8

func (o *TemplatesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*TemplatesPage) SetTotalItemsNil added in v1.0.8

func (o *TemplatesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*TemplatesPage) UnmarshalJSON added in v1.0.8

func (o *TemplatesPage) UnmarshalJSON(bytes []byte) (err error)

func (*TemplatesPage) UnsetHasNext added in v1.0.8

func (o *TemplatesPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*TemplatesPage) UnsetHasPrevious added in v1.0.8

func (o *TemplatesPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*TemplatesPage) UnsetSortBy added in v1.0.8

func (o *TemplatesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*TemplatesPage) UnsetSortOrder added in v1.0.8

func (o *TemplatesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*TemplatesPage) UnsetTotalItems added in v1.0.8

func (o *TemplatesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type TemplatesPageAllOf added in v1.0.8

type TemplatesPageAllOf struct {
	Contents             *[]Template `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

TemplatesPageAllOf struct for TemplatesPageAllOf

func NewTemplatesPageAllOf added in v1.0.8

func NewTemplatesPageAllOf() *TemplatesPageAllOf

NewTemplatesPageAllOf instantiates a new TemplatesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplatesPageAllOfWithDefaults added in v1.0.8

func NewTemplatesPageAllOfWithDefaults() *TemplatesPageAllOf

NewTemplatesPageAllOfWithDefaults instantiates a new TemplatesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplatesPageAllOf) GetContents added in v1.0.8

func (o *TemplatesPageAllOf) GetContents() []Template

GetContents returns the Contents field value if set, zero value otherwise.

func (*TemplatesPageAllOf) GetContentsOk added in v1.0.8

func (o *TemplatesPageAllOf) GetContentsOk() (*[]Template, 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 (*TemplatesPageAllOf) HasContents added in v1.0.8

func (o *TemplatesPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (TemplatesPageAllOf) MarshalJSON added in v1.0.8

func (o TemplatesPageAllOf) MarshalJSON() ([]byte, error)

func (*TemplatesPageAllOf) SetContents added in v1.0.8

func (o *TemplatesPageAllOf) SetContents(v []Template)

SetContents gets a reference to the given []Template and assigns it to the Contents field.

func (*TemplatesPageAllOf) UnmarshalJSON added in v1.0.8

func (o *TemplatesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

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"`
	NumberOfChildren     NullableInt64  `json:"numberOfChildren,omitempty"`
	ParentId             NullableString `json:"parentId,omitempty"`
	ExternalId           NullableString `json:"externalId,omitempty"`
	Name                 string         `json:"name"`
	Description          NullableString `json:"description,omitempty"`
	Url                  NullableString `json:"url,omitempty"`
	Image                NullableString `json:"image,omitempty"`
	Email                NullableString `json:"email,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetEmail added in v1.0.5

func (o *Tenant) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetEmailOk added in v1.0.5

func (o *Tenant) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetExternalId added in v1.0.5

func (o *Tenant) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetExternalIdOk added in v1.0.5

func (o *Tenant) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and 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) 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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasEmail added in v1.0.5

func (o *Tenant) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Tenant) HasExternalId added in v1.0.5

func (o *Tenant) HasExternalId() bool

HasExternalId 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 NullableString and assigns it to the Description field.

func (*Tenant) SetDescriptionNil added in v1.0.5

func (o *Tenant) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Tenant) SetEmail added in v1.0.5

func (o *Tenant) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*Tenant) SetEmailNil added in v1.0.5

func (o *Tenant) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*Tenant) SetExternalId added in v1.0.5

func (o *Tenant) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*Tenant) SetExternalIdNil added in v1.0.5

func (o *Tenant) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

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 NullableString and assigns it to the Url field.

func (*Tenant) SetUrlNil added in v1.0.5

func (o *Tenant) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*Tenant) UnmarshalJSON added in v1.0.5

func (o *Tenant) UnmarshalJSON(bytes []byte) (err error)

func (*Tenant) UnsetDescription added in v1.0.5

func (o *Tenant) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Tenant) UnsetEmail added in v1.0.5

func (o *Tenant) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*Tenant) UnsetExternalId added in v1.0.5

func (o *Tenant) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

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

func (*Tenant) UnsetUrl added in v1.0.5

func (o *Tenant) UnsetUrl()

UnsetUrl ensures that no value is present for Url, 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"`
	NumberOfChildren     NullableInt64 `json:"numberOfChildren,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetNumberOfChildren added in v1.0.2

func (o *TenantAllOf) GetNumberOfChildren() int64

GetNumberOfChildren returns the NumberOfChildren field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantAllOf) GetNumberOfChildrenOk added in v1.0.2

func (o *TenantAllOf) 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 (*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) HasNumberOfChildren added in v1.0.2

func (o *TenantAllOf) HasNumberOfChildren() bool

HasNumberOfChildren 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) SetNumberOfChildren added in v1.0.2

func (o *TenantAllOf) SetNumberOfChildren(v int64)

SetNumberOfChildren gets a reference to the given NullableInt64 and assigns it to the NumberOfChildren field.

func (*TenantAllOf) SetNumberOfChildrenNil added in v1.0.2

func (o *TenantAllOf) SetNumberOfChildrenNil()

SetNumberOfChildrenNil sets the value for NumberOfChildren to be an explicit nil

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) UnmarshalJSON added in v1.0.5

func (o *TenantAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*TenantAllOf) UnsetNumberOfChildren added in v1.0.2

func (o *TenantAllOf) UnsetNumberOfChildren()

UnsetNumberOfChildren ensures that no value is present for NumberOfChildren, not even 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 {
	ParentId             NullableString `json:"parentId,omitempty"`
	ExternalId           NullableString `json:"externalId,omitempty"`
	Name                 string         `json:"name"`
	Description          NullableString `json:"description,omitempty"`
	Url                  NullableString `json:"url,omitempty"`
	Image                NullableString `json:"image,omitempty"`
	Email                NullableString `json:"email,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreate) GetEmail added in v1.0.5

func (o *TenantCreate) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreate) GetEmailOk added in v1.0.5

func (o *TenantCreate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreate) GetExternalId added in v1.0.5

func (o *TenantCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreate) GetExternalIdOk added in v1.0.5

func (o *TenantCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and 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) 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) 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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreate) HasDescription

func (o *TenantCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TenantCreate) HasEmail added in v1.0.5

func (o *TenantCreate) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*TenantCreate) HasExternalId added in v1.0.5

func (o *TenantCreate) HasExternalId() bool

HasExternalId 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) 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 NullableString and assigns it to the Description field.

func (*TenantCreate) SetDescriptionNil added in v1.0.5

func (o *TenantCreate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*TenantCreate) SetEmail added in v1.0.5

func (o *TenantCreate) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*TenantCreate) SetEmailNil added in v1.0.5

func (o *TenantCreate) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*TenantCreate) SetExternalId added in v1.0.5

func (o *TenantCreate) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*TenantCreate) SetExternalIdNil added in v1.0.5

func (o *TenantCreate) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

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) 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 NullableString and assigns it to the Url field.

func (*TenantCreate) SetUrlNil added in v1.0.5

func (o *TenantCreate) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*TenantCreate) UnmarshalJSON added in v1.0.5

func (o *TenantCreate) UnmarshalJSON(bytes []byte) (err error)

func (*TenantCreate) UnsetDescription added in v1.0.5

func (o *TenantCreate) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*TenantCreate) UnsetEmail added in v1.0.5

func (o *TenantCreate) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*TenantCreate) UnsetExternalId added in v1.0.5

func (o *TenantCreate) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

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) UnsetParentId added in v1.0.1

func (o *TenantCreate) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

func (*TenantCreate) UnsetUrl added in v1.0.5

func (o *TenantCreate) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type TenantCreateAllOf added in v1.0.2

type TenantCreateAllOf struct {
	ParentId             NullableString `json:"parentId,omitempty"`
	ExternalId           NullableString `json:"externalId,omitempty"`
	AdditionalProperties map[string]interface{}
}

TenantCreateAllOf struct for TenantCreateAllOf

func NewTenantCreateAllOf added in v1.0.2

func NewTenantCreateAllOf() *TenantCreateAllOf

NewTenantCreateAllOf instantiates a new TenantCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantCreateAllOfWithDefaults added in v1.0.2

func NewTenantCreateAllOfWithDefaults() *TenantCreateAllOf

NewTenantCreateAllOfWithDefaults instantiates a new TenantCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantCreateAllOf) GetExternalId added in v1.0.5

func (o *TenantCreateAllOf) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreateAllOf) GetExternalIdOk added in v1.0.5

func (o *TenantCreateAllOf) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreateAllOf) GetParentId added in v1.0.2

func (o *TenantCreateAllOf) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreateAllOf) GetParentIdOk added in v1.0.2

func (o *TenantCreateAllOf) 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 (*TenantCreateAllOf) HasExternalId added in v1.0.5

func (o *TenantCreateAllOf) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*TenantCreateAllOf) HasParentId added in v1.0.2

func (o *TenantCreateAllOf) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (TenantCreateAllOf) MarshalJSON added in v1.0.2

func (o TenantCreateAllOf) MarshalJSON() ([]byte, error)

func (*TenantCreateAllOf) SetExternalId added in v1.0.5

func (o *TenantCreateAllOf) SetExternalId(v string)

SetExternalId gets a reference to the given NullableString and assigns it to the ExternalId field.

func (*TenantCreateAllOf) SetExternalIdNil added in v1.0.5

func (o *TenantCreateAllOf) SetExternalIdNil()

SetExternalIdNil sets the value for ExternalId to be an explicit nil

func (*TenantCreateAllOf) SetParentId added in v1.0.2

func (o *TenantCreateAllOf) SetParentId(v string)

SetParentId gets a reference to the given NullableString and assigns it to the ParentId field.

func (*TenantCreateAllOf) SetParentIdNil added in v1.0.2

func (o *TenantCreateAllOf) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (*TenantCreateAllOf) UnmarshalJSON added in v1.0.5

func (o *TenantCreateAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*TenantCreateAllOf) UnsetExternalId added in v1.0.5

func (o *TenantCreateAllOf) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

func (*TenantCreateAllOf) UnsetParentId added in v1.0.2

func (o *TenantCreateAllOf) 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          NullableString `json:"description,omitempty"`
	Url                  NullableString `json:"url,omitempty"`
	Image                NullableString `json:"image,omitempty"`
	Email                NullableString `json:"email,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantUpdate) GetEmail added in v1.0.5

func (o *TenantUpdate) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantUpdate) GetEmailOk added in v1.0.5

func (o *TenantUpdate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantUpdate) GetImage

func (o *TenantUpdate) GetImage() string

GetImage returns the Image field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) GetUrl

func (o *TenantUpdate) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantUpdate) HasDescription

func (o *TenantUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TenantUpdate) HasEmail added in v1.0.5

func (o *TenantUpdate) HasEmail() bool

HasEmail 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) 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 NullableString and assigns it to the Description field.

func (*TenantUpdate) SetDescriptionNil added in v1.0.5

func (o *TenantUpdate) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*TenantUpdate) SetEmail added in v1.0.5

func (o *TenantUpdate) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*TenantUpdate) SetEmailNil added in v1.0.5

func (o *TenantUpdate) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*TenantUpdate) SetImage

func (o *TenantUpdate) SetImage(v string)

SetImage gets a reference to the given NullableString and assigns it to the Image field.

func (*TenantUpdate) SetImageNil added in v1.0.2

func (o *TenantUpdate) SetImageNil()

SetImageNil sets the value for Image to be an explicit nil

func (*TenantUpdate) SetName

func (o *TenantUpdate) SetName(v string)

SetName sets field value

func (*TenantUpdate) SetUrl

func (o *TenantUpdate) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*TenantUpdate) SetUrlNil added in v1.0.5

func (o *TenantUpdate) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*TenantUpdate) UnmarshalJSON added in v1.0.5

func (o *TenantUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*TenantUpdate) UnsetDescription added in v1.0.5

func (o *TenantUpdate) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*TenantUpdate) UnsetEmail added in v1.0.5

func (o *TenantUpdate) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*TenantUpdate) UnsetImage added in v1.0.2

func (o *TenantUpdate) UnsetImage()

UnsetImage ensures that no value is present for Image, not even an explicit nil

func (*TenantUpdate) UnsetUrl added in v1.0.5

func (o *TenantUpdate) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

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           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]Tenant      `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantsPage) GetSortOrder

func (o *TenantsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantsPage) GetTotalItems

func (o *TenantsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*TenantsPage) SetSortByNil added in v1.0.2

func (o *TenantsPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*TenantsPage) SetSortOrder

func (o *TenantsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*TenantsPage) SetSortOrderNil added in v1.0.2

func (o *TenantsPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*TenantsPage) SetTotalItems

func (o *TenantsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*TenantsPage) SetTotalItemsNil added in v1.0.2

func (o *TenantsPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*TenantsPage) UnmarshalJSON added in v1.0.5

func (o *TenantsPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*TenantsPage) UnsetSortBy added in v1.0.2

func (o *TenantsPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*TenantsPage) UnsetSortOrder added in v1.0.2

func (o *TenantsPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*TenantsPage) UnsetTotalItems added in v1.0.2

func (o *TenantsPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type TenantsPageAllOf

type TenantsPageAllOf struct {
	Contents             *[]Tenant `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*TenantsPageAllOf) UnmarshalJSON added in v1.0.5

func (o *TenantsPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type UpdatePassword

type UpdatePassword struct {
	Username             string         `json:"username"`
	OldPassword          NullableString `json:"oldPassword,omitempty"`
	NewPassword          string         `json:"newPassword"`
	AdditionalProperties map[string]interface{}
}

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) UnmarshalJSON added in v1.0.5

func (o *UpdatePassword) UnmarshalJSON(bytes []byte) (err error)

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"`
	Locale               NullableString `json:"locale,omitempty"`
	Username             *string        `json:"username,omitempty"`
	Password             NullableString `json:"password,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetLocale added in v1.0.2

func (o *User) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetLocaleOk added in v1.0.2

func (o *User) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and 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) 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) HasLocale added in v1.0.2

func (o *User) HasLocale() bool

HasLocale 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) SetLocale added in v1.0.2

func (o *User) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*User) SetLocaleNil added in v1.0.2

func (o *User) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

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) UnmarshalJSON added in v1.0.5

func (o *User) UnmarshalJSON(bytes []byte) (err error)

func (*User) UnsetLocale added in v1.0.2

func (o *User) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*UserAllOf) UnmarshalJSON added in v1.0.5

func (o *UserAllOf) UnmarshalJSON(bytes []byte) (err error)

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"`
	Locale               NullableString `json:"locale,omitempty"`
	Username             *string        `json:"username,omitempty"`
	Password             NullableString `json:"password,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetLocale added in v1.0.2

func (o *UserCreate) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCreate) GetLocaleOk added in v1.0.2

func (o *UserCreate) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and 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) 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) HasLocale added in v1.0.2

func (o *UserCreate) HasLocale() bool

HasLocale 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) SetLocale added in v1.0.2

func (o *UserCreate) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*UserCreate) SetLocaleNil added in v1.0.2

func (o *UserCreate) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

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) UnmarshalJSON added in v1.0.5

func (o *UserCreate) UnmarshalJSON(bytes []byte) (err error)

func (*UserCreate) UnsetLocale added in v1.0.2

func (o *UserCreate) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

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"`
	AdditionalProperties map[string]interface{}
}

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) UnmarshalJSON added in v1.0.5

func (o *UserCreateAllOf) UnmarshalJSON(bytes []byte) (err error)

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"`
	Locale               NullableString `json:"locale,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetLocale added in v1.0.2

func (o *UserUpdate) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserUpdate) GetLocaleOk added in v1.0.2

func (o *UserUpdate) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasLocale added in v1.0.2

func (o *UserUpdate) HasLocale() bool

HasLocale 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) SetLocale added in v1.0.2

func (o *UserUpdate) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*UserUpdate) SetLocaleNil added in v1.0.2

func (o *UserUpdate) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

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.

func (*UserUpdate) UnmarshalJSON added in v1.0.5

func (o *UserUpdate) UnmarshalJSON(bytes []byte) (err error)

func (*UserUpdate) UnsetLocale added in v1.0.2

func (o *UserUpdate) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

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           NullableInt64  `json:"totalItems,omitempty"`
	HasNext              NullableBool   `json:"hasNext,omitempty"`
	HasPrevious          NullableBool   `json:"hasPrevious,omitempty"`
	SortBy               NullableString `json:"sortBy,omitempty"`
	SortOrder            NullableString `json:"sortOrder,omitempty"`
	Contents             *[]User        `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsersPage) GetSortOrder

func (o *UsersPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsersPage) GetTotalItems

func (o *UsersPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the SortBy field.

func (*UsersPage) SetSortByNil added in v1.0.2

func (o *UsersPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*UsersPage) SetSortOrder

func (o *UsersPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*UsersPage) SetSortOrderNil added in v1.0.2

func (o *UsersPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*UsersPage) SetTotalItems

func (o *UsersPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*UsersPage) SetTotalItemsNil added in v1.0.2

func (o *UsersPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*UsersPage) UnmarshalJSON added in v1.0.5

func (o *UsersPage) UnmarshalJSON(bytes []byte) (err error)

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

func (*UsersPage) UnsetSortBy added in v1.0.2

func (o *UsersPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*UsersPage) UnsetSortOrder added in v1.0.2

func (o *UsersPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*UsersPage) UnsetTotalItems added in v1.0.2

func (o *UsersPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type UsersPageAllOf

type UsersPageAllOf struct {
	Contents             *[]User `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*UsersPageAllOf) UnmarshalJSON added in v1.0.5

func (o *UsersPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type ValidateWorkflowResponse

type ValidateWorkflowResponse struct {
	TotalActions         NullableInt32 `json:"total_actions,omitempty"`
	TotalValid           NullableInt32 `json:"total_valid,omitempty"`
	WorkflowValid        NullableBool  `json:"workflow_valid,omitempty"`
	InvalidActionIds     []string      `json:"invalid_action_ids,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ValidateWorkflowResponse) GetTotalActions

func (o *ValidateWorkflowResponse) GetTotalActions() int32

GetTotalActions returns the TotalActions field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ValidateWorkflowResponse) GetTotalValid

func (o *ValidateWorkflowResponse) GetTotalValid() int32

GetTotalValid returns the TotalValid field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ValidateWorkflowResponse) GetWorkflowValid

func (o *ValidateWorkflowResponse) GetWorkflowValid() bool

GetWorkflowValid returns the WorkflowValid field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableInt32 and assigns it to the TotalActions field.

func (*ValidateWorkflowResponse) SetTotalActionsNil added in v1.0.2

func (o *ValidateWorkflowResponse) SetTotalActionsNil()

SetTotalActionsNil sets the value for TotalActions to be an explicit nil

func (*ValidateWorkflowResponse) SetTotalValid

func (o *ValidateWorkflowResponse) SetTotalValid(v int32)

SetTotalValid gets a reference to the given NullableInt32 and assigns it to the TotalValid field.

func (*ValidateWorkflowResponse) SetTotalValidNil added in v1.0.2

func (o *ValidateWorkflowResponse) SetTotalValidNil()

SetTotalValidNil sets the value for TotalValid to be an explicit nil

func (*ValidateWorkflowResponse) SetWorkflowValid

func (o *ValidateWorkflowResponse) SetWorkflowValid(v bool)

SetWorkflowValid gets a reference to the given NullableBool and assigns it to the WorkflowValid field.

func (*ValidateWorkflowResponse) SetWorkflowValidNil added in v1.0.2

func (o *ValidateWorkflowResponse) SetWorkflowValidNil()

SetWorkflowValidNil sets the value for WorkflowValid to be an explicit nil

func (*ValidateWorkflowResponse) UnmarshalJSON added in v1.0.5

func (o *ValidateWorkflowResponse) UnmarshalJSON(bytes []byte) (err error)

func (*ValidateWorkflowResponse) UnsetTotalActions added in v1.0.2

func (o *ValidateWorkflowResponse) UnsetTotalActions()

UnsetTotalActions ensures that no value is present for TotalActions, not even an explicit nil

func (*ValidateWorkflowResponse) UnsetTotalValid added in v1.0.2

func (o *ValidateWorkflowResponse) UnsetTotalValid()

UnsetTotalValid ensures that no value is present for TotalValid, not even an explicit nil

func (*ValidateWorkflowResponse) UnsetWorkflowValid added in v1.0.2

func (o *ValidateWorkflowResponse) UnsetWorkflowValid()

UnsetWorkflowValid ensures that no value is present for WorkflowValid, not even an explicit nil

type ValidationApiService added in v1.0.8

type ValidationApiService service

ValidationApiService ValidationApi service

func (*ValidationApiService) GetValidateProductVersionPage added in v1.0.8

func (a *ValidationApiService) GetValidateProductVersionPage(ctx _context.Context) ApiGetValidateProductVersionPageRequest

* GetValidateProductVersionPage Returns a filtered page of validations. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetValidateProductVersionPageRequest

func (*ValidationApiService) GetValidateProductVersionPageExecute added in v1.0.8

* Execute executes the request * @return VulnerabilityValidationPage

func (*ValidationApiService) ValidateProductVersion added in v1.0.8

* ValidateProductVersion Validate registered product / verison combinations for vulnerabilities. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiValidateProductVersionRequest

func (*ValidationApiService) ValidateProductVersionExecute added in v1.0.8

* Execute executes the request * @return VulnerabilityValidation

type VulnerabilitiesApiService added in v1.0.8

type VulnerabilitiesApiService service

VulnerabilitiesApiService VulnerabilitiesApi service

func (*VulnerabilitiesApiService) GetIngestVulnerabilitiesTasksPage added in v1.0.8

* GetIngestVulnerabilitiesTasksPage Returns a filtered page of ingest tasks. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetIngestVulnerabilitiesTasksPageRequest

func (*VulnerabilitiesApiService) GetIngestVulnerabilitiesTasksPageExecute added in v1.0.8

* Execute executes the request * @return VulnerabilityIngestPage

func (*VulnerabilitiesApiService) GetVulnerabilitiesPage added in v1.0.8

* GetVulnerabilitiesPage Returns a filtered page of vulnerabilities. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetVulnerabilitiesPageRequest

func (*VulnerabilitiesApiService) GetVulnerabilitiesPageExecute added in v1.0.8

* Execute executes the request * @return VulnerabilitiesPage

func (*VulnerabilitiesApiService) IngestVulnerabilities added in v1.0.8

* IngestVulnerabilities Ingests a CVE JSON feed into the Vulnerability Service datastore. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiIngestVulnerabilitiesRequest

func (*VulnerabilitiesApiService) IngestVulnerabilitiesExecute added in v1.0.8

* Execute executes the request * @return VulnerabilityIngestion

type VulnerabilitiesPage added in v1.0.8

type VulnerabilitiesPage struct {
	Page                 int32           `json:"page"`
	PageSize             int32           `json:"pageSize"`
	TotalItems           NullableInt64   `json:"totalItems,omitempty"`
	HasNext              NullableBool    `json:"hasNext"`
	HasPrevious          NullableBool    `json:"hasPrevious"`
	SortBy               NullableString  `json:"sortBy,omitempty"`
	SortOrder            NullableString  `json:"sortOrder,omitempty"`
	Contents             []Vulnerability `json:"contents"`
	AdditionalProperties map[string]interface{}
}

VulnerabilitiesPage struct for VulnerabilitiesPage

func NewVulnerabilitiesPage added in v1.0.8

func NewVulnerabilitiesPage(page int32, pageSize int32, hasNext NullableBool, hasPrevious NullableBool, contents []Vulnerability) *VulnerabilitiesPage

NewVulnerabilitiesPage instantiates a new VulnerabilitiesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilitiesPageWithDefaults added in v1.0.8

func NewVulnerabilitiesPageWithDefaults() *VulnerabilitiesPage

NewVulnerabilitiesPageWithDefaults instantiates a new VulnerabilitiesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilitiesPage) GetContents added in v1.0.8

func (o *VulnerabilitiesPage) GetContents() []Vulnerability

GetContents returns the Contents field value

func (*VulnerabilitiesPage) GetContentsOk added in v1.0.8

func (o *VulnerabilitiesPage) GetContentsOk() (*[]Vulnerability, bool)

GetContentsOk returns a tuple with the Contents field value and a boolean to check if the value has been set.

func (*VulnerabilitiesPage) GetHasNext added in v1.0.8

func (o *VulnerabilitiesPage) GetHasNext() bool

GetHasNext returns the HasNext field value If the value is explicit nil, the zero value for bool will be returned

func (*VulnerabilitiesPage) GetHasNextOk added in v1.0.8

func (o *VulnerabilitiesPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesPage) GetHasPrevious added in v1.0.8

func (o *VulnerabilitiesPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value If the value is explicit nil, the zero value for bool will be returned

func (*VulnerabilitiesPage) GetHasPreviousOk added in v1.0.8

func (o *VulnerabilitiesPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesPage) GetPage added in v1.0.8

func (o *VulnerabilitiesPage) GetPage() int32

GetPage returns the Page field value

func (*VulnerabilitiesPage) GetPageOk added in v1.0.8

func (o *VulnerabilitiesPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value and a boolean to check if the value has been set.

func (*VulnerabilitiesPage) GetPageSize added in v1.0.8

func (o *VulnerabilitiesPage) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*VulnerabilitiesPage) GetPageSizeOk added in v1.0.8

func (o *VulnerabilitiesPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*VulnerabilitiesPage) GetSortBy added in v1.0.8

func (o *VulnerabilitiesPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesPage) GetSortByOk added in v1.0.8

func (o *VulnerabilitiesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesPage) GetSortOrder added in v1.0.8

func (o *VulnerabilitiesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesPage) GetSortOrderOk added in v1.0.8

func (o *VulnerabilitiesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesPage) GetTotalItems added in v1.0.8

func (o *VulnerabilitiesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesPage) GetTotalItemsOk added in v1.0.8

func (o *VulnerabilitiesPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesPage) HasSortBy added in v1.0.8

func (o *VulnerabilitiesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*VulnerabilitiesPage) HasSortOrder added in v1.0.8

func (o *VulnerabilitiesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*VulnerabilitiesPage) HasTotalItems added in v1.0.8

func (o *VulnerabilitiesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (VulnerabilitiesPage) MarshalJSON added in v1.0.8

func (o VulnerabilitiesPage) MarshalJSON() ([]byte, error)

func (*VulnerabilitiesPage) SetContents added in v1.0.8

func (o *VulnerabilitiesPage) SetContents(v []Vulnerability)

SetContents sets field value

func (*VulnerabilitiesPage) SetHasNext added in v1.0.8

func (o *VulnerabilitiesPage) SetHasNext(v bool)

SetHasNext sets field value

func (*VulnerabilitiesPage) SetHasPrevious added in v1.0.8

func (o *VulnerabilitiesPage) SetHasPrevious(v bool)

SetHasPrevious sets field value

func (*VulnerabilitiesPage) SetPage added in v1.0.8

func (o *VulnerabilitiesPage) SetPage(v int32)

SetPage sets field value

func (*VulnerabilitiesPage) SetPageSize added in v1.0.8

func (o *VulnerabilitiesPage) SetPageSize(v int32)

SetPageSize sets field value

func (*VulnerabilitiesPage) SetSortBy added in v1.0.8

func (o *VulnerabilitiesPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*VulnerabilitiesPage) SetSortByNil added in v1.0.8

func (o *VulnerabilitiesPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*VulnerabilitiesPage) SetSortOrder added in v1.0.8

func (o *VulnerabilitiesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*VulnerabilitiesPage) SetSortOrderNil added in v1.0.8

func (o *VulnerabilitiesPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*VulnerabilitiesPage) SetTotalItems added in v1.0.8

func (o *VulnerabilitiesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*VulnerabilitiesPage) SetTotalItemsNil added in v1.0.8

func (o *VulnerabilitiesPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*VulnerabilitiesPage) UnmarshalJSON added in v1.0.8

func (o *VulnerabilitiesPage) UnmarshalJSON(bytes []byte) (err error)

func (*VulnerabilitiesPage) UnsetSortBy added in v1.0.8

func (o *VulnerabilitiesPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*VulnerabilitiesPage) UnsetSortOrder added in v1.0.8

func (o *VulnerabilitiesPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*VulnerabilitiesPage) UnsetTotalItems added in v1.0.8

func (o *VulnerabilitiesPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type VulnerabilitiesPageAllOf added in v1.0.8

type VulnerabilitiesPageAllOf struct {
	Contents             []Vulnerability `json:"contents"`
	AdditionalProperties map[string]interface{}
}

VulnerabilitiesPageAllOf struct for VulnerabilitiesPageAllOf

func NewVulnerabilitiesPageAllOf added in v1.0.8

func NewVulnerabilitiesPageAllOf(contents []Vulnerability) *VulnerabilitiesPageAllOf

NewVulnerabilitiesPageAllOf instantiates a new VulnerabilitiesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilitiesPageAllOfWithDefaults added in v1.0.8

func NewVulnerabilitiesPageAllOfWithDefaults() *VulnerabilitiesPageAllOf

NewVulnerabilitiesPageAllOfWithDefaults instantiates a new VulnerabilitiesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilitiesPageAllOf) GetContents added in v1.0.8

func (o *VulnerabilitiesPageAllOf) GetContents() []Vulnerability

GetContents returns the Contents field value

func (*VulnerabilitiesPageAllOf) GetContentsOk added in v1.0.8

func (o *VulnerabilitiesPageAllOf) GetContentsOk() (*[]Vulnerability, bool)

GetContentsOk returns a tuple with the Contents field value and a boolean to check if the value has been set.

func (VulnerabilitiesPageAllOf) MarshalJSON added in v1.0.8

func (o VulnerabilitiesPageAllOf) MarshalJSON() ([]byte, error)

func (*VulnerabilitiesPageAllOf) SetContents added in v1.0.8

func (o *VulnerabilitiesPageAllOf) SetContents(v []Vulnerability)

SetContents sets field value

func (*VulnerabilitiesPageAllOf) UnmarshalJSON added in v1.0.8

func (o *VulnerabilitiesPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilitiesRegistrationPage added in v1.0.8

type VulnerabilitiesRegistrationPage struct {
	Page                 *int32                       `json:"page,omitempty"`
	PageSize             *int32                       `json:"pageSize,omitempty"`
	TotalItems           NullableInt64                `json:"totalItems,omitempty"`
	HasNext              NullableBool                 `json:"hasNext,omitempty"`
	HasPrevious          NullableBool                 `json:"hasPrevious,omitempty"`
	SortBy               NullableString               `json:"sortBy,omitempty"`
	SortOrder            NullableString               `json:"sortOrder,omitempty"`
	Contents             *[]VulnerabilityRegistration `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilitiesRegistrationPage struct for VulnerabilitiesRegistrationPage

func NewVulnerabilitiesRegistrationPage added in v1.0.8

func NewVulnerabilitiesRegistrationPage() *VulnerabilitiesRegistrationPage

NewVulnerabilitiesRegistrationPage instantiates a new VulnerabilitiesRegistrationPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilitiesRegistrationPageWithDefaults added in v1.0.8

func NewVulnerabilitiesRegistrationPageWithDefaults() *VulnerabilitiesRegistrationPage

NewVulnerabilitiesRegistrationPageWithDefaults instantiates a new VulnerabilitiesRegistrationPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilitiesRegistrationPage) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*VulnerabilitiesRegistrationPage) GetContentsOk added in v1.0.8

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 (*VulnerabilitiesRegistrationPage) GetHasNext added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesRegistrationPage) GetHasNextOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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 (*VulnerabilitiesRegistrationPage) GetHasPrevious added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesRegistrationPage) GetHasPreviousOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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 (*VulnerabilitiesRegistrationPage) GetPage added in v1.0.8

GetPage returns the Page field value if set, zero value otherwise.

func (*VulnerabilitiesRegistrationPage) GetPageOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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 (*VulnerabilitiesRegistrationPage) GetPageSize added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*VulnerabilitiesRegistrationPage) GetPageSizeOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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 (*VulnerabilitiesRegistrationPage) GetSortBy added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesRegistrationPage) GetSortByOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesRegistrationPage) GetSortOrder added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesRegistrationPage) GetSortOrderOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesRegistrationPage) GetTotalItems added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilitiesRegistrationPage) GetTotalItemsOk added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilitiesRegistrationPage) HasContents added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasHasNext added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasHasPrevious added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasPage added in v1.0.8

HasPage returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasPageSize added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasSortBy added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasSortOrder added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*VulnerabilitiesRegistrationPage) HasTotalItems added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (VulnerabilitiesRegistrationPage) MarshalJSON added in v1.0.8

func (o VulnerabilitiesRegistrationPage) MarshalJSON() ([]byte, error)

func (*VulnerabilitiesRegistrationPage) SetContents added in v1.0.8

SetContents gets a reference to the given []VulnerabilityRegistration and assigns it to the Contents field.

func (*VulnerabilitiesRegistrationPage) SetHasNext added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*VulnerabilitiesRegistrationPage) SetHasNextNil added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*VulnerabilitiesRegistrationPage) SetHasPrevious added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*VulnerabilitiesRegistrationPage) SetHasPreviousNil added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*VulnerabilitiesRegistrationPage) SetPage added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*VulnerabilitiesRegistrationPage) SetPageSize added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*VulnerabilitiesRegistrationPage) SetSortBy added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*VulnerabilitiesRegistrationPage) SetSortByNil added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*VulnerabilitiesRegistrationPage) SetSortOrder added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*VulnerabilitiesRegistrationPage) SetSortOrderNil added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*VulnerabilitiesRegistrationPage) SetTotalItems added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*VulnerabilitiesRegistrationPage) SetTotalItemsNil added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*VulnerabilitiesRegistrationPage) UnmarshalJSON added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) UnmarshalJSON(bytes []byte) (err error)

func (*VulnerabilitiesRegistrationPage) UnsetHasNext added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*VulnerabilitiesRegistrationPage) UnsetHasPrevious added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*VulnerabilitiesRegistrationPage) UnsetSortBy added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*VulnerabilitiesRegistrationPage) UnsetSortOrder added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*VulnerabilitiesRegistrationPage) UnsetTotalItems added in v1.0.8

func (o *VulnerabilitiesRegistrationPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type VulnerabilitiesRegistrationPageAllOf added in v1.0.8

type VulnerabilitiesRegistrationPageAllOf struct {
	Contents             *[]VulnerabilityRegistration `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilitiesRegistrationPageAllOf struct for VulnerabilitiesRegistrationPageAllOf

func NewVulnerabilitiesRegistrationPageAllOf added in v1.0.8

func NewVulnerabilitiesRegistrationPageAllOf() *VulnerabilitiesRegistrationPageAllOf

NewVulnerabilitiesRegistrationPageAllOf instantiates a new VulnerabilitiesRegistrationPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilitiesRegistrationPageAllOfWithDefaults added in v1.0.8

func NewVulnerabilitiesRegistrationPageAllOfWithDefaults() *VulnerabilitiesRegistrationPageAllOf

NewVulnerabilitiesRegistrationPageAllOfWithDefaults instantiates a new VulnerabilitiesRegistrationPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilitiesRegistrationPageAllOf) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*VulnerabilitiesRegistrationPageAllOf) GetContentsOk added in v1.0.8

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 (*VulnerabilitiesRegistrationPageAllOf) HasContents added in v1.0.8

func (o *VulnerabilitiesRegistrationPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (VulnerabilitiesRegistrationPageAllOf) MarshalJSON added in v1.0.8

func (o VulnerabilitiesRegistrationPageAllOf) MarshalJSON() ([]byte, error)

func (*VulnerabilitiesRegistrationPageAllOf) SetContents added in v1.0.8

SetContents gets a reference to the given []VulnerabilityRegistration and assigns it to the Contents field.

func (*VulnerabilitiesRegistrationPageAllOf) UnmarshalJSON added in v1.0.8

func (o *VulnerabilitiesRegistrationPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type Vulnerability added in v1.0.8

type Vulnerability struct {
	// CVE identitfier (https://www.cvedetails.com/cve-help.php).
	CveId                string                `json:"cveId"`
	Url                  string                `json:"url"`
	Severity             VulnerabilitySeverity `json:"severity"`
	PublishedOn          time.Time             `json:"publishedOn"`
	ModifiedOn           time.Time             `json:"modifiedOn"`
	Vendor               string                `json:"vendor"`
	Product              string                `json:"product"`
	Version              string                `json:"version"`
	AdditionalProperties map[string]interface{}
}

Vulnerability struct for Vulnerability

func NewVulnerability added in v1.0.8

func NewVulnerability(cveId string, url string, severity VulnerabilitySeverity, publishedOn time.Time, modifiedOn time.Time, vendor string, product string, version string) *Vulnerability

NewVulnerability instantiates a new Vulnerability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityWithDefaults added in v1.0.8

func NewVulnerabilityWithDefaults() *Vulnerability

NewVulnerabilityWithDefaults instantiates a new Vulnerability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Vulnerability) GetCveId added in v1.0.8

func (o *Vulnerability) GetCveId() string

GetCveId returns the CveId field value

func (*Vulnerability) GetCveIdOk added in v1.0.8

func (o *Vulnerability) GetCveIdOk() (*string, bool)

GetCveIdOk returns a tuple with the CveId field value and a boolean to check if the value has been set.

func (*Vulnerability) GetModifiedOn added in v1.0.8

func (o *Vulnerability) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value

func (*Vulnerability) GetModifiedOnOk added in v1.0.8

func (o *Vulnerability) GetModifiedOnOk() (*time.Time, bool)

GetModifiedOnOk returns a tuple with the ModifiedOn field value and a boolean to check if the value has been set.

func (*Vulnerability) GetProduct added in v1.0.8

func (o *Vulnerability) GetProduct() string

GetProduct returns the Product field value

func (*Vulnerability) GetProductOk added in v1.0.8

func (o *Vulnerability) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value and a boolean to check if the value has been set.

func (*Vulnerability) GetPublishedOn added in v1.0.8

func (o *Vulnerability) GetPublishedOn() time.Time

GetPublishedOn returns the PublishedOn field value

func (*Vulnerability) GetPublishedOnOk added in v1.0.8

func (o *Vulnerability) GetPublishedOnOk() (*time.Time, bool)

GetPublishedOnOk returns a tuple with the PublishedOn field value and a boolean to check if the value has been set.

func (*Vulnerability) GetSeverity added in v1.0.8

func (o *Vulnerability) GetSeverity() VulnerabilitySeverity

GetSeverity returns the Severity field value

func (*Vulnerability) GetSeverityOk added in v1.0.8

func (o *Vulnerability) GetSeverityOk() (*VulnerabilitySeverity, bool)

GetSeverityOk returns a tuple with the Severity field value and a boolean to check if the value has been set.

func (*Vulnerability) GetUrl added in v1.0.8

func (o *Vulnerability) GetUrl() string

GetUrl returns the Url field value

func (*Vulnerability) GetUrlOk added in v1.0.8

func (o *Vulnerability) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*Vulnerability) GetVendor added in v1.0.8

func (o *Vulnerability) GetVendor() string

GetVendor returns the Vendor field value

func (*Vulnerability) GetVendorOk added in v1.0.8

func (o *Vulnerability) GetVendorOk() (*string, bool)

GetVendorOk returns a tuple with the Vendor field value and a boolean to check if the value has been set.

func (*Vulnerability) GetVersion added in v1.0.8

func (o *Vulnerability) GetVersion() string

GetVersion returns the Version field value

func (*Vulnerability) GetVersionOk added in v1.0.8

func (o *Vulnerability) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (Vulnerability) MarshalJSON added in v1.0.8

func (o Vulnerability) MarshalJSON() ([]byte, error)

func (*Vulnerability) SetCveId added in v1.0.8

func (o *Vulnerability) SetCveId(v string)

SetCveId sets field value

func (*Vulnerability) SetModifiedOn added in v1.0.8

func (o *Vulnerability) SetModifiedOn(v time.Time)

SetModifiedOn sets field value

func (*Vulnerability) SetProduct added in v1.0.8

func (o *Vulnerability) SetProduct(v string)

SetProduct sets field value

func (*Vulnerability) SetPublishedOn added in v1.0.8

func (o *Vulnerability) SetPublishedOn(v time.Time)

SetPublishedOn sets field value

func (*Vulnerability) SetSeverity added in v1.0.8

func (o *Vulnerability) SetSeverity(v VulnerabilitySeverity)

SetSeverity sets field value

func (*Vulnerability) SetUrl added in v1.0.8

func (o *Vulnerability) SetUrl(v string)

SetUrl sets field value

func (*Vulnerability) SetVendor added in v1.0.8

func (o *Vulnerability) SetVendor(v string)

SetVendor sets field value

func (*Vulnerability) SetVersion added in v1.0.8

func (o *Vulnerability) SetVersion(v string)

SetVersion sets field value

func (*Vulnerability) UnmarshalJSON added in v1.0.8

func (o *Vulnerability) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityFeed added in v1.0.8

type VulnerabilityFeed struct {
	Name                 *string `json:"name,omitempty"`
	File                 *string `json:"file,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityFeed Details of an NVD advisory feed.

func NewVulnerabilityFeed added in v1.0.8

func NewVulnerabilityFeed() *VulnerabilityFeed

NewVulnerabilityFeed instantiates a new VulnerabilityFeed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityFeedWithDefaults added in v1.0.8

func NewVulnerabilityFeedWithDefaults() *VulnerabilityFeed

NewVulnerabilityFeedWithDefaults instantiates a new VulnerabilityFeed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityFeed) GetFile added in v1.0.8

func (o *VulnerabilityFeed) GetFile() string

GetFile returns the File field value if set, zero value otherwise.

func (*VulnerabilityFeed) GetFileOk added in v1.0.8

func (o *VulnerabilityFeed) GetFileOk() (*string, bool)

GetFileOk returns a tuple with the File field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityFeed) GetName added in v1.0.8

func (o *VulnerabilityFeed) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*VulnerabilityFeed) GetNameOk added in v1.0.8

func (o *VulnerabilityFeed) 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 (*VulnerabilityFeed) HasFile added in v1.0.8

func (o *VulnerabilityFeed) HasFile() bool

HasFile returns a boolean if a field has been set.

func (*VulnerabilityFeed) HasName added in v1.0.8

func (o *VulnerabilityFeed) HasName() bool

HasName returns a boolean if a field has been set.

func (VulnerabilityFeed) MarshalJSON added in v1.0.8

func (o VulnerabilityFeed) MarshalJSON() ([]byte, error)

func (*VulnerabilityFeed) SetFile added in v1.0.8

func (o *VulnerabilityFeed) SetFile(v string)

SetFile gets a reference to the given string and assigns it to the File field.

func (*VulnerabilityFeed) SetName added in v1.0.8

func (o *VulnerabilityFeed) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*VulnerabilityFeed) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityFeed) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityIngestPage added in v1.0.8

type VulnerabilityIngestPage struct {
	Page                 *int32                    `json:"page,omitempty"`
	PageSize             *int32                    `json:"pageSize,omitempty"`
	TotalItems           NullableInt64             `json:"totalItems,omitempty"`
	HasNext              NullableBool              `json:"hasNext,omitempty"`
	HasPrevious          NullableBool              `json:"hasPrevious,omitempty"`
	SortBy               NullableString            `json:"sortBy,omitempty"`
	SortOrder            NullableString            `json:"sortOrder,omitempty"`
	Contents             *[]VulnerabilityIngestion `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityIngestPage struct for VulnerabilityIngestPage

func NewVulnerabilityIngestPage added in v1.0.8

func NewVulnerabilityIngestPage() *VulnerabilityIngestPage

NewVulnerabilityIngestPage instantiates a new VulnerabilityIngestPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityIngestPageWithDefaults added in v1.0.8

func NewVulnerabilityIngestPageWithDefaults() *VulnerabilityIngestPage

NewVulnerabilityIngestPageWithDefaults instantiates a new VulnerabilityIngestPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityIngestPage) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*VulnerabilityIngestPage) GetContentsOk added in v1.0.8

func (o *VulnerabilityIngestPage) GetContentsOk() (*[]VulnerabilityIngestion, 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 (*VulnerabilityIngestPage) GetHasNext added in v1.0.8

func (o *VulnerabilityIngestPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityIngestPage) GetHasNextOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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 (*VulnerabilityIngestPage) GetHasPrevious added in v1.0.8

func (o *VulnerabilityIngestPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityIngestPage) GetHasPreviousOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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 (*VulnerabilityIngestPage) GetPage added in v1.0.8

func (o *VulnerabilityIngestPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*VulnerabilityIngestPage) GetPageOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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 (*VulnerabilityIngestPage) GetPageSize added in v1.0.8

func (o *VulnerabilityIngestPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*VulnerabilityIngestPage) GetPageSizeOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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 (*VulnerabilityIngestPage) GetSortBy added in v1.0.8

func (o *VulnerabilityIngestPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityIngestPage) GetSortByOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilityIngestPage) GetSortOrder added in v1.0.8

func (o *VulnerabilityIngestPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityIngestPage) GetSortOrderOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilityIngestPage) GetTotalItems added in v1.0.8

func (o *VulnerabilityIngestPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityIngestPage) GetTotalItemsOk added in v1.0.8

func (o *VulnerabilityIngestPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilityIngestPage) HasContents added in v1.0.8

func (o *VulnerabilityIngestPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasHasNext added in v1.0.8

func (o *VulnerabilityIngestPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasHasPrevious added in v1.0.8

func (o *VulnerabilityIngestPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasPage added in v1.0.8

func (o *VulnerabilityIngestPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasPageSize added in v1.0.8

func (o *VulnerabilityIngestPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasSortBy added in v1.0.8

func (o *VulnerabilityIngestPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasSortOrder added in v1.0.8

func (o *VulnerabilityIngestPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*VulnerabilityIngestPage) HasTotalItems added in v1.0.8

func (o *VulnerabilityIngestPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (VulnerabilityIngestPage) MarshalJSON added in v1.0.8

func (o VulnerabilityIngestPage) MarshalJSON() ([]byte, error)

func (*VulnerabilityIngestPage) SetContents added in v1.0.8

func (o *VulnerabilityIngestPage) SetContents(v []VulnerabilityIngestion)

SetContents gets a reference to the given []VulnerabilityIngestion and assigns it to the Contents field.

func (*VulnerabilityIngestPage) SetHasNext added in v1.0.8

func (o *VulnerabilityIngestPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*VulnerabilityIngestPage) SetHasNextNil added in v1.0.8

func (o *VulnerabilityIngestPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*VulnerabilityIngestPage) SetHasPrevious added in v1.0.8

func (o *VulnerabilityIngestPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*VulnerabilityIngestPage) SetHasPreviousNil added in v1.0.8

func (o *VulnerabilityIngestPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*VulnerabilityIngestPage) SetPage added in v1.0.8

func (o *VulnerabilityIngestPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*VulnerabilityIngestPage) SetPageSize added in v1.0.8

func (o *VulnerabilityIngestPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*VulnerabilityIngestPage) SetSortBy added in v1.0.8

func (o *VulnerabilityIngestPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*VulnerabilityIngestPage) SetSortByNil added in v1.0.8

func (o *VulnerabilityIngestPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*VulnerabilityIngestPage) SetSortOrder added in v1.0.8

func (o *VulnerabilityIngestPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*VulnerabilityIngestPage) SetSortOrderNil added in v1.0.8

func (o *VulnerabilityIngestPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*VulnerabilityIngestPage) SetTotalItems added in v1.0.8

func (o *VulnerabilityIngestPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*VulnerabilityIngestPage) SetTotalItemsNil added in v1.0.8

func (o *VulnerabilityIngestPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*VulnerabilityIngestPage) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityIngestPage) UnmarshalJSON(bytes []byte) (err error)

func (*VulnerabilityIngestPage) UnsetHasNext added in v1.0.8

func (o *VulnerabilityIngestPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*VulnerabilityIngestPage) UnsetHasPrevious added in v1.0.8

func (o *VulnerabilityIngestPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*VulnerabilityIngestPage) UnsetSortBy added in v1.0.8

func (o *VulnerabilityIngestPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*VulnerabilityIngestPage) UnsetSortOrder added in v1.0.8

func (o *VulnerabilityIngestPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*VulnerabilityIngestPage) UnsetTotalItems added in v1.0.8

func (o *VulnerabilityIngestPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type VulnerabilityIngestPageAllOf added in v1.0.8

type VulnerabilityIngestPageAllOf struct {
	Contents             *[]VulnerabilityIngestion `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityIngestPageAllOf struct for VulnerabilityIngestPageAllOf

func NewVulnerabilityIngestPageAllOf added in v1.0.8

func NewVulnerabilityIngestPageAllOf() *VulnerabilityIngestPageAllOf

NewVulnerabilityIngestPageAllOf instantiates a new VulnerabilityIngestPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityIngestPageAllOfWithDefaults added in v1.0.8

func NewVulnerabilityIngestPageAllOfWithDefaults() *VulnerabilityIngestPageAllOf

NewVulnerabilityIngestPageAllOfWithDefaults instantiates a new VulnerabilityIngestPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityIngestPageAllOf) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*VulnerabilityIngestPageAllOf) GetContentsOk added in v1.0.8

func (o *VulnerabilityIngestPageAllOf) GetContentsOk() (*[]VulnerabilityIngestion, 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 (*VulnerabilityIngestPageAllOf) HasContents added in v1.0.8

func (o *VulnerabilityIngestPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (VulnerabilityIngestPageAllOf) MarshalJSON added in v1.0.8

func (o VulnerabilityIngestPageAllOf) MarshalJSON() ([]byte, error)

func (*VulnerabilityIngestPageAllOf) SetContents added in v1.0.8

SetContents gets a reference to the given []VulnerabilityIngestion and assigns it to the Contents field.

func (*VulnerabilityIngestPageAllOf) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityIngestPageAllOf) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityIngestion added in v1.0.8

type VulnerabilityIngestion struct {
	Id                   *string    `json:"id,omitempty"`
	Name                 *string    `json:"name,omitempty"`
	File                 *string    `json:"file,omitempty"`
	ExecutedOn           *time.Time `json:"executedOn,omitempty"`
	Message              *string    `json:"message,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityIngestion Execution of vulnerability ingestion task

func NewVulnerabilityIngestion added in v1.0.8

func NewVulnerabilityIngestion() *VulnerabilityIngestion

NewVulnerabilityIngestion instantiates a new VulnerabilityIngestion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityIngestionWithDefaults added in v1.0.8

func NewVulnerabilityIngestionWithDefaults() *VulnerabilityIngestion

NewVulnerabilityIngestionWithDefaults instantiates a new VulnerabilityIngestion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityIngestion) GetExecutedOn added in v1.0.8

func (o *VulnerabilityIngestion) GetExecutedOn() time.Time

GetExecutedOn returns the ExecutedOn field value if set, zero value otherwise.

func (*VulnerabilityIngestion) GetExecutedOnOk added in v1.0.8

func (o *VulnerabilityIngestion) GetExecutedOnOk() (*time.Time, bool)

GetExecutedOnOk returns a tuple with the ExecutedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityIngestion) GetFile added in v1.0.8

func (o *VulnerabilityIngestion) GetFile() string

GetFile returns the File field value if set, zero value otherwise.

func (*VulnerabilityIngestion) GetFileOk added in v1.0.8

func (o *VulnerabilityIngestion) GetFileOk() (*string, bool)

GetFileOk returns a tuple with the File field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityIngestion) GetId added in v1.0.8

func (o *VulnerabilityIngestion) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VulnerabilityIngestion) GetIdOk added in v1.0.8

func (o *VulnerabilityIngestion) 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 (*VulnerabilityIngestion) GetMessage added in v1.0.8

func (o *VulnerabilityIngestion) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*VulnerabilityIngestion) GetMessageOk added in v1.0.8

func (o *VulnerabilityIngestion) 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 (*VulnerabilityIngestion) GetName added in v1.0.8

func (o *VulnerabilityIngestion) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*VulnerabilityIngestion) GetNameOk added in v1.0.8

func (o *VulnerabilityIngestion) 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 (*VulnerabilityIngestion) HasExecutedOn added in v1.0.8

func (o *VulnerabilityIngestion) HasExecutedOn() bool

HasExecutedOn returns a boolean if a field has been set.

func (*VulnerabilityIngestion) HasFile added in v1.0.8

func (o *VulnerabilityIngestion) HasFile() bool

HasFile returns a boolean if a field has been set.

func (*VulnerabilityIngestion) HasId added in v1.0.8

func (o *VulnerabilityIngestion) HasId() bool

HasId returns a boolean if a field has been set.

func (*VulnerabilityIngestion) HasMessage added in v1.0.8

func (o *VulnerabilityIngestion) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*VulnerabilityIngestion) HasName added in v1.0.8

func (o *VulnerabilityIngestion) HasName() bool

HasName returns a boolean if a field has been set.

func (VulnerabilityIngestion) MarshalJSON added in v1.0.8

func (o VulnerabilityIngestion) MarshalJSON() ([]byte, error)

func (*VulnerabilityIngestion) SetExecutedOn added in v1.0.8

func (o *VulnerabilityIngestion) SetExecutedOn(v time.Time)

SetExecutedOn gets a reference to the given time.Time and assigns it to the ExecutedOn field.

func (*VulnerabilityIngestion) SetFile added in v1.0.8

func (o *VulnerabilityIngestion) SetFile(v string)

SetFile gets a reference to the given string and assigns it to the File field.

func (*VulnerabilityIngestion) SetId added in v1.0.8

func (o *VulnerabilityIngestion) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VulnerabilityIngestion) SetMessage added in v1.0.8

func (o *VulnerabilityIngestion) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*VulnerabilityIngestion) SetName added in v1.0.8

func (o *VulnerabilityIngestion) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*VulnerabilityIngestion) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityIngestion) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityRegistration added in v1.0.8

type VulnerabilityRegistration struct {
	Id                   *string    `json:"id,omitempty"`
	RegisteredOn         *time.Time `json:"registeredOn,omitempty"`
	Product              *string    `json:"product,omitempty"`
	Version              *string    `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityRegistration struct for VulnerabilityRegistration

func NewVulnerabilityRegistration added in v1.0.8

func NewVulnerabilityRegistration() *VulnerabilityRegistration

NewVulnerabilityRegistration instantiates a new VulnerabilityRegistration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityRegistrationWithDefaults added in v1.0.8

func NewVulnerabilityRegistrationWithDefaults() *VulnerabilityRegistration

NewVulnerabilityRegistrationWithDefaults instantiates a new VulnerabilityRegistration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityRegistration) GetId added in v1.0.8

func (o *VulnerabilityRegistration) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VulnerabilityRegistration) GetIdOk added in v1.0.8

func (o *VulnerabilityRegistration) 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 (*VulnerabilityRegistration) GetProduct added in v1.0.8

func (o *VulnerabilityRegistration) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*VulnerabilityRegistration) GetProductOk added in v1.0.8

func (o *VulnerabilityRegistration) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityRegistration) GetRegisteredOn added in v1.0.8

func (o *VulnerabilityRegistration) GetRegisteredOn() time.Time

GetRegisteredOn returns the RegisteredOn field value if set, zero value otherwise.

func (*VulnerabilityRegistration) GetRegisteredOnOk added in v1.0.8

func (o *VulnerabilityRegistration) GetRegisteredOnOk() (*time.Time, bool)

GetRegisteredOnOk returns a tuple with the RegisteredOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityRegistration) GetVersion added in v1.0.8

func (o *VulnerabilityRegistration) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*VulnerabilityRegistration) GetVersionOk added in v1.0.8

func (o *VulnerabilityRegistration) 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 (*VulnerabilityRegistration) HasId added in v1.0.8

func (o *VulnerabilityRegistration) HasId() bool

HasId returns a boolean if a field has been set.

func (*VulnerabilityRegistration) HasProduct added in v1.0.8

func (o *VulnerabilityRegistration) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*VulnerabilityRegistration) HasRegisteredOn added in v1.0.8

func (o *VulnerabilityRegistration) HasRegisteredOn() bool

HasRegisteredOn returns a boolean if a field has been set.

func (*VulnerabilityRegistration) HasVersion added in v1.0.8

func (o *VulnerabilityRegistration) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (VulnerabilityRegistration) MarshalJSON added in v1.0.8

func (o VulnerabilityRegistration) MarshalJSON() ([]byte, error)

func (*VulnerabilityRegistration) SetId added in v1.0.8

func (o *VulnerabilityRegistration) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VulnerabilityRegistration) SetProduct added in v1.0.8

func (o *VulnerabilityRegistration) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*VulnerabilityRegistration) SetRegisteredOn added in v1.0.8

func (o *VulnerabilityRegistration) SetRegisteredOn(v time.Time)

SetRegisteredOn gets a reference to the given time.Time and assigns it to the RegisteredOn field.

func (*VulnerabilityRegistration) SetVersion added in v1.0.8

func (o *VulnerabilityRegistration) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*VulnerabilityRegistration) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityRegistration) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityRegistrationAllOf added in v1.0.8

type VulnerabilityRegistrationAllOf struct {
	Id                   *string    `json:"id,omitempty"`
	RegisteredOn         *time.Time `json:"registeredOn,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityRegistrationAllOf struct for VulnerabilityRegistrationAllOf

func NewVulnerabilityRegistrationAllOf added in v1.0.8

func NewVulnerabilityRegistrationAllOf() *VulnerabilityRegistrationAllOf

NewVulnerabilityRegistrationAllOf instantiates a new VulnerabilityRegistrationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityRegistrationAllOfWithDefaults added in v1.0.8

func NewVulnerabilityRegistrationAllOfWithDefaults() *VulnerabilityRegistrationAllOf

NewVulnerabilityRegistrationAllOfWithDefaults instantiates a new VulnerabilityRegistrationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityRegistrationAllOf) GetId added in v1.0.8

GetId returns the Id field value if set, zero value otherwise.

func (*VulnerabilityRegistrationAllOf) GetIdOk added in v1.0.8

func (o *VulnerabilityRegistrationAllOf) 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 (*VulnerabilityRegistrationAllOf) GetRegisteredOn added in v1.0.8

func (o *VulnerabilityRegistrationAllOf) GetRegisteredOn() time.Time

GetRegisteredOn returns the RegisteredOn field value if set, zero value otherwise.

func (*VulnerabilityRegistrationAllOf) GetRegisteredOnOk added in v1.0.8

func (o *VulnerabilityRegistrationAllOf) GetRegisteredOnOk() (*time.Time, bool)

GetRegisteredOnOk returns a tuple with the RegisteredOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityRegistrationAllOf) HasId added in v1.0.8

HasId returns a boolean if a field has been set.

func (*VulnerabilityRegistrationAllOf) HasRegisteredOn added in v1.0.8

func (o *VulnerabilityRegistrationAllOf) HasRegisteredOn() bool

HasRegisteredOn returns a boolean if a field has been set.

func (VulnerabilityRegistrationAllOf) MarshalJSON added in v1.0.8

func (o VulnerabilityRegistrationAllOf) MarshalJSON() ([]byte, error)

func (*VulnerabilityRegistrationAllOf) SetId added in v1.0.8

SetId gets a reference to the given string and assigns it to the Id field.

func (*VulnerabilityRegistrationAllOf) SetRegisteredOn added in v1.0.8

func (o *VulnerabilityRegistrationAllOf) SetRegisteredOn(v time.Time)

SetRegisteredOn gets a reference to the given time.Time and assigns it to the RegisteredOn field.

func (*VulnerabilityRegistrationAllOf) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityRegistrationAllOf) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityRegistrationCreate added in v1.0.8

type VulnerabilityRegistrationCreate struct {
	Product              *string `json:"product,omitempty"`
	Version              *string `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityRegistrationCreate Registration for vulnerability inspection.

func NewVulnerabilityRegistrationCreate added in v1.0.8

func NewVulnerabilityRegistrationCreate() *VulnerabilityRegistrationCreate

NewVulnerabilityRegistrationCreate instantiates a new VulnerabilityRegistrationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityRegistrationCreateWithDefaults added in v1.0.8

func NewVulnerabilityRegistrationCreateWithDefaults() *VulnerabilityRegistrationCreate

NewVulnerabilityRegistrationCreateWithDefaults instantiates a new VulnerabilityRegistrationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityRegistrationCreate) GetProduct added in v1.0.8

func (o *VulnerabilityRegistrationCreate) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*VulnerabilityRegistrationCreate) GetProductOk added in v1.0.8

func (o *VulnerabilityRegistrationCreate) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityRegistrationCreate) GetVersion added in v1.0.8

func (o *VulnerabilityRegistrationCreate) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*VulnerabilityRegistrationCreate) GetVersionOk added in v1.0.8

func (o *VulnerabilityRegistrationCreate) 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 (*VulnerabilityRegistrationCreate) HasProduct added in v1.0.8

func (o *VulnerabilityRegistrationCreate) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*VulnerabilityRegistrationCreate) HasVersion added in v1.0.8

func (o *VulnerabilityRegistrationCreate) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (VulnerabilityRegistrationCreate) MarshalJSON added in v1.0.8

func (o VulnerabilityRegistrationCreate) MarshalJSON() ([]byte, error)

func (*VulnerabilityRegistrationCreate) SetProduct added in v1.0.8

func (o *VulnerabilityRegistrationCreate) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*VulnerabilityRegistrationCreate) SetVersion added in v1.0.8

func (o *VulnerabilityRegistrationCreate) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*VulnerabilityRegistrationCreate) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityRegistrationCreate) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilitySeverity added in v1.0.8

type VulnerabilitySeverity string

VulnerabilitySeverity PSIRT vulnerability severity rating (https://nvd.nist.gov/vuln-metrics/cvss).

const (
	VULNERABILITYSEVERITY_NONE     VulnerabilitySeverity = "NONE"
	VULNERABILITYSEVERITY_LOW      VulnerabilitySeverity = "LOW"
	VULNERABILITYSEVERITY_MEDIUM   VulnerabilitySeverity = "MEDIUM"
	VULNERABILITYSEVERITY_HIGH     VulnerabilitySeverity = "HIGH"
	VULNERABILITYSEVERITY_CRITICAL VulnerabilitySeverity = "CRITICAL"
)

List of VulnerabilitySeverity

func (VulnerabilitySeverity) Ptr added in v1.0.8

Ptr returns reference to VulnerabilitySeverity value

func (*VulnerabilitySeverity) UnmarshalJSON added in v1.0.8

func (v *VulnerabilitySeverity) UnmarshalJSON(src []byte) error

type VulnerabilityValidation added in v1.0.8

type VulnerabilityValidation struct {
	Id                   *string    `json:"id,omitempty"`
	ExecutedOn           *time.Time `json:"executedOn,omitempty"`
	Product              *string    `json:"product,omitempty"`
	Message              *string    `json:"message,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityValidation Execution of vulnerability validation task

func NewVulnerabilityValidation added in v1.0.8

func NewVulnerabilityValidation() *VulnerabilityValidation

NewVulnerabilityValidation instantiates a new VulnerabilityValidation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityValidationWithDefaults added in v1.0.8

func NewVulnerabilityValidationWithDefaults() *VulnerabilityValidation

NewVulnerabilityValidationWithDefaults instantiates a new VulnerabilityValidation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityValidation) GetExecutedOn added in v1.0.8

func (o *VulnerabilityValidation) GetExecutedOn() time.Time

GetExecutedOn returns the ExecutedOn field value if set, zero value otherwise.

func (*VulnerabilityValidation) GetExecutedOnOk added in v1.0.8

func (o *VulnerabilityValidation) GetExecutedOnOk() (*time.Time, bool)

GetExecutedOnOk returns a tuple with the ExecutedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityValidation) GetId added in v1.0.8

func (o *VulnerabilityValidation) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VulnerabilityValidation) GetIdOk added in v1.0.8

func (o *VulnerabilityValidation) 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 (*VulnerabilityValidation) GetMessage added in v1.0.8

func (o *VulnerabilityValidation) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*VulnerabilityValidation) GetMessageOk added in v1.0.8

func (o *VulnerabilityValidation) 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 (*VulnerabilityValidation) GetProduct added in v1.0.8

func (o *VulnerabilityValidation) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*VulnerabilityValidation) GetProductOk added in v1.0.8

func (o *VulnerabilityValidation) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VulnerabilityValidation) HasExecutedOn added in v1.0.8

func (o *VulnerabilityValidation) HasExecutedOn() bool

HasExecutedOn returns a boolean if a field has been set.

func (*VulnerabilityValidation) HasId added in v1.0.8

func (o *VulnerabilityValidation) HasId() bool

HasId returns a boolean if a field has been set.

func (*VulnerabilityValidation) HasMessage added in v1.0.8

func (o *VulnerabilityValidation) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*VulnerabilityValidation) HasProduct added in v1.0.8

func (o *VulnerabilityValidation) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (VulnerabilityValidation) MarshalJSON added in v1.0.8

func (o VulnerabilityValidation) MarshalJSON() ([]byte, error)

func (*VulnerabilityValidation) SetExecutedOn added in v1.0.8

func (o *VulnerabilityValidation) SetExecutedOn(v time.Time)

SetExecutedOn gets a reference to the given time.Time and assigns it to the ExecutedOn field.

func (*VulnerabilityValidation) SetId added in v1.0.8

func (o *VulnerabilityValidation) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VulnerabilityValidation) SetMessage added in v1.0.8

func (o *VulnerabilityValidation) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*VulnerabilityValidation) SetProduct added in v1.0.8

func (o *VulnerabilityValidation) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*VulnerabilityValidation) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityValidation) UnmarshalJSON(bytes []byte) (err error)

type VulnerabilityValidationPage added in v1.0.8

type VulnerabilityValidationPage struct {
	Page                 *int32                     `json:"page,omitempty"`
	PageSize             *int32                     `json:"pageSize,omitempty"`
	TotalItems           NullableInt64              `json:"totalItems,omitempty"`
	HasNext              NullableBool               `json:"hasNext,omitempty"`
	HasPrevious          NullableBool               `json:"hasPrevious,omitempty"`
	SortBy               NullableString             `json:"sortBy,omitempty"`
	SortOrder            NullableString             `json:"sortOrder,omitempty"`
	Contents             *[]VulnerabilityValidation `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityValidationPage struct for VulnerabilityValidationPage

func NewVulnerabilityValidationPage added in v1.0.8

func NewVulnerabilityValidationPage() *VulnerabilityValidationPage

NewVulnerabilityValidationPage instantiates a new VulnerabilityValidationPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityValidationPageWithDefaults added in v1.0.8

func NewVulnerabilityValidationPageWithDefaults() *VulnerabilityValidationPage

NewVulnerabilityValidationPageWithDefaults instantiates a new VulnerabilityValidationPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityValidationPage) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*VulnerabilityValidationPage) GetContentsOk added in v1.0.8

func (o *VulnerabilityValidationPage) GetContentsOk() (*[]VulnerabilityValidation, 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 (*VulnerabilityValidationPage) GetHasNext added in v1.0.8

func (o *VulnerabilityValidationPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityValidationPage) GetHasNextOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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 (*VulnerabilityValidationPage) GetHasPrevious added in v1.0.8

func (o *VulnerabilityValidationPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityValidationPage) GetHasPreviousOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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 (*VulnerabilityValidationPage) GetPage added in v1.0.8

func (o *VulnerabilityValidationPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*VulnerabilityValidationPage) GetPageOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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 (*VulnerabilityValidationPage) GetPageSize added in v1.0.8

func (o *VulnerabilityValidationPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*VulnerabilityValidationPage) GetPageSizeOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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 (*VulnerabilityValidationPage) GetSortBy added in v1.0.8

func (o *VulnerabilityValidationPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityValidationPage) GetSortByOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilityValidationPage) GetSortOrder added in v1.0.8

func (o *VulnerabilityValidationPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityValidationPage) GetSortOrderOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilityValidationPage) GetTotalItems added in v1.0.8

func (o *VulnerabilityValidationPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VulnerabilityValidationPage) GetTotalItemsOk added in v1.0.8

func (o *VulnerabilityValidationPage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VulnerabilityValidationPage) HasContents added in v1.0.8

func (o *VulnerabilityValidationPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasHasNext added in v1.0.8

func (o *VulnerabilityValidationPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasHasPrevious added in v1.0.8

func (o *VulnerabilityValidationPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasPage added in v1.0.8

func (o *VulnerabilityValidationPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasPageSize added in v1.0.8

func (o *VulnerabilityValidationPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasSortBy added in v1.0.8

func (o *VulnerabilityValidationPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasSortOrder added in v1.0.8

func (o *VulnerabilityValidationPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*VulnerabilityValidationPage) HasTotalItems added in v1.0.8

func (o *VulnerabilityValidationPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (VulnerabilityValidationPage) MarshalJSON added in v1.0.8

func (o VulnerabilityValidationPage) MarshalJSON() ([]byte, error)

func (*VulnerabilityValidationPage) SetContents added in v1.0.8

SetContents gets a reference to the given []VulnerabilityValidation and assigns it to the Contents field.

func (*VulnerabilityValidationPage) SetHasNext added in v1.0.8

func (o *VulnerabilityValidationPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*VulnerabilityValidationPage) SetHasNextNil added in v1.0.8

func (o *VulnerabilityValidationPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*VulnerabilityValidationPage) SetHasPrevious added in v1.0.8

func (o *VulnerabilityValidationPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*VulnerabilityValidationPage) SetHasPreviousNil added in v1.0.8

func (o *VulnerabilityValidationPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*VulnerabilityValidationPage) SetPage added in v1.0.8

func (o *VulnerabilityValidationPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*VulnerabilityValidationPage) SetPageSize added in v1.0.8

func (o *VulnerabilityValidationPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*VulnerabilityValidationPage) SetSortBy added in v1.0.8

func (o *VulnerabilityValidationPage) SetSortBy(v string)

SetSortBy gets a reference to the given NullableString and assigns it to the SortBy field.

func (*VulnerabilityValidationPage) SetSortByNil added in v1.0.8

func (o *VulnerabilityValidationPage) SetSortByNil()

SetSortByNil sets the value for SortBy to be an explicit nil

func (*VulnerabilityValidationPage) SetSortOrder added in v1.0.8

func (o *VulnerabilityValidationPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given NullableString and assigns it to the SortOrder field.

func (*VulnerabilityValidationPage) SetSortOrderNil added in v1.0.8

func (o *VulnerabilityValidationPage) SetSortOrderNil()

SetSortOrderNil sets the value for SortOrder to be an explicit nil

func (*VulnerabilityValidationPage) SetTotalItems added in v1.0.8

func (o *VulnerabilityValidationPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given NullableInt64 and assigns it to the TotalItems field.

func (*VulnerabilityValidationPage) SetTotalItemsNil added in v1.0.8

func (o *VulnerabilityValidationPage) SetTotalItemsNil()

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

func (*VulnerabilityValidationPage) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityValidationPage) UnmarshalJSON(bytes []byte) (err error)

func (*VulnerabilityValidationPage) UnsetHasNext added in v1.0.8

func (o *VulnerabilityValidationPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*VulnerabilityValidationPage) UnsetHasPrevious added in v1.0.8

func (o *VulnerabilityValidationPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

func (*VulnerabilityValidationPage) UnsetSortBy added in v1.0.8

func (o *VulnerabilityValidationPage) UnsetSortBy()

UnsetSortBy ensures that no value is present for SortBy, not even an explicit nil

func (*VulnerabilityValidationPage) UnsetSortOrder added in v1.0.8

func (o *VulnerabilityValidationPage) UnsetSortOrder()

UnsetSortOrder ensures that no value is present for SortOrder, not even an explicit nil

func (*VulnerabilityValidationPage) UnsetTotalItems added in v1.0.8

func (o *VulnerabilityValidationPage) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

type VulnerabilityValidationPageAllOf added in v1.0.8

type VulnerabilityValidationPageAllOf struct {
	Contents             *[]VulnerabilityValidation `json:"contents,omitempty"`
	AdditionalProperties map[string]interface{}
}

VulnerabilityValidationPageAllOf struct for VulnerabilityValidationPageAllOf

func NewVulnerabilityValidationPageAllOf added in v1.0.8

func NewVulnerabilityValidationPageAllOf() *VulnerabilityValidationPageAllOf

NewVulnerabilityValidationPageAllOf instantiates a new VulnerabilityValidationPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVulnerabilityValidationPageAllOfWithDefaults added in v1.0.8

func NewVulnerabilityValidationPageAllOfWithDefaults() *VulnerabilityValidationPageAllOf

NewVulnerabilityValidationPageAllOfWithDefaults instantiates a new VulnerabilityValidationPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VulnerabilityValidationPageAllOf) GetContents added in v1.0.8

GetContents returns the Contents field value if set, zero value otherwise.

func (*VulnerabilityValidationPageAllOf) GetContentsOk added in v1.0.8

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 (*VulnerabilityValidationPageAllOf) HasContents added in v1.0.8

func (o *VulnerabilityValidationPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (VulnerabilityValidationPageAllOf) MarshalJSON added in v1.0.8

func (o VulnerabilityValidationPageAllOf) MarshalJSON() ([]byte, error)

func (*VulnerabilityValidationPageAllOf) SetContents added in v1.0.8

SetContents gets a reference to the given []VulnerabilityValidation and assigns it to the Contents field.

func (*VulnerabilityValidationPageAllOf) UnmarshalJSON added in v1.0.8

func (o *VulnerabilityValidationPageAllOf) UnmarshalJSON(bytes []byte) (err error)

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           NullableString          `json:"object_type,omitempty"`
	Properties           *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]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            NullableString          `json:"updated_by,omitempty"`
	Owner                NullableString          `json:"owner,omitempty"`
	UniqueName           NullableString          `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Workflow) GetOwner

func (o *Workflow) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*Workflow) GetPropertiesOk

func (o *Workflow) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*Workflow) GetStatusOk

func (o *Workflow) GetStatusOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Workflow) GetUpdatedBy

func (o *Workflow) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the ObjectType field.

func (*Workflow) SetObjectTypeNil added in v1.0.5

func (o *Workflow) SetObjectTypeNil()

SetObjectTypeNil sets the value for ObjectType to be an explicit nil

func (*Workflow) SetOwner

func (o *Workflow) SetOwner(v string)

SetOwner gets a reference to the given NullableString and assigns it to the Owner field.

func (*Workflow) SetOwnerNil added in v1.0.5

func (o *Workflow) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

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]interface{})

SetProperties gets a reference to the given 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]interface{})

SetStatus gets a reference to the given 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 NullableString and assigns it to the UniqueName field.

func (*Workflow) SetUniqueNameNil added in v1.0.5

func (o *Workflow) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*Workflow) SetUpdatedBy

func (o *Workflow) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*Workflow) SetUpdatedByNil added in v1.0.5

func (o *Workflow) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

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.

func (*Workflow) UnmarshalJSON added in v1.0.5

func (o *Workflow) UnmarshalJSON(bytes []byte) (err error)

func (*Workflow) UnsetObjectType added in v1.0.5

func (o *Workflow) UnsetObjectType()

UnsetObjectType ensures that no value is present for ObjectType, not even an explicit nil

func (*Workflow) UnsetOwner added in v1.0.5

func (o *Workflow) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*Workflow) UnsetUniqueName added in v1.0.5

func (o *Workflow) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*Workflow) UnsetUpdatedBy added in v1.0.5

func (o *Workflow) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*WorkflowAccessMeta) UnmarshalJSON added in v1.0.5

func (o *WorkflowAccessMeta) UnmarshalJSON(bytes []byte) (err error)

type WorkflowAccessMetaType

type WorkflowAccessMetaType struct {
	Id                   *string `json:"id,omitempty"`
	Type                 *string `json:"type,omitempty"`
	Version              *string `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*WorkflowAccessMetaType) UnmarshalJSON added in v1.0.5

func (o *WorkflowAccessMetaType) UnmarshalJSON(bytes []byte) (err error)

type WorkflowAction

type WorkflowAction struct {
	Id                   *string                `json:"id,omitempty"`
	WorkflowId           NullableString         `json:"workflow_id,omitempty"`
	DefinitionId         NullableString         `json:"definition_id,omitempty"`
	SchemaId             NullableString         `json:"schema_id,omitempty"`
	AdapterId            NullableString         `json:"adapter_id,omitempty"`
	UniqueName           NullableString         `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]interface{} `json:"properties,omitempty"`
	ObjectType           NullableString         `json:"object_type,omitempty"`
	StartedBy            NullableString         `json:"started_by,omitempty"`
	Blocks               []WorkflowActionBlock  `json:"blocks,omitempty"`
	Status               map[string]interface{} `json:"status,omitempty"`
	Description          NullableString         `json:"description,omitempty"`
	Output               map[string]interface{} `json:"output,omitempty"`
	StartedOn            NullableString         `json:"started_on,omitempty"`
	EndedOn              NullableString         `json:"ended_on,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetDefinitionId

func (o *WorkflowAction) GetDefinitionId() string

GetDefinitionId returns the DefinitionId field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetDescription

func (o *WorkflowAction) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetEndedOn

func (o *WorkflowAction) GetEndedOn() string

GetEndedOn returns the EndedOn field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetOutput

func (o *WorkflowAction) GetOutput() map[string]interface{}

GetOutput returns the Output field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowAction) GetOutputOk

func (o *WorkflowAction) GetOutputOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetProperties

func (o *WorkflowAction) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowAction) GetPropertiesOk

func (o *WorkflowAction) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetSchemaId

func (o *WorkflowAction) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetStartedBy

func (o *WorkflowAction) GetStartedBy() string

GetStartedBy returns the StartedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetStartedOn

func (o *WorkflowAction) GetStartedOn() string

GetStartedOn returns the StartedOn field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetStatus

func (o *WorkflowAction) GetStatus() map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowAction) GetStatusOk

func (o *WorkflowAction) GetStatusOk() (*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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowAction) GetWorkflowId

func (o *WorkflowAction) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the AdapterId field.

func (*WorkflowAction) SetAdapterIdNil added in v1.0.5

func (o *WorkflowAction) SetAdapterIdNil()

SetAdapterIdNil sets the value for AdapterId to be an explicit nil

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 NullableString and assigns it to the DefinitionId field.

func (*WorkflowAction) SetDefinitionIdNil added in v1.0.5

func (o *WorkflowAction) SetDefinitionIdNil()

SetDefinitionIdNil sets the value for DefinitionId to be an explicit nil

func (*WorkflowAction) SetDescription

func (o *WorkflowAction) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*WorkflowAction) SetDescriptionNil added in v1.0.5

func (o *WorkflowAction) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*WorkflowAction) SetEndedOn

func (o *WorkflowAction) SetEndedOn(v string)

SetEndedOn gets a reference to the given NullableString and assigns it to the EndedOn field.

func (*WorkflowAction) SetEndedOnNil added in v1.0.5

func (o *WorkflowAction) SetEndedOnNil()

SetEndedOnNil sets the value for EndedOn to be an explicit nil

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 NullableString and assigns it to the ObjectType field.

func (*WorkflowAction) SetObjectTypeNil added in v1.0.5

func (o *WorkflowAction) SetObjectTypeNil()

SetObjectTypeNil sets the value for ObjectType to be an explicit nil

func (*WorkflowAction) SetOutput

func (o *WorkflowAction) SetOutput(v map[string]interface{})

SetOutput gets a reference to the given map[string]interface{} and assigns it to the Output field.

func (*WorkflowAction) SetProperties

func (o *WorkflowAction) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given 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 NullableString and assigns it to the SchemaId field.

func (*WorkflowAction) SetSchemaIdNil added in v1.0.5

func (o *WorkflowAction) SetSchemaIdNil()

SetSchemaIdNil sets the value for SchemaId to be an explicit nil

func (*WorkflowAction) SetStartedBy

func (o *WorkflowAction) SetStartedBy(v string)

SetStartedBy gets a reference to the given NullableString and assigns it to the StartedBy field.

func (*WorkflowAction) SetStartedByNil added in v1.0.5

func (o *WorkflowAction) SetStartedByNil()

SetStartedByNil sets the value for StartedBy to be an explicit nil

func (*WorkflowAction) SetStartedOn

func (o *WorkflowAction) SetStartedOn(v string)

SetStartedOn gets a reference to the given NullableString and assigns it to the StartedOn field.

func (*WorkflowAction) SetStartedOnNil added in v1.0.5

func (o *WorkflowAction) SetStartedOnNil()

SetStartedOnNil sets the value for StartedOn to be an explicit nil

func (*WorkflowAction) SetStatus

func (o *WorkflowAction) SetStatus(v map[string]interface{})

SetStatus gets a reference to the given 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 NullableString and assigns it to the UniqueName field.

func (*WorkflowAction) SetUniqueNameNil added in v1.0.5

func (o *WorkflowAction) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowAction) SetWorkflowId

func (o *WorkflowAction) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given NullableString and assigns it to the WorkflowId field.

func (*WorkflowAction) SetWorkflowIdNil added in v1.0.5

func (o *WorkflowAction) SetWorkflowIdNil()

SetWorkflowIdNil sets the value for WorkflowId to be an explicit nil

func (*WorkflowAction) UnmarshalJSON added in v1.0.5

func (o *WorkflowAction) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowAction) UnsetAdapterId added in v1.0.5

func (o *WorkflowAction) UnsetAdapterId()

UnsetAdapterId ensures that no value is present for AdapterId, not even an explicit nil

func (*WorkflowAction) UnsetDefinitionId added in v1.0.5

func (o *WorkflowAction) UnsetDefinitionId()

UnsetDefinitionId ensures that no value is present for DefinitionId, not even an explicit nil

func (*WorkflowAction) UnsetDescription added in v1.0.5

func (o *WorkflowAction) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*WorkflowAction) UnsetEndedOn added in v1.0.5

func (o *WorkflowAction) UnsetEndedOn()

UnsetEndedOn ensures that no value is present for EndedOn, not even an explicit nil

func (*WorkflowAction) UnsetObjectType added in v1.0.5

func (o *WorkflowAction) UnsetObjectType()

UnsetObjectType ensures that no value is present for ObjectType, not even an explicit nil

func (*WorkflowAction) UnsetSchemaId added in v1.0.5

func (o *WorkflowAction) UnsetSchemaId()

UnsetSchemaId ensures that no value is present for SchemaId, not even an explicit nil

func (*WorkflowAction) UnsetStartedBy added in v1.0.5

func (o *WorkflowAction) UnsetStartedBy()

UnsetStartedBy ensures that no value is present for StartedBy, not even an explicit nil

func (*WorkflowAction) UnsetStartedOn added in v1.0.5

func (o *WorkflowAction) UnsetStartedOn()

UnsetStartedOn ensures that no value is present for StartedOn, not even an explicit nil

func (*WorkflowAction) UnsetUniqueName added in v1.0.5

func (o *WorkflowAction) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowAction) UnsetWorkflowId added in v1.0.5

func (o *WorkflowAction) UnsetWorkflowId()

UnsetWorkflowId ensures that no value is present for WorkflowId, not even an explicit nil

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]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"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetPropertiesOk

func (o *WorkflowActionBlock) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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]interface{})

SetProperties gets a reference to the given 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.

func (*WorkflowActionBlock) UnmarshalJSON added in v1.0.5

func (o *WorkflowActionBlock) UnmarshalJSON(bytes []byte) (err error)

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           NullableString          `json:"object_type,omitempty"`
	Properties           *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]interface{} `json:"status,omitempty"`
	Permissions          *[]string               `json:"permissions,omitempty"`
	Variables            *[]WorkflowVariable     `json:"variables,omitempty"`
	Actions              []WorkflowAction        `json:"actions,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowAllOf) GetPropertiesOk

func (o *WorkflowAllOf) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowAllOf) GetStatusOk

func (o *WorkflowAllOf) GetStatusOk() (*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 NullableString and assigns it to the ObjectType field.

func (*WorkflowAllOf) SetObjectTypeNil added in v1.0.5

func (o *WorkflowAllOf) SetObjectTypeNil()

SetObjectTypeNil sets the value for ObjectType to be an explicit nil

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]interface{})

SetProperties gets a reference to the given 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]interface{})

SetStatus gets a reference to the given 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.

func (*WorkflowAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowAllOf) UnsetObjectType added in v1.0.5

func (o *WorkflowAllOf) UnsetObjectType()

UnsetObjectType ensures that no value is present for ObjectType, not even an explicit nil

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           NullableString `json:"object_type,omitempty"`
	CreatedOn            *string        `json:"created_on,omitempty"`
	CreatedBy            *string        `json:"created_by,omitempty"`
	UpdatedOn            *string        `json:"updated_on,omitempty"`
	UpdatedBy            NullableString `json:"updated_by,omitempty"`
	Owner                NullableString `json:"owner,omitempty"`
	UniqueName           NullableString `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowCategory) GetOwner

func (o *WorkflowCategory) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowCategory) GetUpdatedBy

func (o *WorkflowCategory) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the ObjectType field.

func (*WorkflowCategory) SetObjectTypeNil added in v1.0.5

func (o *WorkflowCategory) SetObjectTypeNil()

SetObjectTypeNil sets the value for ObjectType to be an explicit nil

func (*WorkflowCategory) SetOwner

func (o *WorkflowCategory) SetOwner(v string)

SetOwner gets a reference to the given NullableString and assigns it to the Owner field.

func (*WorkflowCategory) SetOwnerNil added in v1.0.5

func (o *WorkflowCategory) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

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 NullableString and assigns it to the UniqueName field.

func (*WorkflowCategory) SetUniqueNameNil added in v1.0.5

func (o *WorkflowCategory) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowCategory) SetUpdatedBy

func (o *WorkflowCategory) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowCategory) SetUpdatedByNil added in v1.0.5

func (o *WorkflowCategory) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

func (*WorkflowCategory) SetUpdatedOn

func (o *WorkflowCategory) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowCategory) UnmarshalJSON added in v1.0.5

func (o *WorkflowCategory) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowCategory) UnsetObjectType added in v1.0.5

func (o *WorkflowCategory) UnsetObjectType()

UnsetObjectType ensures that no value is present for ObjectType, not even an explicit nil

func (*WorkflowCategory) UnsetOwner added in v1.0.5

func (o *WorkflowCategory) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowCategory) UnsetUniqueName added in v1.0.5

func (o *WorkflowCategory) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowCategory) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowCategory) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

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           NullableString `json:"object_type,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the ObjectType field.

func (*WorkflowCategoryAllOf) SetObjectTypeNil added in v1.0.5

func (o *WorkflowCategoryAllOf) SetObjectTypeNil()

SetObjectTypeNil sets the value for ObjectType to be an explicit nil

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.

func (*WorkflowCategoryAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowCategoryAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowCategoryAllOf) UnsetObjectType added in v1.0.5

func (o *WorkflowCategoryAllOf) UnsetObjectType()

UnsetObjectType ensures that no value is present for ObjectType, not even an explicit nil

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*WorkflowCategoryCreate) UnmarshalJSON added in v1.0.5

func (o *WorkflowCategoryCreate) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*WorkflowCategoryUpdate) UnmarshalJSON added in v1.0.5

func (o *WorkflowCategoryUpdate) UnmarshalJSON(bytes []byte) (err error)

type WorkflowDefAccessMeta

type WorkflowDefAccessMeta struct {
	IsIntegration        NullableBool `json:"is_integration,omitempty"`
	IsInternal           *bool        `json:"is_internal,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableBool and assigns it to the IsIntegration field.

func (*WorkflowDefAccessMeta) SetIsIntegrationNil added in v1.0.5

func (o *WorkflowDefAccessMeta) SetIsIntegrationNil()

SetIsIntegrationNil sets the value for IsIntegration to be an explicit nil

func (*WorkflowDefAccessMeta) SetIsInternal

func (o *WorkflowDefAccessMeta) SetIsInternal(v bool)

SetIsInternal gets a reference to the given bool and assigns it to the IsInternal field.

func (*WorkflowDefAccessMeta) UnmarshalJSON added in v1.0.5

func (o *WorkflowDefAccessMeta) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowDefAccessMeta) UnsetIsIntegration added in v1.0.5

func (o *WorkflowDefAccessMeta) UnsetIsIntegration()

UnsetIsIntegration ensures that no value is present for IsIntegration, not even an explicit nil

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]interface{} `json:"properties,omitempty"`
	CreatedOn            *string                 `json:"created_on,omitempty"`
	CreatedBy            *string                 `json:"created_by,omitempty"`
	UpdatedOn            *string                 `json:"updated_on,omitempty"`
	UpdatedBy            NullableString          `json:"updated_by,omitempty"`
	Owner                NullableString          `json:"owner,omitempty"`
	UniqueName           NullableString          `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowEvent) GetProperties

func (o *WorkflowEvent) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowEvent) GetPropertiesOk

func (o *WorkflowEvent) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowEvent) GetUpdatedBy

func (o *WorkflowEvent) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Owner field.

func (*WorkflowEvent) SetOwnerNil added in v1.0.5

func (o *WorkflowEvent) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

func (*WorkflowEvent) SetProperties

func (o *WorkflowEvent) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given 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 NullableString and assigns it to the UniqueName field.

func (*WorkflowEvent) SetUniqueNameNil added in v1.0.5

func (o *WorkflowEvent) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowEvent) SetUpdatedBy

func (o *WorkflowEvent) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowEvent) SetUpdatedByNil added in v1.0.5

func (o *WorkflowEvent) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

func (*WorkflowEvent) SetUpdatedOn

func (o *WorkflowEvent) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowEvent) UnmarshalJSON added in v1.0.5

func (o *WorkflowEvent) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowEvent) UnsetOwner added in v1.0.5

func (o *WorkflowEvent) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowEvent) UnsetUniqueName added in v1.0.5

func (o *WorkflowEvent) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowEvent) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowEvent) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

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]interface{} `json:"properties,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetPropertiesOk

func (o *WorkflowEventAllOf) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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]interface{})

SetProperties gets a reference to the given 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.

func (*WorkflowEventAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowEventAllOf) UnmarshalJSON(bytes []byte) (err error)

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]interface{} `json:"properties"`
	AdditionalProperties map[string]interface{}
}

WorkflowEventCreate struct for WorkflowEventCreate

func NewWorkflowEventCreate

func NewWorkflowEventCreate(title string, targetId string, schemaId string, properties 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]interface{}

GetProperties returns the Properties field value

func (*WorkflowEventCreate) GetPropertiesOk

func (o *WorkflowEventCreate) GetPropertiesOk() (*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]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

func (*WorkflowEventCreate) UnmarshalJSON added in v1.0.5

func (o *WorkflowEventCreate) UnmarshalJSON(bytes []byte) (err error)

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]interface{} `json:"properties"`
	AdditionalProperties map[string]interface{}
}

WorkflowEventUpdate struct for WorkflowEventUpdate

func NewWorkflowEventUpdate

func NewWorkflowEventUpdate(title string, targetId string, schemaId string, properties 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]interface{}

GetProperties returns the Properties field value

func (*WorkflowEventUpdate) GetPropertiesOk

func (o *WorkflowEventUpdate) GetPropertiesOk() (*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]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

func (*WorkflowEventUpdate) UnmarshalJSON added in v1.0.5

func (o *WorkflowEventUpdate) UnmarshalJSON(bytes []byte) (err error)

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            NullableString `json:"updated_by,omitempty"`
	Owner                NullableString `json:"owner,omitempty"`
	UniqueName           NullableString `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowFooter) GetUniqueName

func (o *WorkflowFooter) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowFooter) GetUpdatedBy

func (o *WorkflowFooter) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Owner field.

func (*WorkflowFooter) SetOwnerNil added in v1.0.5

func (o *WorkflowFooter) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

func (*WorkflowFooter) SetUniqueName

func (o *WorkflowFooter) SetUniqueName(v string)

SetUniqueName gets a reference to the given NullableString and assigns it to the UniqueName field.

func (*WorkflowFooter) SetUniqueNameNil added in v1.0.5

func (o *WorkflowFooter) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowFooter) SetUpdatedBy

func (o *WorkflowFooter) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowFooter) SetUpdatedByNil added in v1.0.5

func (o *WorkflowFooter) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

func (*WorkflowFooter) SetUpdatedOn

func (o *WorkflowFooter) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowFooter) UnmarshalJSON added in v1.0.5

func (o *WorkflowFooter) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowFooter) UnsetOwner added in v1.0.5

func (o *WorkflowFooter) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowFooter) UnsetUniqueName added in v1.0.5

func (o *WorkflowFooter) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowFooter) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowFooter) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

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]interface{} `json:"properties,omitempty"`
	Actions              []WorkflowAction        `json:"actions,omitempty"`
	Variables            []WorkflowVariable      `json:"variables,omitempty"`
	Status               *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            NullableString          `json:"updated_by,omitempty"`
	Owner                NullableString          `json:"owner,omitempty"`
	UniqueName           NullableString          `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowInstance) GetProperties

func (o *WorkflowInstance) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowInstance) GetPropertiesOk

func (o *WorkflowInstance) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowInstance) GetStatusOk

func (o *WorkflowInstance) GetStatusOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowInstance) GetUpdatedBy

func (o *WorkflowInstance) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Owner field.

func (*WorkflowInstance) SetOwnerNil added in v1.0.5

func (o *WorkflowInstance) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

func (*WorkflowInstance) SetProperties

func (o *WorkflowInstance) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given 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]interface{})

SetStatus gets a reference to the given 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 NullableString and assigns it to the UniqueName field.

func (*WorkflowInstance) SetUniqueNameNil added in v1.0.5

func (o *WorkflowInstance) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowInstance) SetUpdatedBy

func (o *WorkflowInstance) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowInstance) SetUpdatedByNil added in v1.0.5

func (o *WorkflowInstance) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

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.

func (*WorkflowInstance) UnmarshalJSON added in v1.0.5

func (o *WorkflowInstance) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowInstance) UnsetOwner added in v1.0.5

func (o *WorkflowInstance) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowInstance) UnsetUniqueName added in v1.0.5

func (o *WorkflowInstance) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowInstance) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowInstance) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

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]interface{} `json:"properties,omitempty"`
	Actions              []WorkflowAction        `json:"actions,omitempty"`
	Variables            []WorkflowVariable      `json:"variables,omitempty"`
	Status               *map[string]interface{} `json:"status,omitempty"`
	StartedOn            *string                 `json:"started_on,omitempty"`
	EndedOn              *string                 `json:"ended_on,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetPropertiesOk

func (o *WorkflowInstanceAllOf) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetStatusOk

func (o *WorkflowInstanceAllOf) GetStatusOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{})

SetProperties gets a reference to the given 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]interface{})

SetStatus gets a reference to the given 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.

func (*WorkflowInstanceAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowInstanceAllOf) UnmarshalJSON(bytes []byte) (err error)

type WorkflowInstanceDeleteResponse

type WorkflowInstanceDeleteResponse struct {
	DeletedChildWorkflowInstanceIds []string `json:"deleted_child_workflow_instance_ids,omitempty"`
	AdditionalProperties            map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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.

func (*WorkflowInstanceDeleteResponse) UnmarshalJSON added in v1.0.5

func (o *WorkflowInstanceDeleteResponse) UnmarshalJSON(bytes []byte) (err error)

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"`
	AdditionalProperties map[string]interface{}
}

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.

func (*WorkflowMapping) UnmarshalJSON added in v1.0.5

func (o *WorkflowMapping) UnmarshalJSON(bytes []byte) (err error)

type WorkflowMetadata

type WorkflowMetadata struct {
	GitInfo              *WorkflowMetadataGitInfo `json:"git_info,omitempty"`
	AdditionalProperties map[string]interface{}
}

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.

func (*WorkflowMetadata) UnmarshalJSON added in v1.0.5

func (o *WorkflowMetadata) UnmarshalJSON(bytes []byte) (err error)

type WorkflowMetadataGitInfo

type WorkflowMetadataGitInfo struct {
	TargetId             NullableString `json:"target_id,omitempty"`
	CommitHash           NullableString `json:"commit_hash,omitempty"`
	CommittedBy          NullableString `json:"committed_by,omitempty"`
	CommitedOn           NullableString `json:"commited_on,omitempty"`
	CommittedOn          NullableString `json:"committed_on,omitempty"`
	CommitMessage        NullableString `json:"commit_message,omitempty"`
	FileName             NullableString `json:"file_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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) GetCommitHash

func (o *WorkflowMetadataGitInfo) GetCommitHash() string

GetCommitHash returns the CommitHash field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowMetadataGitInfo) GetCommitMessage

func (o *WorkflowMetadataGitInfo) GetCommitMessage() string

GetCommitMessage returns the CommitMessage field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowMetadataGitInfo) GetCommitedOn added in v1.0.5

func (o *WorkflowMetadataGitInfo) GetCommitedOn() string

GetCommitedOn returns the CommitedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowMetadataGitInfo) GetCommitedOnOk added in v1.0.5

func (o *WorkflowMetadataGitInfo) GetCommitedOnOk() (*string, bool)

GetCommitedOnOk returns a tuple with the CommitedOn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowMetadataGitInfo) GetCommittedBy added in v1.0.2

func (o *WorkflowMetadataGitInfo) GetCommittedBy() string

GetCommittedBy returns the CommittedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowMetadataGitInfo) GetCommittedByOk added in v1.0.2

func (o *WorkflowMetadataGitInfo) GetCommittedByOk() (*string, bool)

GetCommittedByOk returns a tuple with the CommittedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowMetadataGitInfo) GetCommittedOn added in v1.0.2

func (o *WorkflowMetadataGitInfo) GetCommittedOn() string

GetCommittedOn returns the CommittedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowMetadataGitInfo) GetCommittedOnOk added in v1.0.2

func (o *WorkflowMetadataGitInfo) GetCommittedOnOk() (*string, bool)

GetCommittedOnOk returns a tuple with the CommittedOn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowMetadataGitInfo) GetFileName added in v1.0.5

func (o *WorkflowMetadataGitInfo) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowMetadataGitInfo) GetFileNameOk added in v1.0.5

func (o *WorkflowMetadataGitInfo) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowMetadataGitInfo) GetTargetId

func (o *WorkflowMetadataGitInfo) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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) HasCommitedOn added in v1.0.5

func (o *WorkflowMetadataGitInfo) HasCommitedOn() bool

HasCommitedOn returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasCommittedBy added in v1.0.2

func (o *WorkflowMetadataGitInfo) HasCommittedBy() bool

HasCommittedBy returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasCommittedOn added in v1.0.2

func (o *WorkflowMetadataGitInfo) HasCommittedOn() bool

HasCommittedOn returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasFileName added in v1.0.5

func (o *WorkflowMetadataGitInfo) HasFileName() bool

HasFileName 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) SetCommitHash

func (o *WorkflowMetadataGitInfo) SetCommitHash(v string)

SetCommitHash gets a reference to the given NullableString and assigns it to the CommitHash field.

func (*WorkflowMetadataGitInfo) SetCommitHashNil added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetCommitHashNil()

SetCommitHashNil sets the value for CommitHash to be an explicit nil

func (*WorkflowMetadataGitInfo) SetCommitMessage

func (o *WorkflowMetadataGitInfo) SetCommitMessage(v string)

SetCommitMessage gets a reference to the given NullableString and assigns it to the CommitMessage field.

func (*WorkflowMetadataGitInfo) SetCommitMessageNil added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetCommitMessageNil()

SetCommitMessageNil sets the value for CommitMessage to be an explicit nil

func (*WorkflowMetadataGitInfo) SetCommitedOn added in v1.0.5

func (o *WorkflowMetadataGitInfo) SetCommitedOn(v string)

SetCommitedOn gets a reference to the given NullableString and assigns it to the CommitedOn field.

func (*WorkflowMetadataGitInfo) SetCommitedOnNil added in v1.0.5

func (o *WorkflowMetadataGitInfo) SetCommitedOnNil()

SetCommitedOnNil sets the value for CommitedOn to be an explicit nil

func (*WorkflowMetadataGitInfo) SetCommittedBy added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetCommittedBy(v string)

SetCommittedBy gets a reference to the given NullableString and assigns it to the CommittedBy field.

func (*WorkflowMetadataGitInfo) SetCommittedByNil added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetCommittedByNil()

SetCommittedByNil sets the value for CommittedBy to be an explicit nil

func (*WorkflowMetadataGitInfo) SetCommittedOn added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetCommittedOn(v string)

SetCommittedOn gets a reference to the given NullableString and assigns it to the CommittedOn field.

func (*WorkflowMetadataGitInfo) SetCommittedOnNil added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetCommittedOnNil()

SetCommittedOnNil sets the value for CommittedOn to be an explicit nil

func (*WorkflowMetadataGitInfo) SetFileName added in v1.0.5

func (o *WorkflowMetadataGitInfo) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*WorkflowMetadataGitInfo) SetFileNameNil added in v1.0.5

func (o *WorkflowMetadataGitInfo) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*WorkflowMetadataGitInfo) SetTargetId

func (o *WorkflowMetadataGitInfo) SetTargetId(v string)

SetTargetId gets a reference to the given NullableString and assigns it to the TargetId field.

func (*WorkflowMetadataGitInfo) SetTargetIdNil added in v1.0.2

func (o *WorkflowMetadataGitInfo) SetTargetIdNil()

SetTargetIdNil sets the value for TargetId to be an explicit nil

func (*WorkflowMetadataGitInfo) UnmarshalJSON added in v1.0.5

func (o *WorkflowMetadataGitInfo) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowMetadataGitInfo) UnsetCommitHash added in v1.0.2

func (o *WorkflowMetadataGitInfo) UnsetCommitHash()

UnsetCommitHash ensures that no value is present for CommitHash, not even an explicit nil

func (*WorkflowMetadataGitInfo) UnsetCommitMessage added in v1.0.2

func (o *WorkflowMetadataGitInfo) UnsetCommitMessage()

UnsetCommitMessage ensures that no value is present for CommitMessage, not even an explicit nil

func (*WorkflowMetadataGitInfo) UnsetCommitedOn added in v1.0.5

func (o *WorkflowMetadataGitInfo) UnsetCommitedOn()

UnsetCommitedOn ensures that no value is present for CommitedOn, not even an explicit nil

func (*WorkflowMetadataGitInfo) UnsetCommittedBy added in v1.0.2

func (o *WorkflowMetadataGitInfo) UnsetCommittedBy()

UnsetCommittedBy ensures that no value is present for CommittedBy, not even an explicit nil

func (*WorkflowMetadataGitInfo) UnsetCommittedOn added in v1.0.2

func (o *WorkflowMetadataGitInfo) UnsetCommittedOn()

UnsetCommittedOn ensures that no value is present for CommittedOn, not even an explicit nil

func (*WorkflowMetadataGitInfo) UnsetFileName added in v1.0.5

func (o *WorkflowMetadataGitInfo) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*WorkflowMetadataGitInfo) UnsetTargetId added in v1.0.2

func (o *WorkflowMetadataGitInfo) UnsetTargetId()

UnsetTargetId ensures that no value is present for TargetId, not even an explicit nil

type WorkflowSchema

type WorkflowSchema struct {
	Id                   NullableString          `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]interface{} `json:"variable_schema,omitempty"`
	PropertySchema       *map[string]interface{} `json:"property_schema,omitempty"`
	OutputSchema         *map[string]interface{} `json:"output_schema,omitempty"`
	ViewConfig           *map[string]interface{} `json:"view_config,omitempty"`
	Attributes           *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            NullableString          `json:"updated_by,omitempty"`
	Owner                NullableString          `json:"owner,omitempty"`
	UniqueName           NullableString          `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*WorkflowSchema) GetAttributesOk

func (o *WorkflowSchema) GetAttributesOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetOutputSchema returns the OutputSchema field value if set, zero value otherwise.

func (*WorkflowSchema) GetOutputSchemaOk

func (o *WorkflowSchema) GetOutputSchemaOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowSchema) GetPropertySchema

func (o *WorkflowSchema) GetPropertySchema() map[string]interface{}

GetPropertySchema returns the PropertySchema field value if set, zero value otherwise.

func (*WorkflowSchema) GetPropertySchemaOk

func (o *WorkflowSchema) GetPropertySchemaOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowSchema) GetUpdatedBy

func (o *WorkflowSchema) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetVariableSchema returns the VariableSchema field value if set, zero value otherwise.

func (*WorkflowSchema) GetVariableSchemaOk

func (o *WorkflowSchema) GetVariableSchemaOk() (*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]interface{}

GetViewConfig returns the ViewConfig field value if set, zero value otherwise.

func (*WorkflowSchema) GetViewConfigOk

func (o *WorkflowSchema) GetViewConfigOk() (*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]interface{})

SetAttributes gets a reference to the given 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 NullableString and assigns it to the Id field.

func (*WorkflowSchema) SetIdNil added in v1.0.5

func (o *WorkflowSchema) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

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]interface{})

SetOutputSchema gets a reference to the given 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 NullableString and assigns it to the Owner field.

func (*WorkflowSchema) SetOwnerNil added in v1.0.5

func (o *WorkflowSchema) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

func (*WorkflowSchema) SetPropertySchema

func (o *WorkflowSchema) SetPropertySchema(v map[string]interface{})

SetPropertySchema gets a reference to the given 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 NullableString and assigns it to the UniqueName field.

func (*WorkflowSchema) SetUniqueNameNil added in v1.0.5

func (o *WorkflowSchema) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowSchema) SetUpdatedBy

func (o *WorkflowSchema) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowSchema) SetUpdatedByNil added in v1.0.5

func (o *WorkflowSchema) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

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]interface{})

SetVariableSchema gets a reference to the given 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]interface{})

SetViewConfig gets a reference to the given map[string]interface{} and assigns it to the ViewConfig field.

func (*WorkflowSchema) UnmarshalJSON added in v1.0.5

func (o *WorkflowSchema) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowSchema) UnsetId added in v1.0.5

func (o *WorkflowSchema) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*WorkflowSchema) UnsetOwner added in v1.0.5

func (o *WorkflowSchema) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowSchema) UnsetUniqueName added in v1.0.5

func (o *WorkflowSchema) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowSchema) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowSchema) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

type WorkflowSchemaAllOf

type WorkflowSchemaAllOf struct {
	Id                   NullableString          `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]interface{} `json:"variable_schema,omitempty"`
	PropertySchema       *map[string]interface{} `json:"property_schema,omitempty"`
	OutputSchema         *map[string]interface{} `json:"output_schema,omitempty"`
	ViewConfig           *map[string]interface{} `json:"view_config,omitempty"`
	Attributes           *map[string]interface{} `json:"attributes,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetAttributesOk

func (o *WorkflowSchemaAllOf) GetAttributesOk() (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetOutputSchema returns the OutputSchema field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetOutputSchemaOk

func (o *WorkflowSchemaAllOf) GetOutputSchemaOk() (*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]interface{}

GetPropertySchema returns the PropertySchema field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetPropertySchemaOk

func (o *WorkflowSchemaAllOf) GetPropertySchemaOk() (*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]interface{}

GetVariableSchema returns the VariableSchema field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetVariableSchemaOk

func (o *WorkflowSchemaAllOf) GetVariableSchemaOk() (*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]interface{}

GetViewConfig returns the ViewConfig field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetViewConfigOk

func (o *WorkflowSchemaAllOf) GetViewConfigOk() (*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]interface{})

SetAttributes gets a reference to the given 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 NullableString and assigns it to the Id field.

func (*WorkflowSchemaAllOf) SetIdNil added in v1.0.5

func (o *WorkflowSchemaAllOf) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

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]interface{})

SetOutputSchema gets a reference to the given map[string]interface{} and assigns it to the OutputSchema field.

func (*WorkflowSchemaAllOf) SetPropertySchema

func (o *WorkflowSchemaAllOf) SetPropertySchema(v map[string]interface{})

SetPropertySchema gets a reference to the given 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]interface{})

SetVariableSchema gets a reference to the given 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]interface{})

SetViewConfig gets a reference to the given map[string]interface{} and assigns it to the ViewConfig field.

func (*WorkflowSchemaAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowSchemaAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowSchemaAllOf) UnsetId added in v1.0.5

func (o *WorkflowSchemaAllOf) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type WorkflowSchemaByTypeResponse

type WorkflowSchemaByTypeResponse struct {
	ViewSchema           NullableWorkflowSchema `json:"view_schema,omitempty"`
	DataSchema           NullableWorkflowSchema `json:"data_schema,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowSchemaByTypeResponse) GetViewSchema

func (o *WorkflowSchemaByTypeResponse) GetViewSchema() WorkflowSchema

GetViewSchema returns the ViewSchema field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableWorkflowSchema and assigns it to the DataSchema field.

func (*WorkflowSchemaByTypeResponse) SetDataSchemaNil added in v1.0.5

func (o *WorkflowSchemaByTypeResponse) SetDataSchemaNil()

SetDataSchemaNil sets the value for DataSchema to be an explicit nil

func (*WorkflowSchemaByTypeResponse) SetViewSchema

func (o *WorkflowSchemaByTypeResponse) SetViewSchema(v WorkflowSchema)

SetViewSchema gets a reference to the given NullableWorkflowSchema and assigns it to the ViewSchema field.

func (*WorkflowSchemaByTypeResponse) SetViewSchemaNil added in v1.0.5

func (o *WorkflowSchemaByTypeResponse) SetViewSchemaNil()

SetViewSchemaNil sets the value for ViewSchema to be an explicit nil

func (*WorkflowSchemaByTypeResponse) UnmarshalJSON added in v1.0.5

func (o *WorkflowSchemaByTypeResponse) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowSchemaByTypeResponse) UnsetDataSchema added in v1.0.5

func (o *WorkflowSchemaByTypeResponse) UnsetDataSchema()

UnsetDataSchema ensures that no value is present for DataSchema, not even an explicit nil

func (*WorkflowSchemaByTypeResponse) UnsetViewSchema added in v1.0.5

func (o *WorkflowSchemaByTypeResponse) UnsetViewSchema()

UnsetViewSchema ensures that no value is present for ViewSchema, not even an explicit nil

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   NullableString      `json:"type_of_target_needed,omitempty"`
	TargetId             NullableString      `json:"target_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowStartConfig) GetTypeOfTargetNeeded

func (o *WorkflowStartConfig) GetTypeOfTargetNeeded() string

GetTypeOfTargetNeeded returns the TypeOfTargetNeeded field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the TargetId field.

func (*WorkflowStartConfig) SetTargetIdNil added in v1.0.5

func (o *WorkflowStartConfig) SetTargetIdNil()

SetTargetIdNil sets the value for TargetId to be an explicit nil

func (*WorkflowStartConfig) SetTypeOfTargetNeeded

func (o *WorkflowStartConfig) SetTypeOfTargetNeeded(v string)

SetTypeOfTargetNeeded gets a reference to the given NullableString and assigns it to the TypeOfTargetNeeded field.

func (*WorkflowStartConfig) SetTypeOfTargetNeededNil added in v1.0.5

func (o *WorkflowStartConfig) SetTypeOfTargetNeededNil()

SetTypeOfTargetNeededNil sets the value for TypeOfTargetNeeded to be an explicit nil

func (*WorkflowStartConfig) UnmarshalJSON added in v1.0.5

func (o *WorkflowStartConfig) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowStartConfig) UnsetTargetId added in v1.0.5

func (o *WorkflowStartConfig) UnsetTargetId()

UnsetTargetId ensures that no value is present for TargetId, not even an explicit nil

func (*WorkflowStartConfig) UnsetTypeOfTargetNeeded added in v1.0.5

func (o *WorkflowStartConfig) UnsetTypeOfTargetNeeded()

UnsetTypeOfTargetNeeded ensures that no value is present for TypeOfTargetNeeded, not even an explicit nil

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                NullableString         `json:"title,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	BaseType             *string                `json:"base_type,omitempty"`
	Properties           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            NullableString         `json:"updated_by,omitempty"`
	Owner                NullableString         `json:"owner,omitempty"`
	UniqueName           NullableString         `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowTarget) GetProperties

func (o *WorkflowTarget) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowTarget) GetPropertiesOk

func (o *WorkflowTarget) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowTarget) GetUpdatedBy

func (o *WorkflowTarget) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the Owner field.

func (*WorkflowTarget) SetOwnerNil added in v1.0.5

func (o *WorkflowTarget) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

func (*WorkflowTarget) SetProperties

func (o *WorkflowTarget) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given 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 NullableString and assigns it to the Title field.

func (*WorkflowTarget) SetTitleNil added in v1.0.5

func (o *WorkflowTarget) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

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 NullableString and assigns it to the UniqueName field.

func (*WorkflowTarget) SetUniqueNameNil added in v1.0.5

func (o *WorkflowTarget) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowTarget) SetUpdatedBy

func (o *WorkflowTarget) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowTarget) SetUpdatedByNil added in v1.0.5

func (o *WorkflowTarget) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

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.

func (*WorkflowTarget) UnmarshalJSON added in v1.0.5

func (o *WorkflowTarget) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowTarget) UnsetOwner added in v1.0.5

func (o *WorkflowTarget) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowTarget) UnsetTitle added in v1.0.5

func (o *WorkflowTarget) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*WorkflowTarget) UnsetUniqueName added in v1.0.5

func (o *WorkflowTarget) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowTarget) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowTarget) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

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                NullableString         `json:"title,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	BaseType             *string                `json:"base_type,omitempty"`
	Properties           map[string]interface{} `json:"properties,omitempty"`
	Valid                *bool                  `json:"valid,omitempty"`
	DefAccessMeta        *WorkflowDefAccessMeta `json:"def_access_meta,omitempty"`
	AdditionalProperties map[string]interface{}
}

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkflowTargetAllOf) GetPropertiesOk

func (o *WorkflowTargetAllOf) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{})

SetProperties gets a reference to the given 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 NullableString and assigns it to the Title field.

func (*WorkflowTargetAllOf) SetTitleNil added in v1.0.5

func (o *WorkflowTargetAllOf) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

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.

func (*WorkflowTargetAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowTargetAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowTargetAllOf) UnsetTitle added in v1.0.5

func (o *WorkflowTargetAllOf) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

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]interface{} `json:"properties"`
	UniqueName           *string                `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

WorkflowTargetCreate struct for WorkflowTargetCreate

func NewWorkflowTargetCreate

func NewWorkflowTargetCreate(name string, properties 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]interface{}

GetProperties returns the Properties field value

func (*WorkflowTargetCreate) GetPropertiesOk

func (o *WorkflowTargetCreate) GetPropertiesOk() (*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]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.

func (*WorkflowTargetCreate) UnmarshalJSON added in v1.0.5

func (o *WorkflowTargetCreate) UnmarshalJSON(bytes []byte) (err error)

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]interface{} `json:"properties"`
	UniqueName           *string                `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

WorkflowTargetUpdate struct for WorkflowTargetUpdate

func NewWorkflowTargetUpdate

func NewWorkflowTargetUpdate(name string, properties 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]interface{}

GetProperties returns the Properties field value

func (*WorkflowTargetUpdate) GetPropertiesOk

func (o *WorkflowTargetUpdate) GetPropertiesOk() (*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]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.

func (*WorkflowTargetUpdate) UnmarshalJSON added in v1.0.5

func (o *WorkflowTargetUpdate) UnmarshalJSON(bytes []byte) (err error)

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                 NullableString          `json:"type,omitempty"`
	BaseType             NullableString          `json:"base_type,omitempty"`
	SchemaId             *string                 `json:"schema_id,omitempty"`
	ObjectType           *string                 `json:"object_type,omitempty"`
	Properties           *map[string]interface{} `json:"properties,omitempty"`
	DataType             NullableString          `json:"data_type,omitempty"`
	Scope                NullableString          `json:"scope,omitempty"`
	CreatedOn            *string                 `json:"created_on,omitempty"`
	CreatedBy            *string                 `json:"created_by,omitempty"`
	UpdatedOn            *string                 `json:"updated_on,omitempty"`
	UpdatedBy            NullableString          `json:"updated_by,omitempty"`
	Owner                NullableString          `json:"owner,omitempty"`
	UniqueName           NullableString          `json:"unique_name,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowVariable) GetProperties

func (o *WorkflowVariable) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowVariable) GetPropertiesOk

func (o *WorkflowVariable) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowVariable) GetType

func (o *WorkflowVariable) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowVariable) GetUniqueName

func (o *WorkflowVariable) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowVariable) GetUpdatedBy

func (o *WorkflowVariable) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the BaseType field.

func (*WorkflowVariable) SetBaseTypeNil added in v1.0.5

func (o *WorkflowVariable) SetBaseTypeNil()

SetBaseTypeNil sets the value for BaseType to be an explicit nil

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 NullableString and assigns it to the DataType field.

func (*WorkflowVariable) SetDataTypeNil added in v1.0.5

func (o *WorkflowVariable) SetDataTypeNil()

SetDataTypeNil sets the value for DataType to be an explicit nil

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 NullableString and assigns it to the Owner field.

func (*WorkflowVariable) SetOwnerNil added in v1.0.5

func (o *WorkflowVariable) SetOwnerNil()

SetOwnerNil sets the value for Owner to be an explicit nil

func (*WorkflowVariable) SetProperties

func (o *WorkflowVariable) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given 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 NullableString and assigns it to the Scope field.

func (*WorkflowVariable) SetScopeNil added in v1.0.5

func (o *WorkflowVariable) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*WorkflowVariable) SetType

func (o *WorkflowVariable) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*WorkflowVariable) SetTypeNil added in v1.0.5

func (o *WorkflowVariable) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*WorkflowVariable) SetUniqueName

func (o *WorkflowVariable) SetUniqueName(v string)

SetUniqueName gets a reference to the given NullableString and assigns it to the UniqueName field.

func (*WorkflowVariable) SetUniqueNameNil added in v1.0.5

func (o *WorkflowVariable) SetUniqueNameNil()

SetUniqueNameNil sets the value for UniqueName to be an explicit nil

func (*WorkflowVariable) SetUpdatedBy

func (o *WorkflowVariable) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given NullableString and assigns it to the UpdatedBy field.

func (*WorkflowVariable) SetUpdatedByNil added in v1.0.5

func (o *WorkflowVariable) SetUpdatedByNil()

SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil

func (*WorkflowVariable) SetUpdatedOn

func (o *WorkflowVariable) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowVariable) UnmarshalJSON added in v1.0.5

func (o *WorkflowVariable) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowVariable) UnsetBaseType added in v1.0.5

func (o *WorkflowVariable) UnsetBaseType()

UnsetBaseType ensures that no value is present for BaseType, not even an explicit nil

func (*WorkflowVariable) UnsetDataType added in v1.0.5

func (o *WorkflowVariable) UnsetDataType()

UnsetDataType ensures that no value is present for DataType, not even an explicit nil

func (*WorkflowVariable) UnsetOwner added in v1.0.5

func (o *WorkflowVariable) UnsetOwner()

UnsetOwner ensures that no value is present for Owner, not even an explicit nil

func (*WorkflowVariable) UnsetScope added in v1.0.5

func (o *WorkflowVariable) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

func (*WorkflowVariable) UnsetType added in v1.0.5

func (o *WorkflowVariable) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*WorkflowVariable) UnsetUniqueName added in v1.0.5

func (o *WorkflowVariable) UnsetUniqueName()

UnsetUniqueName ensures that no value is present for UniqueName, not even an explicit nil

func (*WorkflowVariable) UnsetUpdatedBy added in v1.0.5

func (o *WorkflowVariable) UnsetUpdatedBy()

UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil

type WorkflowVariableAllOf

type WorkflowVariableAllOf struct {
	Id                   *string                 `json:"id,omitempty"`
	Type                 NullableString          `json:"type,omitempty"`
	BaseType             NullableString          `json:"base_type,omitempty"`
	SchemaId             *string                 `json:"schema_id,omitempty"`
	ObjectType           *string                 `json:"object_type,omitempty"`
	Properties           *map[string]interface{} `json:"properties,omitempty"`
	DataType             NullableString          `json:"data_type,omitempty"`
	Scope                NullableString          `json:"scope,omitempty"`
	AdditionalProperties map[string]interface{}
}

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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowVariableAllOf) GetDataType

func (o *WorkflowVariableAllOf) GetDataType() string

GetDataType returns the DataType field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetPropertiesOk

func (o *WorkflowVariableAllOf) GetPropertiesOk() (*map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkflowVariableAllOf) GetType

func (o *WorkflowVariableAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableString and assigns it to the BaseType field.

func (*WorkflowVariableAllOf) SetBaseTypeNil added in v1.0.5

func (o *WorkflowVariableAllOf) SetBaseTypeNil()

SetBaseTypeNil sets the value for BaseType to be an explicit nil

func (*WorkflowVariableAllOf) SetDataType

func (o *WorkflowVariableAllOf) SetDataType(v string)

SetDataType gets a reference to the given NullableString and assigns it to the DataType field.

func (*WorkflowVariableAllOf) SetDataTypeNil added in v1.0.5

func (o *WorkflowVariableAllOf) SetDataTypeNil()

SetDataTypeNil sets the value for DataType to be an explicit nil

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]interface{})

SetProperties gets a reference to the given 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 NullableString and assigns it to the Scope field.

func (*WorkflowVariableAllOf) SetScopeNil added in v1.0.5

func (o *WorkflowVariableAllOf) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (*WorkflowVariableAllOf) SetType

func (o *WorkflowVariableAllOf) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*WorkflowVariableAllOf) SetTypeNil added in v1.0.5

func (o *WorkflowVariableAllOf) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*WorkflowVariableAllOf) UnmarshalJSON added in v1.0.5

func (o *WorkflowVariableAllOf) UnmarshalJSON(bytes []byte) (err error)

func (*WorkflowVariableAllOf) UnsetBaseType added in v1.0.5

func (o *WorkflowVariableAllOf) UnsetBaseType()

UnsetBaseType ensures that no value is present for BaseType, not even an explicit nil

func (*WorkflowVariableAllOf) UnsetDataType added in v1.0.5

func (o *WorkflowVariableAllOf) UnsetDataType()

UnsetDataType ensures that no value is present for DataType, not even an explicit nil

func (*WorkflowVariableAllOf) UnsetScope added in v1.0.5

func (o *WorkflowVariableAllOf) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

func (*WorkflowVariableAllOf) UnsetType added in v1.0.5

func (o *WorkflowVariableAllOf) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

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) (map[string]interface{}, *_nethttp.Response, error)

* Execute executes the request * @return map[string]interface{}

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