ncentral

package module
v0.0.0-...-53e75cb Latest Latest
Warning

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

Go to latest
Published: Jul 2, 2025 License: MIT Imports: 20 Imported by: 0

README

Go API client for ncentral

API Access

In order to use the API-Service endpoints, ensure the following prerequisites are met:

  1. User is created in N-central with appropriate permissions and configuration (roles, access groups, MFA disabled, 2FA disabled).
  2. API access is set up in N-central by having a JWT (Json Web Token, referred to as \"N-central User-API Token\") generated, acting as the permanent secret solely used for fetching access and refresh tokens.

To access the API-Service endpoints, the JWT must first be exchanged with access and refresh tokens:

  • Using Swagger UI:

    1. Click on the \"Authorize\" button and enter the JWT into the value field under \"N-central User-API Token (JWT)\", then navigate to the /api/auth/authenticate endpoint, click \"Try it out\" and then \"Execute\".
      The new “Access Token” and “Refresh Token” fields will be available in the “Server Response” section below. Note that the expiry is 3600s ( 1h ). Copy the value of the access token.
    2. Click on the lock icon to the right of any endpoint (or the \"Authorize\" button at the top), enter the access token in the \"API-Access Token\" field and click \"Authorize\".
    3. To call an API-Service endpoint, navigate to it, click \"Try it out\" button and then \"Execute\". If the steps above were successful, the access token is included in requests automatically.
  • Using a different HTTP client:

    1. Call the /api/auth/authenticate endpoint. The JWT token must be specified under the Authorization header, in the form Bearer <YOUR_JWT>\".
      The access and refresh tokens are present in the response.
    2. When calling API-Service endpoints, make sure to specify the access token in the Authorization header as Bearer <ACCESS_TOKEN>.

API Pagination & Sorting

Certain API-Service query endpoints support pagination and sorting through the use of query parameters.

Pagination query parameters:

  • pageSize: number between 1 and 1000 specifying how many items to return for each page (if available). If unspecified, the default is 50.
  • pageNumber: number specifying what page of data to retrieve, starting from 1 as the first page. If unspecified, the default is 1.

A paginated response contains several related fields, such as pageSize, pageNumber, itemCount, totalItems, totalPages, _links (first, last, previous and next pages) and _warning (containing any warning messages, if present).

Sorting query parameters:

  • sortBy: the name of the field to sort the results by. If unspecified, no sorting is applied.
  • sortOrder: the case insensitive sorting direction supporting ASC/ASCENDING/NATURAL and DESC/DESCENDING/REVERSE. If unspecified, the default is ASC.

API Rate Limiting

The API-Service endpoints are rate limited to ensure the stability, availability and performance of the overall system.

Upon reaching such a rate limit, the endpoints return HTTP Status 429 - Too Many Requests.

The system will accept further requests once existing in-flight requests are completed.

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
  • Package version: 1.0.0
  • Generator version: 7.13.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import ncentral "github.com/ai-connor/ncentral"

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

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

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

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

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

URLs Configuration per Operation

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

ctx := context.WithValue(context.Background(), ncentral.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), ncentral.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
APIServiceAPI ApiExtra Get /api/server-info/extra PREVIEW: Get information about the version of different systems in N-central.
APIServiceAPI ApiExtraAuthenticated Post /api/server-info/extra/authenticated PREVIEW: Get extra information about the version of different systems in N-central using credentials.
APIServiceAPI ApiRoot Get /api List links to other endpoints.
APIServiceAPI ApiRoot1 Get /api/server-info Return version information of the running API-Service.
APIServiceAPI Health Get /api/health Return the start and current time of the server. This indicates that the server is running.
AccessGroupsAPI AccessGroupRoot Get /api/access-groups PREVIEW: List the access group related links.
AccessGroupsAPI CreateDeviceAccessGroup Post /api/org-units/{orgUnitId}/device-access-groups PREVIEW: Creates a new device type access group.
AccessGroupsAPI CreateOrgUnitAccessGroup Post /api/org-units/{orgUnitId}/access-groups PREVIEW: Creates a new organization unit type access group.
AccessGroupsAPI GetAccessGroup Get /api/access-groups/{accessGroupId} PREVIEW: Retrieve detailed information for a specific Access Group by ID.
AccessGroupsAPI ListAccessGroups Get /api/org-units/{orgUnitId}/access-groups PREVIEW: Retrieve Access Groups Information for an Org Unit by ID.
ActiveIssuesAPI ListActiveIssues Get /api/org-units/{orgUnitId}/active-issues PREVIEW: Fetch active issues
AuthenticationAPI AuthRoot Get /api/auth List the authentication-related links.
AuthenticationAPI Authenticate Post /api/auth/authenticate Obtains access and refresh tokens using an N-central User-API Token (JWT).
AuthenticationAPI Refresh Post /api/auth/refresh Obtains a new API-Access token using a valid refresh token.
AuthenticationAPI Validate Get /api/auth/validate Check the validity of the API-Access token.
CustomPropertiesAPI GetCustomProperty Get /api/org-units/{orgUnitId}/org-custom-property-defaults/{propertyId} PREVIEW: Get the organization unit custom property.
CustomPropertiesAPI GetDeviceCustomProperty Get /api/devices/{deviceId}/custom-properties/{propertyId} PREVIEW: Get the device custom property.
CustomPropertiesAPI GetDeviceDefaultCustomProperty Get /api/org-units/{orgUnitId}/custom-properties/device-custom-property-defaults/{propertyId} PREVIEW: Retrieve Device Default Custom Property information by organization unit id and property id
CustomPropertiesAPI GetOrganizationUnitProperty Get /api/org-units/{orgUnitId}/custom-properties/{propertyId} PREVIEW: Get the organization unit custom property.
CustomPropertiesAPI ListCustomerProperties Get /api/org-units/{orgUnitId}/custom-properties PREVIEW: Get the list of organization custom properties.
CustomPropertiesAPI ListDeviceCustomProperties Get /api/devices/{deviceId}/custom-properties PREVIEW: Retrieve Device Custom Properties by device id
CustomPropertiesAPI ModifyDefaultOrganizationUnitProperty Put /api/org-units/{orgUnitId}/org-custom-property-defaults PREVIEW: Update the default organization unit custom property.
CustomPropertiesAPI ModifyDeviceProperty Put /api/devices/{deviceId}/custom-properties/{propertyId} PREVIEW: Modify Device Custom Property
CustomPropertiesAPI ModifyOrganizationUnitPropertyValue Put /api/org-units/{orgUnitId}/custom-properties/{propertyId} PREVIEW: Update the organization unit custom property.
DeviceFiltersAPI ListFilters Get /api/device-filters PREVIEW: Retrieve the list of filters.
DeviceTasksAPI ListTasksForDevice Get /api/devices/{deviceId}/scheduled-tasks Retrieve tasks for a specific device.
DevicesAPI GetApplianceTaskInformationDetails Get /api/appliance-tasks/{taskId} PREVIEW : Retrieves the appliance-task information.
DevicesAPI GetAssetInfo Get /api/devices/{deviceId}/assets Retrieve Asset Information for a device by ID.
DevicesAPI GetDeviceById Get /api/devices/{deviceId} Retrieve a device by ID.
DevicesAPI GetDeviceStatus Get /api/devices/{deviceId}/service-monitor-status PREVIEW : Retrieves the status of the service monitoring tasks for a given device.
DevicesAPI GetDeviceWarrantyInfo Get /api/devices/{deviceId}/assets/lifecycle-info Retrieve a device asset lifecycle information by Device ID.
DevicesAPI ListDevices Get /api/devices Retrieve the list of devices.
DevicesAPI ListDevicesByOrgUnitId Get /api/org-units/{orgUnitId}/devices PREVIEW : Retrieve the list of devices by org unit id.
DevicesAPI PatchAssetLifecycleInfo Patch /api/devices/{deviceId}/assets/lifecycle-info Modifies the Asset Lifecycle Information by Device Id.
DevicesAPI PutAssetLifecycleInfo Put /api/devices/{deviceId}/assets/lifecycle-info Modifies the Asset Lifecycle Information by Device Id.
JobStatusesAPI ListJobStatuses Get /api/org-units/{orgUnitId}/job-statuses PREVIEW: Fetch job statuses
MaintenanceWindowsAPI AddMaintenanceWindowsByDeviceIds Post /api/devices/maintenance-windows PREVIEW : Adds set of maintenance windows for a list of given devices.
MaintenanceWindowsAPI DeleteMaintenanceWindowsByScheduleIds Delete /api/devices/maintenance-windows PREVIEW : Deletes device patch maintenance windows by given list of Schedule Ids.
MaintenanceWindowsAPI GetMaintenanceWindowsByDeviceId Get /api/devices/{deviceId}/maintenance-windows PREVIEW : Retrieves all maintenance windows for a device.
OrganizationUnitsAPI CreateCustomer Post /api/service-orgs/{soId}/customers PREVIEW: Creates a customer.
OrganizationUnitsAPI CreateServiceOrganization Post /api/service-orgs PREVIEW: Creates a new service organization (SO).
OrganizationUnitsAPI CreateSite Post /api/customers/{customerId}/sites PREVIEW: Creates a site.
OrganizationUnitsAPI GetCustomer Get /api/customers/{customerId} PREVIEW: Retrieve a customer.
OrganizationUnitsAPI GetOrganizationUnit Get /api/org-units/{orgUnitId} PREVIEW: Retrieve an organization unit.
OrganizationUnitsAPI GetServiceOrganization Get /api/service-orgs/{soId} PREVIEW: Retrieve a service organization.
OrganizationUnitsAPI GetSite Get /api/sites/{siteId} PREVIEW: Retrieve a site.
OrganizationUnitsAPI ListCustomers Get /api/service-orgs/{soId}/customers PREVIEW: Retrieve a list of all customers under a service organization.
OrganizationUnitsAPI ListCustomers1 Get /api/customers Retrieve a list of all customers.
OrganizationUnitsAPI ListOrganizationUnitChildren Get /api/org-units/{orgUnitId}/children PREVIEW: Retrieve a list of all organization units children.
OrganizationUnitsAPI ListOrganizationUnits Get /api/org-units Retrieve a list of all organization units.
OrganizationUnitsAPI ListServiceOrganizations Get /api/service-orgs Retrieve a list of all service organizations.
OrganizationUnitsAPI ListSites Get /api/sites Retrieve a list of all sites.
OrganizationUnitsAPI ListSites1 Get /api/customers/{customerId}/sites PREVIEW: Retrieve a list of sites under a customer.
PSAAPI CustomPsaRoot Get /api/custom-psa PREVIEW: List the custom psa related links.
PSAAPI CustomPsaTicketsRoot Get /api/custom-psa/tickets PREVIEW: List the custom psa tickets related links.
PSAAPI GetCustomTicketInfo Post /api/custom-psa/tickets/{customPsaTicketId} PREVIEW: Retrieve detailed information for a specific Custom PSA Ticket by ID.
PSAAPI StandardPsaRoot Get /api/standard-psa PREVIEW: List the standard psa related links.
PSAAPI ValidatePsaCredentials Post /api/standard-psa/{psaType}/credential PREVIEW: Validate Standard PSA Credentials.
RegistrationTokensAPI GetCustomerRegistrationToken Get /api/customers/{customerId}/registration-token PREVIEW: Retrieve a customer registration token.
RegistrationTokensAPI GetOrganizationUnitRegistrationToken Get /api/org-units/{orgUnitId}/registration-token PREVIEW: Retrieve a organization unit registration token.
RegistrationTokensAPI GetSiteRegistrationToken Get /api/sites/{siteId}/registration-token PREVIEW: Retrieve a site registration token.
ScheduledTasksAPI CreateRemoteExecutionTaskDirect Post /api/scheduled-tasks/direct Create a direct-support schedule task.
ScheduledTasksAPI GetTask Get /api/scheduled-tasks/{taskId} Retrieves general information for a given task.
ScheduledTasksAPI GetTaskStatus Get /api/scheduled-tasks/{taskId}/status Retrieves aggregated status for a given task.
ScheduledTasksAPI ListTaskStatusDetails Get /api/scheduled-tasks/{taskId}/status/details Retrieves detailed status per device for a given task.
ScheduledTasksAPI TaskRoot Get /api/scheduled-tasks List the task-related links.
UserRolesAPI AddUserRole Post /api/org-units/{orgUnitId}/user-roles PREVIEW: Add a new user role for a given organization unit.
UserRolesAPI GetUserRole Get /api/org-units/{orgUnitId}/user-roles/{userRoleId} PREVIEW: Retrieve a user role for a given organization unit and user role id.
UserRolesAPI ListUserRoles Get /api/org-units/{orgUnitId}/user-roles PREVIEW: Retrieve a list of user roles for a given organization unit.
UsersAPI ListUsers Get /api/org-units/{orgUnitId}/users PREVIEW: Retrieve the list of users.
UsersAPI UserRoot Get /api/users PREVIEW: List the user related links.

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

API-Access Token
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), ncentral.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)
N-central User-API Token (JWT)
  • Type: HTTP Bearer token authentication

Example

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	APIServiceAPI *APIServiceAPIService

	AccessGroupsAPI *AccessGroupsAPIService

	ActiveIssuesAPI *ActiveIssuesAPIService

	AuthenticationAPI *AuthenticationAPIService

	CustomPropertiesAPI *CustomPropertiesAPIService

	DeviceFiltersAPI *DeviceFiltersAPIService

	DeviceTasksAPI *DeviceTasksAPIService

	DevicesAPI *DevicesAPIService

	JobStatusesAPI *JobStatusesAPIService

	MaintenanceWindowsAPI *MaintenanceWindowsAPIService

	OrganizationUnitsAPI *OrganizationUnitsAPIService

	PSAAPI *PSAAPIService

	RegistrationTokensAPI *RegistrationTokensAPIService

	ScheduledTasksAPI *ScheduledTasksAPIService

	UserRolesAPI *UserRolesAPIService

	UsersAPI *UsersAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the N-central API-Service API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type APIServiceAPIService

type APIServiceAPIService service

APIServiceAPIService APIServiceAPI service

func (*APIServiceAPIService) ApiExtra

ApiExtra PREVIEW: Get information about the version of different systems in N-central.

Get extra information about the version of different systems in N-central.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

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

func (*APIServiceAPIService) ApiExtraAuthenticated

ApiExtraAuthenticated PREVIEW: Get extra information about the version of different systems in N-central using credentials.

Get extra information about the version of different systems in N-central using credentials.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

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

func (*APIServiceAPIService) ApiExtraAuthenticatedExecute

Execute executes the request

@return VersionInfoResponse

func (*APIServiceAPIService) ApiExtraExecute

Execute executes the request

@return VersionInfoResponse

func (*APIServiceAPIService) ApiRoot

ApiRoot List links to other endpoints.

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

func (*APIServiceAPIService) ApiRoot1

ApiRoot1 Return version information of the running API-Service.

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

func (*APIServiceAPIService) ApiRoot1Execute

Execute executes the request

@return AuthValidateResponse

func (*APIServiceAPIService) ApiRootExecute

Execute executes the request

@return LinksResponse

func (*APIServiceAPIService) Health

Health Return the start and current time of the server. This indicates that the server is running.

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

func (*APIServiceAPIService) HealthExecute

func (a *APIServiceAPIService) HealthExecute(r ApiHealthRequest) (*Health, *http.Response, error)

Execute executes the request

@return Health

type AccessGroupDetails

type AccessGroupDetails struct {
	// The id of the access group.
	GroupId *int32 `json:"groupId,omitempty"`
	// The id of the organizational unit where the access group is created.
	OrgUnitId *int32 `json:"orgUnitId,omitempty"`
	// The name of the access group.
	GroupName *string `json:"groupName,omitempty"`
	// The description of the access group.
	GroupDescription *string `json:"groupDescription,omitempty"`
	// List of organizational unit ids where this access group is applied. It is populated when the group type is by organization unit.
	OrgUnitIds []int32 `json:"orgUnitIds,omitempty"`
	// List of device ids associated with the access group. It is populated when the group type is by device.
	DeviceIds []int32 `json:"deviceIds,omitempty"`
	// List of user ids associated with the access group.
	UserIds []int32 `json:"userIds,omitempty"`
	// Indicates whether new organization units will be automatically associated to the access group.
	AutoIncludeNewOrgUnits *bool `json:"autoIncludeNewOrgUnits,omitempty"`
	// Contains all the details about the access group under the '_extra' field.
	Extra map[string]map[string]interface{} `json:"_extra,omitempty"`
}

AccessGroupDetails Represents the response for fetching details of a specific access group. Contains information about the access group, including its name, type, associated devices and users, description. Properties such as whether it's read-only or cloneable, are encapsulated under the \"_extra\" field.

func NewAccessGroupDetails

func NewAccessGroupDetails() *AccessGroupDetails

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

func NewAccessGroupDetailsWithDefaults

func NewAccessGroupDetailsWithDefaults() *AccessGroupDetails

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

func (*AccessGroupDetails) GetAutoIncludeNewOrgUnits

func (o *AccessGroupDetails) GetAutoIncludeNewOrgUnits() bool

GetAutoIncludeNewOrgUnits returns the AutoIncludeNewOrgUnits field value if set, zero value otherwise.

func (*AccessGroupDetails) GetAutoIncludeNewOrgUnitsOk

func (o *AccessGroupDetails) GetAutoIncludeNewOrgUnitsOk() (*bool, bool)

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

func (*AccessGroupDetails) GetDeviceIds

func (o *AccessGroupDetails) GetDeviceIds() []int32

GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.

func (*AccessGroupDetails) GetDeviceIdsOk

func (o *AccessGroupDetails) GetDeviceIdsOk() ([]int32, 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 (*AccessGroupDetails) GetExtra

func (o *AccessGroupDetails) GetExtra() map[string]map[string]interface{}

GetExtra returns the Extra field value if set, zero value otherwise.

func (*AccessGroupDetails) GetExtraOk

func (o *AccessGroupDetails) GetExtraOk() (map[string]map[string]interface{}, bool)

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

func (*AccessGroupDetails) GetGroupDescription

func (o *AccessGroupDetails) GetGroupDescription() string

GetGroupDescription returns the GroupDescription field value if set, zero value otherwise.

func (*AccessGroupDetails) GetGroupDescriptionOk

func (o *AccessGroupDetails) GetGroupDescriptionOk() (*string, bool)

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

func (*AccessGroupDetails) GetGroupId

func (o *AccessGroupDetails) GetGroupId() int32

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*AccessGroupDetails) GetGroupIdOk

func (o *AccessGroupDetails) GetGroupIdOk() (*int32, bool)

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

func (*AccessGroupDetails) GetGroupName

func (o *AccessGroupDetails) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise.

func (*AccessGroupDetails) GetGroupNameOk

func (o *AccessGroupDetails) GetGroupNameOk() (*string, bool)

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

func (*AccessGroupDetails) GetOrgUnitId

func (o *AccessGroupDetails) GetOrgUnitId() int32

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*AccessGroupDetails) GetOrgUnitIdOk

func (o *AccessGroupDetails) GetOrgUnitIdOk() (*int32, bool)

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

func (*AccessGroupDetails) GetOrgUnitIds

func (o *AccessGroupDetails) GetOrgUnitIds() []int32

GetOrgUnitIds returns the OrgUnitIds field value if set, zero value otherwise.

func (*AccessGroupDetails) GetOrgUnitIdsOk

func (o *AccessGroupDetails) GetOrgUnitIdsOk() ([]int32, bool)

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

func (*AccessGroupDetails) GetUserIds

func (o *AccessGroupDetails) GetUserIds() []int32

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*AccessGroupDetails) GetUserIdsOk

func (o *AccessGroupDetails) GetUserIdsOk() ([]int32, bool)

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

func (*AccessGroupDetails) HasAutoIncludeNewOrgUnits

func (o *AccessGroupDetails) HasAutoIncludeNewOrgUnits() bool

HasAutoIncludeNewOrgUnits returns a boolean if a field has been set.

func (*AccessGroupDetails) HasDeviceIds

func (o *AccessGroupDetails) HasDeviceIds() bool

HasDeviceIds returns a boolean if a field has been set.

func (*AccessGroupDetails) HasExtra

func (o *AccessGroupDetails) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*AccessGroupDetails) HasGroupDescription

func (o *AccessGroupDetails) HasGroupDescription() bool

HasGroupDescription returns a boolean if a field has been set.

func (*AccessGroupDetails) HasGroupId

func (o *AccessGroupDetails) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*AccessGroupDetails) HasGroupName

func (o *AccessGroupDetails) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*AccessGroupDetails) HasOrgUnitId

func (o *AccessGroupDetails) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*AccessGroupDetails) HasOrgUnitIds

func (o *AccessGroupDetails) HasOrgUnitIds() bool

HasOrgUnitIds returns a boolean if a field has been set.

func (*AccessGroupDetails) HasUserIds

func (o *AccessGroupDetails) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (AccessGroupDetails) MarshalJSON

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

func (*AccessGroupDetails) SetAutoIncludeNewOrgUnits

func (o *AccessGroupDetails) SetAutoIncludeNewOrgUnits(v bool)

SetAutoIncludeNewOrgUnits gets a reference to the given bool and assigns it to the AutoIncludeNewOrgUnits field.

func (*AccessGroupDetails) SetDeviceIds

func (o *AccessGroupDetails) SetDeviceIds(v []int32)

SetDeviceIds gets a reference to the given []int32 and assigns it to the DeviceIds field.

func (*AccessGroupDetails) SetExtra

func (o *AccessGroupDetails) SetExtra(v map[string]map[string]interface{})

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

func (*AccessGroupDetails) SetGroupDescription

func (o *AccessGroupDetails) SetGroupDescription(v string)

SetGroupDescription gets a reference to the given string and assigns it to the GroupDescription field.

func (*AccessGroupDetails) SetGroupId

func (o *AccessGroupDetails) SetGroupId(v int32)

SetGroupId gets a reference to the given int32 and assigns it to the GroupId field.

func (*AccessGroupDetails) SetGroupName

func (o *AccessGroupDetails) SetGroupName(v string)

SetGroupName gets a reference to the given string and assigns it to the GroupName field.

func (*AccessGroupDetails) SetOrgUnitId

func (o *AccessGroupDetails) SetOrgUnitId(v int32)

SetOrgUnitId gets a reference to the given int32 and assigns it to the OrgUnitId field.

func (*AccessGroupDetails) SetOrgUnitIds

func (o *AccessGroupDetails) SetOrgUnitIds(v []int32)

SetOrgUnitIds gets a reference to the given []int32 and assigns it to the OrgUnitIds field.

func (*AccessGroupDetails) SetUserIds

func (o *AccessGroupDetails) SetUserIds(v []int32)

SetUserIds gets a reference to the given []int32 and assigns it to the UserIds field.

func (AccessGroupDetails) ToMap

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

type AccessGroupGetResponse

type AccessGroupGetResponse struct {
	Data *AccessGroupDetails `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

AccessGroupGetResponse struct for AccessGroupGetResponse

func NewAccessGroupGetResponse

func NewAccessGroupGetResponse() *AccessGroupGetResponse

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

func NewAccessGroupGetResponseWithDefaults

func NewAccessGroupGetResponseWithDefaults() *AccessGroupGetResponse

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

func (*AccessGroupGetResponse) GetData

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

func (*AccessGroupGetResponse) GetDataOk

func (o *AccessGroupGetResponse) GetDataOk() (*AccessGroupDetails, bool)

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

func (o *AccessGroupGetResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*AccessGroupGetResponse) GetLinksOk

func (o *AccessGroupGetResponse) GetLinksOk() (*map[string]string, 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 (*AccessGroupGetResponse) HasData

func (o *AccessGroupGetResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *AccessGroupGetResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (AccessGroupGetResponse) MarshalJSON

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

func (*AccessGroupGetResponse) SetData

SetData gets a reference to the given AccessGroupDetails and assigns it to the Data field.

func (o *AccessGroupGetResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (AccessGroupGetResponse) ToMap

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

type AccessGroupsAPIService

type AccessGroupsAPIService service

AccessGroupsAPIService AccessGroupsAPI service

func (*AccessGroupsAPIService) AccessGroupRoot

AccessGroupRoot PREVIEW: List the access group related links.

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

func (*AccessGroupsAPIService) AccessGroupRootExecute

Execute executes the request

@return LinksResponse

func (*AccessGroupsAPIService) CreateDeviceAccessGroup

func (a *AccessGroupsAPIService) CreateDeviceAccessGroup(ctx context.Context, orgUnitId string) ApiCreateDeviceAccessGroupRequest

CreateDeviceAccessGroup PREVIEW: Creates a new device type access group.

Creates a new device type access group with the specified details.<br/><b>NOTE: </b>This endpoint is currently in a preview stage.

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

func (*AccessGroupsAPIService) CreateDeviceAccessGroupExecute

func (a *AccessGroupsAPIService) CreateDeviceAccessGroupExecute(r ApiCreateDeviceAccessGroupRequest) (*http.Response, error)

Execute executes the request

func (*AccessGroupsAPIService) CreateOrgUnitAccessGroup

func (a *AccessGroupsAPIService) CreateOrgUnitAccessGroup(ctx context.Context, orgUnitId string) ApiCreateOrgUnitAccessGroupRequest

CreateOrgUnitAccessGroup PREVIEW: Creates a new organization unit type access group.

Creates a new organization unit type access group with the specified details.<br/><b>NOTE: </b>This endpoint is currently in a preview stage.

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

func (*AccessGroupsAPIService) CreateOrgUnitAccessGroupExecute

func (a *AccessGroupsAPIService) CreateOrgUnitAccessGroupExecute(r ApiCreateOrgUnitAccessGroupRequest) (*http.Response, error)

Execute executes the request

func (*AccessGroupsAPIService) GetAccessGroup

func (a *AccessGroupsAPIService) GetAccessGroup(ctx context.Context, accessGroupId string) ApiGetAccessGroupRequest

GetAccessGroup PREVIEW: Retrieve detailed information for a specific Access Group by ID.

Retrieves detailed information for a specific Access Group, including its name, type, and associated devices or users.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accessGroupId The unique identifier of the access group for which information is being requested.
@return ApiGetAccessGroupRequest

func (*AccessGroupsAPIService) GetAccessGroupExecute

Execute executes the request

@return AccessGroupGetResponse

func (*AccessGroupsAPIService) ListAccessGroups

func (a *AccessGroupsAPIService) ListAccessGroups(ctx context.Context, orgUnitId string) ApiListAccessGroupsRequest

ListAccessGroups PREVIEW: Retrieve Access Groups Information for an Org Unit by ID.

Retrieves access group information for an organization unit with a specific id.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which access groups information needs to be fetched.
@return ApiListAccessGroupsRequest

func (*AccessGroupsAPIService) ListAccessGroupsExecute

Execute executes the request

@return QueryResponse

type Action

type Action struct {
	Key   *string `json:"Key,omitempty"`
	Value *string `json:"Value,omitempty"`
}

Action Response for Maintenance Window Action.

func NewAction

func NewAction() *Action

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

func NewActionWithDefaults

func NewActionWithDefaults() *Action

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

func (*Action) GetKey

func (o *Action) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Action) GetKeyOk

func (o *Action) GetKeyOk() (*string, bool)

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

func (*Action) GetValue

func (o *Action) GetValue() string

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

func (*Action) GetValueOk

func (o *Action) 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 (*Action) HasKey

func (o *Action) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Action) HasValue

func (o *Action) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Action) MarshalJSON

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

func (*Action) SetKey

func (o *Action) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*Action) SetValue

func (o *Action) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (Action) ToMap

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

type ActiveIssue

type ActiveIssue struct {
	// The organization unit id.
	OrgUnitId *int32 `json:"orgUnitId,omitempty"`
	// The device id.
	DeviceId *int32 `json:"deviceId,omitempty"`
	// The notification state.
	NotificationState *int32 `json:"notificationState,omitempty"`
	// The service id.
	ServiceId *int32 `json:"serviceId,omitempty"`
	// The service name.
	ServiceName *string `json:"serviceName,omitempty"`
	// The service type.
	ServiceType *string `json:"serviceType,omitempty"`
	// The task id.
	TaskId *int32 `json:"taskId,omitempty"`
	// The service item id.
	ServiceItemId *int32 `json:"serviceItemId,omitempty"`
	// The _extra information.
	Extra map[string]map[string]interface{} `json:"_extra,omitempty"`
}

ActiveIssue Represents a response containing an active issue.

func NewActiveIssue

func NewActiveIssue() *ActiveIssue

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

func NewActiveIssueWithDefaults

func NewActiveIssueWithDefaults() *ActiveIssue

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

func (*ActiveIssue) GetDeviceId

func (o *ActiveIssue) GetDeviceId() int32

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

func (*ActiveIssue) GetDeviceIdOk

func (o *ActiveIssue) GetDeviceIdOk() (*int32, 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 (*ActiveIssue) GetExtra

func (o *ActiveIssue) GetExtra() map[string]map[string]interface{}

GetExtra returns the Extra field value if set, zero value otherwise.

func (*ActiveIssue) GetExtraOk

func (o *ActiveIssue) GetExtraOk() (map[string]map[string]interface{}, bool)

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

func (*ActiveIssue) GetNotificationState

func (o *ActiveIssue) GetNotificationState() int32

GetNotificationState returns the NotificationState field value if set, zero value otherwise.

func (*ActiveIssue) GetNotificationStateOk

func (o *ActiveIssue) GetNotificationStateOk() (*int32, bool)

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

func (*ActiveIssue) GetOrgUnitId

func (o *ActiveIssue) GetOrgUnitId() int32

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*ActiveIssue) GetOrgUnitIdOk

func (o *ActiveIssue) GetOrgUnitIdOk() (*int32, bool)

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

func (*ActiveIssue) GetServiceId

func (o *ActiveIssue) GetServiceId() int32

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

func (*ActiveIssue) GetServiceIdOk

func (o *ActiveIssue) GetServiceIdOk() (*int32, 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 (*ActiveIssue) GetServiceItemId

func (o *ActiveIssue) GetServiceItemId() int32

GetServiceItemId returns the ServiceItemId field value if set, zero value otherwise.

func (*ActiveIssue) GetServiceItemIdOk

func (o *ActiveIssue) GetServiceItemIdOk() (*int32, bool)

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

func (*ActiveIssue) GetServiceName

func (o *ActiveIssue) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*ActiveIssue) GetServiceNameOk

func (o *ActiveIssue) GetServiceNameOk() (*string, bool)

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

func (*ActiveIssue) GetServiceType

func (o *ActiveIssue) GetServiceType() string

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

func (*ActiveIssue) GetServiceTypeOk

func (o *ActiveIssue) 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 (*ActiveIssue) GetTaskId

func (o *ActiveIssue) GetTaskId() int32

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*ActiveIssue) GetTaskIdOk

func (o *ActiveIssue) GetTaskIdOk() (*int32, bool)

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

func (*ActiveIssue) HasDeviceId

func (o *ActiveIssue) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*ActiveIssue) HasExtra

func (o *ActiveIssue) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*ActiveIssue) HasNotificationState

func (o *ActiveIssue) HasNotificationState() bool

HasNotificationState returns a boolean if a field has been set.

func (*ActiveIssue) HasOrgUnitId

func (o *ActiveIssue) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*ActiveIssue) HasServiceId

func (o *ActiveIssue) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ActiveIssue) HasServiceItemId

func (o *ActiveIssue) HasServiceItemId() bool

HasServiceItemId returns a boolean if a field has been set.

func (*ActiveIssue) HasServiceName

func (o *ActiveIssue) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (*ActiveIssue) HasServiceType

func (o *ActiveIssue) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*ActiveIssue) HasTaskId

func (o *ActiveIssue) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (ActiveIssue) MarshalJSON

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

func (*ActiveIssue) SetDeviceId

func (o *ActiveIssue) SetDeviceId(v int32)

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

func (*ActiveIssue) SetExtra

func (o *ActiveIssue) SetExtra(v map[string]map[string]interface{})

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

func (*ActiveIssue) SetNotificationState

func (o *ActiveIssue) SetNotificationState(v int32)

SetNotificationState gets a reference to the given int32 and assigns it to the NotificationState field.

func (*ActiveIssue) SetOrgUnitId

func (o *ActiveIssue) SetOrgUnitId(v int32)

SetOrgUnitId gets a reference to the given int32 and assigns it to the OrgUnitId field.

func (*ActiveIssue) SetServiceId

func (o *ActiveIssue) SetServiceId(v int32)

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

func (*ActiveIssue) SetServiceItemId

func (o *ActiveIssue) SetServiceItemId(v int32)

SetServiceItemId gets a reference to the given int32 and assigns it to the ServiceItemId field.

func (*ActiveIssue) SetServiceName

func (o *ActiveIssue) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

func (*ActiveIssue) SetServiceType

func (o *ActiveIssue) SetServiceType(v string)

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

func (*ActiveIssue) SetTaskId

func (o *ActiveIssue) SetTaskId(v int32)

SetTaskId gets a reference to the given int32 and assigns it to the TaskId field.

func (ActiveIssue) ToMap

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

type ActiveIssuesAPIService

type ActiveIssuesAPIService service

ActiveIssuesAPIService ActiveIssuesAPI service

func (*ActiveIssuesAPIService) ListActiveIssues

func (a *ActiveIssuesAPIService) ListActiveIssues(ctx context.Context, orgUnitId string) ApiListActiveIssuesRequest

ListActiveIssues PREVIEW: Fetch active issues

Fetch a list of active issues for the given organization unit.<br/><b>NOTE:</b>Only organization units that are customers or sites are currently supported.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which active issues needs to be fetched.
@return ApiListActiveIssuesRequest

func (*ActiveIssuesAPIService) ListActiveIssuesExecute

Execute executes the request

@return QueryResponseActiveIssue

type ApiAccessGroupRootRequest

type ApiAccessGroupRootRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiAccessGroupRootRequest) Execute

type ApiAddMaintenanceWindowsByDeviceIdsRequest

type ApiAddMaintenanceWindowsByDeviceIdsRequest struct {
	ApiService *MaintenanceWindowsAPIService
	// contains filtered or unexported fields
}

func (ApiAddMaintenanceWindowsByDeviceIdsRequest) Execute

func (ApiAddMaintenanceWindowsByDeviceIdsRequest) MaintenanceWindowsRequest

type ApiAddUserRoleRequest

type ApiAddUserRoleRequest struct {
	ApiService *UserRolesAPIService
	// contains filtered or unexported fields
}

func (ApiAddUserRoleRequest) CreateUserRoleRequest

func (r ApiAddUserRoleRequest) CreateUserRoleRequest(createUserRoleRequest CreateUserRoleRequest) ApiAddUserRoleRequest

func (ApiAddUserRoleRequest) Execute

type ApiApiExtraAuthenticatedRequest

type ApiApiExtraAuthenticatedRequest struct {
	ApiService *APIServiceAPIService
	// contains filtered or unexported fields
}

func (ApiApiExtraAuthenticatedRequest) Execute

func (ApiApiExtraAuthenticatedRequest) VersionInfoAuthenticatedRequest

func (r ApiApiExtraAuthenticatedRequest) VersionInfoAuthenticatedRequest(versionInfoAuthenticatedRequest VersionInfoAuthenticatedRequest) ApiApiExtraAuthenticatedRequest

type ApiApiExtraRequest

type ApiApiExtraRequest struct {
	ApiService *APIServiceAPIService
	// contains filtered or unexported fields
}

func (ApiApiExtraRequest) Execute

type ApiApiRoot1Request

type ApiApiRoot1Request struct {
	ApiService *APIServiceAPIService
	// contains filtered or unexported fields
}

func (ApiApiRoot1Request) Execute

type ApiApiRootRequest

type ApiApiRootRequest struct {
	ApiService *APIServiceAPIService
	// contains filtered or unexported fields
}

func (ApiApiRootRequest) Execute

type ApiAuthRootRequest

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

func (ApiAuthRootRequest) Execute

type ApiAuthenticateRequest

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

func (ApiAuthenticateRequest) Execute

func (ApiAuthenticateRequest) XACCESSEXPIRYOVERRIDE

func (r ApiAuthenticateRequest) XACCESSEXPIRYOVERRIDE(xACCESSEXPIRYOVERRIDE string) ApiAuthenticateRequest

Override the access-expiry. Format: (time)(unit). For example: 120s for 120 seconds. The unit can be &#39;s&#39; for second, &#39;m&#39; for minute and &#39;h&#39; for hour. NOTE: The specifed time cannot be longer than the system-wide setting (default to 1h).

func (ApiAuthenticateRequest) XREFRESHEXPIRYOVERRIDE

func (r ApiAuthenticateRequest) XREFRESHEXPIRYOVERRIDE(xREFRESHEXPIRYOVERRIDE string) ApiAuthenticateRequest

Override the refresh-expiry. Format: (time)(unit). For example: 120s for 120 seconds. The unit can be &#39;s&#39; for second, &#39;m&#39; for minute and &#39;h&#39; for hour. NOTE: The specifed time cannot be longer than the system-wide setting (default to 25h).

type ApiCreateCustomerRequest

type ApiCreateCustomerRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCustomerRequest) CustomerCreation

func (r ApiCreateCustomerRequest) CustomerCreation(customerCreation CustomerCreation) ApiCreateCustomerRequest

The information for the customer to be created.

func (ApiCreateCustomerRequest) Execute

type ApiCreateDeviceAccessGroupRequest

type ApiCreateDeviceAccessGroupRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDeviceAccessGroupRequest) DeviceAccessGroupCreateRequest

func (r ApiCreateDeviceAccessGroupRequest) DeviceAccessGroupCreateRequest(deviceAccessGroupCreateRequest DeviceAccessGroupCreateRequest) ApiCreateDeviceAccessGroupRequest

func (ApiCreateDeviceAccessGroupRequest) Execute

type ApiCreateOrgUnitAccessGroupRequest

type ApiCreateOrgUnitAccessGroupRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateOrgUnitAccessGroupRequest) Execute

func (ApiCreateOrgUnitAccessGroupRequest) OrgUnitTypeAccessGroupCreateRequest

func (r ApiCreateOrgUnitAccessGroupRequest) OrgUnitTypeAccessGroupCreateRequest(orgUnitTypeAccessGroupCreateRequest OrgUnitTypeAccessGroupCreateRequest) ApiCreateOrgUnitAccessGroupRequest

type ApiCreateRemoteExecutionTaskDirectRequest

type ApiCreateRemoteExecutionTaskDirectRequest struct {
	ApiService *ScheduledTasksAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRemoteExecutionTaskDirectRequest) DirectSupportTask

The task to be created.

func (ApiCreateRemoteExecutionTaskDirectRequest) Execute

type ApiCreateServiceOrganizationRequest

type ApiCreateServiceOrganizationRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateServiceOrganizationRequest) Execute

func (ApiCreateServiceOrganizationRequest) ServiceOrganizationCreation

func (r ApiCreateServiceOrganizationRequest) ServiceOrganizationCreation(serviceOrganizationCreation ServiceOrganizationCreation) ApiCreateServiceOrganizationRequest

The information for the service organization (SO) to be created.

type ApiCreateSiteRequest

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

func (ApiCreateSiteRequest) Execute

func (ApiCreateSiteRequest) SiteCreation

func (r ApiCreateSiteRequest) SiteCreation(siteCreation SiteCreation) ApiCreateSiteRequest

The information for the customer to be created.

type ApiCustomPsaRootRequest

type ApiCustomPsaRootRequest struct {
	ApiService *PSAAPIService
	// contains filtered or unexported fields
}

func (ApiCustomPsaRootRequest) Execute

type ApiCustomPsaTicketsRootRequest

type ApiCustomPsaTicketsRootRequest struct {
	ApiService *PSAAPIService
	// contains filtered or unexported fields
}

func (ApiCustomPsaTicketsRootRequest) Execute

type ApiDeleteMaintenanceWindowsByScheduleIdsRequest

type ApiDeleteMaintenanceWindowsByScheduleIdsRequest struct {
	ApiService *MaintenanceWindowsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMaintenanceWindowsByScheduleIdsRequest) Execute

func (ApiDeleteMaintenanceWindowsByScheduleIdsRequest) MaintenanceWindowsDeleteRequest

type ApiGetAccessGroupRequest

type ApiGetAccessGroupRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessGroupRequest) Execute

type ApiGetApplianceTaskInformationDetailsRequest

type ApiGetApplianceTaskInformationDetailsRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiGetApplianceTaskInformationDetailsRequest) Execute

type ApiGetAssetInfoRequest

type ApiGetAssetInfoRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiGetAssetInfoRequest) Execute

type ApiGetCustomPropertyRequest

type ApiGetCustomPropertyRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiGetCustomPropertyRequest) Execute

type ApiGetCustomTicketInfoRequest

type ApiGetCustomTicketInfoRequest struct {
	ApiService *PSAAPIService
	// contains filtered or unexported fields
}

func (ApiGetCustomTicketInfoRequest) Execute

func (ApiGetCustomTicketInfoRequest) PsaCredentialRequest

func (r ApiGetCustomTicketInfoRequest) PsaCredentialRequest(psaCredentialRequest PsaCredentialRequest) ApiGetCustomTicketInfoRequest

type ApiGetCustomerRegistrationTokenRequest

type ApiGetCustomerRegistrationTokenRequest struct {
	ApiService *RegistrationTokensAPIService
	// contains filtered or unexported fields
}

func (ApiGetCustomerRegistrationTokenRequest) Execute

type ApiGetCustomerRequest

type ApiGetCustomerRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiGetCustomerRequest) Execute

func (r ApiGetCustomerRequest) Execute() (*Customer, *http.Response, error)

type ApiGetDeviceByIdRequest

type ApiGetDeviceByIdRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceByIdRequest) Execute

type ApiGetDeviceCustomPropertyRequest

type ApiGetDeviceCustomPropertyRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceCustomPropertyRequest) Execute

type ApiGetDeviceDefaultCustomPropertyRequest

type ApiGetDeviceDefaultCustomPropertyRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceDefaultCustomPropertyRequest) Execute

type ApiGetDeviceStatusRequest

type ApiGetDeviceStatusRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceStatusRequest) Execute

type ApiGetDeviceWarrantyInfoRequest

type ApiGetDeviceWarrantyInfoRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiGetDeviceWarrantyInfoRequest) Execute

type ApiGetMaintenanceWindowsByDeviceIdRequest

type ApiGetMaintenanceWindowsByDeviceIdRequest struct {
	ApiService *MaintenanceWindowsAPIService
	// contains filtered or unexported fields
}

func (ApiGetMaintenanceWindowsByDeviceIdRequest) Execute

type ApiGetOrganizationUnitPropertyRequest

type ApiGetOrganizationUnitPropertyRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiGetOrganizationUnitPropertyRequest) Execute

type ApiGetOrganizationUnitRegistrationTokenRequest

type ApiGetOrganizationUnitRegistrationTokenRequest struct {
	ApiService *RegistrationTokensAPIService
	// contains filtered or unexported fields
}

func (ApiGetOrganizationUnitRegistrationTokenRequest) Execute

type ApiGetOrganizationUnitRequest

type ApiGetOrganizationUnitRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiGetOrganizationUnitRequest) Execute

type ApiGetServiceOrganizationRequest

type ApiGetServiceOrganizationRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiGetServiceOrganizationRequest) Execute

type ApiGetSiteRegistrationTokenRequest

type ApiGetSiteRegistrationTokenRequest struct {
	ApiService *RegistrationTokensAPIService
	// contains filtered or unexported fields
}

func (ApiGetSiteRegistrationTokenRequest) Execute

type ApiGetSiteRequest

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

func (ApiGetSiteRequest) Execute

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

type ApiGetTaskRequest

type ApiGetTaskRequest struct {
	ApiService *ScheduledTasksAPIService
	// contains filtered or unexported fields
}

func (ApiGetTaskRequest) Execute

type ApiGetTaskStatusRequest

type ApiGetTaskStatusRequest struct {
	ApiService *ScheduledTasksAPIService
	// contains filtered or unexported fields
}

func (ApiGetTaskStatusRequest) Execute

type ApiGetUserRoleRequest

type ApiGetUserRoleRequest struct {
	ApiService *UserRolesAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserRoleRequest) Execute

type ApiHealthRequest

type ApiHealthRequest struct {
	ApiService *APIServiceAPIService
	// contains filtered or unexported fields
}

func (ApiHealthRequest) Execute

func (r ApiHealthRequest) Execute() (*Health, *http.Response, error)

type ApiListAccessGroupsRequest

type ApiListAccessGroupsRequest struct {
	ApiService *AccessGroupsAPIService
	// contains filtered or unexported fields
}

func (ApiListAccessGroupsRequest) Execute

func (ApiListAccessGroupsRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListAccessGroupsRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListAccessGroupsRequest) Select_

The select expression.

func (ApiListAccessGroupsRequest) SortBy

The name of a field to sort the result by.

func (ApiListAccessGroupsRequest) SortOrder

The order in which the result will follow -- case insensitive and default to ASC.

type ApiListActiveIssuesRequest

type ApiListActiveIssuesRequest struct {
	ApiService *ActiveIssuesAPIService
	// contains filtered or unexported fields
}

func (ApiListActiveIssuesRequest) Execute

func (ApiListActiveIssuesRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListActiveIssuesRequest) PageSize

The number of items to retrieve per page. Must be positive number.

func (ApiListActiveIssuesRequest) Select_

The select expression.

func (ApiListActiveIssuesRequest) SortBy

The name of a field to sort the result by.

func (ApiListActiveIssuesRequest) SortOrder

The order in which the result will follow -- case insensitive and default to ASC.

type ApiListCustomerPropertiesRequest

type ApiListCustomerPropertiesRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiListCustomerPropertiesRequest) Execute

func (ApiListCustomerPropertiesRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListCustomerPropertiesRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListCustomerPropertiesRequest) Select_

The select expression.

func (ApiListCustomerPropertiesRequest) SortBy

The name of a field to sort the result by.

func (ApiListCustomerPropertiesRequest) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListCustomers1Request

type ApiListCustomers1Request struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListCustomers1Request) Execute

func (ApiListCustomers1Request) PageNumber

func (r ApiListCustomers1Request) PageNumber(pageNumber int32) ApiListCustomers1Request

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListCustomers1Request) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListCustomers1Request) Select_

The select expression.

func (ApiListCustomers1Request) SortBy

The name of a field to sort the result by.

func (ApiListCustomers1Request) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListCustomersRequest

type ApiListCustomersRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListCustomersRequest) Execute

func (ApiListCustomersRequest) PageNumber

func (r ApiListCustomersRequest) PageNumber(pageNumber int32) ApiListCustomersRequest

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListCustomersRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListCustomersRequest) Select_

The select expression.

func (ApiListCustomersRequest) SortBy

The name of a field to sort the result by.

func (ApiListCustomersRequest) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListDeviceCustomPropertiesRequest

type ApiListDeviceCustomPropertiesRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiListDeviceCustomPropertiesRequest) Execute

type ApiListDevicesByOrgUnitIdRequest

type ApiListDevicesByOrgUnitIdRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiListDevicesByOrgUnitIdRequest) Execute

func (ApiListDevicesByOrgUnitIdRequest) FilterId

The ID of the filter to apply for this device list. Leave empty or unset to retrieve the unfiltered list.

func (ApiListDevicesByOrgUnitIdRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListDevicesByOrgUnitIdRequest) PageSize

Set to -1 to retrieve the maximum-size items (deployment settings)Use 50 if the maximum-size is set to -1.

func (ApiListDevicesByOrgUnitIdRequest) Select_

The select expression.

func (ApiListDevicesByOrgUnitIdRequest) SortBy

The name of a field to sort the result by.

func (ApiListDevicesByOrgUnitIdRequest) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListDevicesRequest

type ApiListDevicesRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiListDevicesRequest) Execute

func (ApiListDevicesRequest) FilterId

func (r ApiListDevicesRequest) FilterId(filterId int32) ApiListDevicesRequest

The ID of the filter to apply for this device list. Leave empty or unset to retrieve the unfiltered list.

func (ApiListDevicesRequest) PageNumber

func (r ApiListDevicesRequest) PageNumber(pageNumber int32) ApiListDevicesRequest

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListDevicesRequest) PageSize

func (r ApiListDevicesRequest) PageSize(pageSize int32) ApiListDevicesRequest

Set to -1 to retrieve the maximum-size items (deployment settings)Use 50 if the maximum-size is set to -1.

func (ApiListDevicesRequest) Select_

The select expression.

func (ApiListDevicesRequest) SortBy

The name of a field to sort the result by.

func (ApiListDevicesRequest) SortOrder

func (r ApiListDevicesRequest) SortOrder(sortOrder string) ApiListDevicesRequest

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListFiltersRequest

type ApiListFiltersRequest struct {
	ApiService *DeviceFiltersAPIService
	// contains filtered or unexported fields
}

func (ApiListFiltersRequest) Execute

func (ApiListFiltersRequest) PageNumber

func (r ApiListFiltersRequest) PageNumber(pageNumber int32) ApiListFiltersRequest

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListFiltersRequest) PageSize

func (r ApiListFiltersRequest) PageSize(pageSize int32) ApiListFiltersRequest

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListFiltersRequest) Select_

The select expression.

func (ApiListFiltersRequest) SortBy

The name of a field to sort the result by.

func (ApiListFiltersRequest) SortOrder

func (r ApiListFiltersRequest) SortOrder(sortOrder string) ApiListFiltersRequest

The order in which the order will follow -- case insensitive and default to ASC.

func (ApiListFiltersRequest) ViewScope

func (r ApiListFiltersRequest) ViewScope(viewScope string) ApiListFiltersRequest

Scope of the filters. Defaults to &#39;ALL&#39;.

type ApiListJobStatusesRequest

type ApiListJobStatusesRequest struct {
	ApiService *JobStatusesAPIService
	// contains filtered or unexported fields
}

func (ApiListJobStatusesRequest) Execute

type ApiListOrganizationUnitChildrenRequest

type ApiListOrganizationUnitChildrenRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListOrganizationUnitChildrenRequest) Execute

func (ApiListOrganizationUnitChildrenRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListOrganizationUnitChildrenRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListOrganizationUnitChildrenRequest) Select_

The select expression.

func (ApiListOrganizationUnitChildrenRequest) SortBy

The name of a field to sort the result by.

func (ApiListOrganizationUnitChildrenRequest) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListOrganizationUnitsRequest

type ApiListOrganizationUnitsRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListOrganizationUnitsRequest) Execute

func (ApiListOrganizationUnitsRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListOrganizationUnitsRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListOrganizationUnitsRequest) Select_

The select expression.

func (ApiListOrganizationUnitsRequest) SortBy

The name of a field to sort the result by.

func (ApiListOrganizationUnitsRequest) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListServiceOrganizationsRequest

type ApiListServiceOrganizationsRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListServiceOrganizationsRequest) Execute

func (ApiListServiceOrganizationsRequest) PageNumber

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListServiceOrganizationsRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListServiceOrganizationsRequest) Select_

The select expression.

func (ApiListServiceOrganizationsRequest) SortBy

The name of a field to sort the result by.

func (ApiListServiceOrganizationsRequest) SortOrder

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListSites1Request

type ApiListSites1Request struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListSites1Request) Execute

func (ApiListSites1Request) PageNumber

func (r ApiListSites1Request) PageNumber(pageNumber int32) ApiListSites1Request

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListSites1Request) PageSize

func (r ApiListSites1Request) PageSize(pageSize int32) ApiListSites1Request

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListSites1Request) Select_

The select expression.

func (ApiListSites1Request) SortBy

The name of a field to sort the result by.

func (ApiListSites1Request) SortOrder

func (r ApiListSites1Request) SortOrder(sortOrder string) ApiListSites1Request

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListSitesRequest

type ApiListSitesRequest struct {
	ApiService *OrganizationUnitsAPIService
	// contains filtered or unexported fields
}

func (ApiListSitesRequest) Execute

func (ApiListSitesRequest) PageNumber

func (r ApiListSitesRequest) PageNumber(pageNumber int32) ApiListSitesRequest

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListSitesRequest) PageSize

func (r ApiListSitesRequest) PageSize(pageSize int32) ApiListSitesRequest

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListSitesRequest) Select_

func (r ApiListSitesRequest) Select_(select_ string) ApiListSitesRequest

The select expression.

func (ApiListSitesRequest) SortBy

The name of a field to sort the result by.

func (ApiListSitesRequest) SortOrder

func (r ApiListSitesRequest) SortOrder(sortOrder string) ApiListSitesRequest

The order in which the order will follow -- case insensitive and default to ASC.

type ApiListTaskStatusDetailsRequest

type ApiListTaskStatusDetailsRequest struct {
	ApiService *ScheduledTasksAPIService
	// contains filtered or unexported fields
}

func (ApiListTaskStatusDetailsRequest) Execute

type ApiListTasksForDeviceRequest

type ApiListTasksForDeviceRequest struct {
	ApiService *DeviceTasksAPIService
	// contains filtered or unexported fields
}

func (ApiListTasksForDeviceRequest) Execute

type ApiListUserRolesRequest

type ApiListUserRolesRequest struct {
	ApiService *UserRolesAPIService
	// contains filtered or unexported fields
}

func (ApiListUserRolesRequest) Execute

func (ApiListUserRolesRequest) PageNumber

func (r ApiListUserRolesRequest) PageNumber(pageNumber int32) ApiListUserRolesRequest

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListUserRolesRequest) PageSize

The number of items to retrieve per page. Set to -1 to retrieve all items without pagination (if enabled).

func (ApiListUserRolesRequest) Select_

The select expression.

func (ApiListUserRolesRequest) SortBy

The name of a field to sort the result by.

func (ApiListUserRolesRequest) SortOrder

The order in which the result will follow -- case insensitive and default to ASC.

type ApiListUsersRequest

type ApiListUsersRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiListUsersRequest) Execute

func (ApiListUsersRequest) PageNumber

func (r ApiListUsersRequest) PageNumber(pageNumber int32) ApiListUsersRequest

The page number to retrieve. Starts at 1. If not provided, defaults to the first page.

func (ApiListUsersRequest) PageSize

func (r ApiListUsersRequest) PageSize(pageSize int32) ApiListUsersRequest

The size of each page. Use -1 for unlimited size, which retrieves all users.

func (ApiListUsersRequest) Select_

func (r ApiListUsersRequest) Select_(select_ string) ApiListUsersRequest

The select expression.

func (ApiListUsersRequest) SortBy

The name of a field to sort the result by.

func (ApiListUsersRequest) SortOrder

func (r ApiListUsersRequest) SortOrder(sortOrder string) ApiListUsersRequest

The sort order, defaulting to ASC if unspecified.

type ApiModifyDefaultOrganizationUnitPropertyRequest

type ApiModifyDefaultOrganizationUnitPropertyRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiModifyDefaultOrganizationUnitPropertyRequest) DefaultCustomPropertyModifyRequest

The request body for default custom property (DEVICE/ORGANIZATION_UNIT).

func (ApiModifyDefaultOrganizationUnitPropertyRequest) Execute

type ApiModifyDevicePropertyRequest

type ApiModifyDevicePropertyRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiModifyDevicePropertyRequest) DeviceCustomPropertyModification

func (r ApiModifyDevicePropertyRequest) DeviceCustomPropertyModification(deviceCustomPropertyModification DeviceCustomPropertyModification) ApiModifyDevicePropertyRequest

The request body for device custom property.

func (ApiModifyDevicePropertyRequest) Execute

type ApiModifyOrganizationUnitPropertyValueRequest

type ApiModifyOrganizationUnitPropertyValueRequest struct {
	ApiService *CustomPropertiesAPIService
	// contains filtered or unexported fields
}

func (ApiModifyOrganizationUnitPropertyValueRequest) Execute

func (ApiModifyOrganizationUnitPropertyValueRequest) OrgUnitCustomPropertyModification

func (r ApiModifyOrganizationUnitPropertyValueRequest) OrgUnitCustomPropertyModification(orgUnitCustomPropertyModification OrgUnitCustomPropertyModification) ApiModifyOrganizationUnitPropertyValueRequest

The request body for custom property.

type ApiPatchAssetLifecycleInfoRequest

type ApiPatchAssetLifecycleInfoRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiPatchAssetLifecycleInfoRequest) AssetLifecyclePatchRequest

func (r ApiPatchAssetLifecycleInfoRequest) AssetLifecyclePatchRequest(assetLifecyclePatchRequest AssetLifecyclePatchRequest) ApiPatchAssetLifecycleInfoRequest

func (ApiPatchAssetLifecycleInfoRequest) Execute

type ApiPutAssetLifecycleInfoRequest

type ApiPutAssetLifecycleInfoRequest struct {
	ApiService *DevicesAPIService
	// contains filtered or unexported fields
}

func (ApiPutAssetLifecycleInfoRequest) AssetLifecyclePutRequest

func (r ApiPutAssetLifecycleInfoRequest) AssetLifecyclePutRequest(assetLifecyclePutRequest AssetLifecyclePutRequest) ApiPutAssetLifecycleInfoRequest

func (ApiPutAssetLifecycleInfoRequest) Execute

type ApiRefreshRequest

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

func (ApiRefreshRequest) Body

Refresh token.

func (ApiRefreshRequest) Execute

func (ApiRefreshRequest) XACCESSEXPIRYOVERRIDE

func (r ApiRefreshRequest) XACCESSEXPIRYOVERRIDE(xACCESSEXPIRYOVERRIDE string) ApiRefreshRequest

func (ApiRefreshRequest) XREFRESHEXPIRYOVERRIDE

func (r ApiRefreshRequest) XREFRESHEXPIRYOVERRIDE(xREFRESHEXPIRYOVERRIDE string) ApiRefreshRequest

type ApiStandardPsaRootRequest

type ApiStandardPsaRootRequest struct {
	ApiService *PSAAPIService
	// contains filtered or unexported fields
}

func (ApiStandardPsaRootRequest) Execute

type ApiTaskRootRequest

type ApiTaskRootRequest struct {
	ApiService *ScheduledTasksAPIService
	// contains filtered or unexported fields
}

func (ApiTaskRootRequest) Execute

type ApiUserRootRequest

type ApiUserRootRequest struct {
	ApiService *UsersAPIService
	// contains filtered or unexported fields
}

func (ApiUserRootRequest) Execute

type ApiValidatePsaCredentialsRequest

type ApiValidatePsaCredentialsRequest struct {
	ApiService *PSAAPIService
	// contains filtered or unexported fields
}

func (ApiValidatePsaCredentialsRequest) Execute

func (ApiValidatePsaCredentialsRequest) PsaCredentialRequest

func (r ApiValidatePsaCredentialsRequest) PsaCredentialRequest(psaCredentialRequest PsaCredentialRequest) ApiValidatePsaCredentialsRequest

type ApiValidateRequest

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

func (ApiValidateRequest) Execute

type ApplianceTaskInformation

type ApplianceTaskInformation struct {
	ScanTime       *string                     `json:"scanTime,omitempty"`
	State          *string                     `json:"state,omitempty"`
	ErrorMessage   *string                     `json:"errorMessage,omitempty"`
	ServiceDetails []ApplianceTaskStatusDetail `json:"serviceDetails,omitempty"`
}

ApplianceTaskInformation The appliance task information

func NewApplianceTaskInformation

func NewApplianceTaskInformation() *ApplianceTaskInformation

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

func NewApplianceTaskInformationWithDefaults

func NewApplianceTaskInformationWithDefaults() *ApplianceTaskInformation

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

func (*ApplianceTaskInformation) GetErrorMessage

func (o *ApplianceTaskInformation) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*ApplianceTaskInformation) GetErrorMessageOk

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

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

func (*ApplianceTaskInformation) GetScanTime

func (o *ApplianceTaskInformation) GetScanTime() string

GetScanTime returns the ScanTime field value if set, zero value otherwise.

func (*ApplianceTaskInformation) GetScanTimeOk

func (o *ApplianceTaskInformation) GetScanTimeOk() (*string, bool)

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

func (*ApplianceTaskInformation) GetServiceDetails

func (o *ApplianceTaskInformation) GetServiceDetails() []ApplianceTaskStatusDetail

GetServiceDetails returns the ServiceDetails field value if set, zero value otherwise.

func (*ApplianceTaskInformation) GetServiceDetailsOk

func (o *ApplianceTaskInformation) GetServiceDetailsOk() ([]ApplianceTaskStatusDetail, bool)

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

func (*ApplianceTaskInformation) GetState

func (o *ApplianceTaskInformation) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*ApplianceTaskInformation) GetStateOk

func (o *ApplianceTaskInformation) 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 (*ApplianceTaskInformation) HasErrorMessage

func (o *ApplianceTaskInformation) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*ApplianceTaskInformation) HasScanTime

func (o *ApplianceTaskInformation) HasScanTime() bool

HasScanTime returns a boolean if a field has been set.

func (*ApplianceTaskInformation) HasServiceDetails

func (o *ApplianceTaskInformation) HasServiceDetails() bool

HasServiceDetails returns a boolean if a field has been set.

func (*ApplianceTaskInformation) HasState

func (o *ApplianceTaskInformation) HasState() bool

HasState returns a boolean if a field has been set.

func (ApplianceTaskInformation) MarshalJSON

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

func (*ApplianceTaskInformation) SetErrorMessage

func (o *ApplianceTaskInformation) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*ApplianceTaskInformation) SetScanTime

func (o *ApplianceTaskInformation) SetScanTime(v string)

SetScanTime gets a reference to the given string and assigns it to the ScanTime field.

func (*ApplianceTaskInformation) SetServiceDetails

func (o *ApplianceTaskInformation) SetServiceDetails(v []ApplianceTaskStatusDetail)

SetServiceDetails gets a reference to the given []ApplianceTaskStatusDetail and assigns it to the ServiceDetails field.

func (*ApplianceTaskInformation) SetState

func (o *ApplianceTaskInformation) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (ApplianceTaskInformation) ToMap

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

type ApplianceTaskStatusDetail

type ApplianceTaskStatusDetail struct {
	ScanDetailId   *int32                        `json:"scanDetailId,omitempty"`
	DetailName     *string                       `json:"detailName,omitempty"`
	Description    *string                       `json:"description,omitempty"`
	DetailValue    *string                       `json:"detailValue,omitempty"`
	State          *string                       `json:"state,omitempty"`
	MonitoringType *string                       `json:"monitoringType,omitempty"`
	Thresholds     []ApplianceTaskThresholdBasic `json:"thresholds,omitempty"`
}

ApplianceTaskStatusDetail struct for ApplianceTaskStatusDetail

func NewApplianceTaskStatusDetail

func NewApplianceTaskStatusDetail() *ApplianceTaskStatusDetail

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

func NewApplianceTaskStatusDetailWithDefaults

func NewApplianceTaskStatusDetailWithDefaults() *ApplianceTaskStatusDetail

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

func (*ApplianceTaskStatusDetail) GetDescription

func (o *ApplianceTaskStatusDetail) GetDescription() string

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

func (*ApplianceTaskStatusDetail) GetDescriptionOk

func (o *ApplianceTaskStatusDetail) 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 (*ApplianceTaskStatusDetail) GetDetailName

func (o *ApplianceTaskStatusDetail) GetDetailName() string

GetDetailName returns the DetailName field value if set, zero value otherwise.

func (*ApplianceTaskStatusDetail) GetDetailNameOk

func (o *ApplianceTaskStatusDetail) GetDetailNameOk() (*string, bool)

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

func (*ApplianceTaskStatusDetail) GetDetailValue

func (o *ApplianceTaskStatusDetail) GetDetailValue() string

GetDetailValue returns the DetailValue field value if set, zero value otherwise.

func (*ApplianceTaskStatusDetail) GetDetailValueOk

func (o *ApplianceTaskStatusDetail) GetDetailValueOk() (*string, bool)

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

func (*ApplianceTaskStatusDetail) GetMonitoringType

func (o *ApplianceTaskStatusDetail) GetMonitoringType() string

GetMonitoringType returns the MonitoringType field value if set, zero value otherwise.

func (*ApplianceTaskStatusDetail) GetMonitoringTypeOk

func (o *ApplianceTaskStatusDetail) GetMonitoringTypeOk() (*string, bool)

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

func (*ApplianceTaskStatusDetail) GetScanDetailId

func (o *ApplianceTaskStatusDetail) GetScanDetailId() int32

GetScanDetailId returns the ScanDetailId field value if set, zero value otherwise.

func (*ApplianceTaskStatusDetail) GetScanDetailIdOk

func (o *ApplianceTaskStatusDetail) GetScanDetailIdOk() (*int32, bool)

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

func (*ApplianceTaskStatusDetail) GetState

func (o *ApplianceTaskStatusDetail) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*ApplianceTaskStatusDetail) GetStateOk

func (o *ApplianceTaskStatusDetail) 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 (*ApplianceTaskStatusDetail) GetThresholds

GetThresholds returns the Thresholds field value if set, zero value otherwise.

func (*ApplianceTaskStatusDetail) GetThresholdsOk

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

func (*ApplianceTaskStatusDetail) HasDescription

func (o *ApplianceTaskStatusDetail) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApplianceTaskStatusDetail) HasDetailName

func (o *ApplianceTaskStatusDetail) HasDetailName() bool

HasDetailName returns a boolean if a field has been set.

func (*ApplianceTaskStatusDetail) HasDetailValue

func (o *ApplianceTaskStatusDetail) HasDetailValue() bool

HasDetailValue returns a boolean if a field has been set.

func (*ApplianceTaskStatusDetail) HasMonitoringType

func (o *ApplianceTaskStatusDetail) HasMonitoringType() bool

HasMonitoringType returns a boolean if a field has been set.

func (*ApplianceTaskStatusDetail) HasScanDetailId

func (o *ApplianceTaskStatusDetail) HasScanDetailId() bool

HasScanDetailId returns a boolean if a field has been set.

func (*ApplianceTaskStatusDetail) HasState

func (o *ApplianceTaskStatusDetail) HasState() bool

HasState returns a boolean if a field has been set.

func (*ApplianceTaskStatusDetail) HasThresholds

func (o *ApplianceTaskStatusDetail) HasThresholds() bool

HasThresholds returns a boolean if a field has been set.

func (ApplianceTaskStatusDetail) MarshalJSON

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

func (*ApplianceTaskStatusDetail) SetDescription

func (o *ApplianceTaskStatusDetail) SetDescription(v string)

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

func (*ApplianceTaskStatusDetail) SetDetailName

func (o *ApplianceTaskStatusDetail) SetDetailName(v string)

SetDetailName gets a reference to the given string and assigns it to the DetailName field.

func (*ApplianceTaskStatusDetail) SetDetailValue

func (o *ApplianceTaskStatusDetail) SetDetailValue(v string)

SetDetailValue gets a reference to the given string and assigns it to the DetailValue field.

func (*ApplianceTaskStatusDetail) SetMonitoringType

func (o *ApplianceTaskStatusDetail) SetMonitoringType(v string)

SetMonitoringType gets a reference to the given string and assigns it to the MonitoringType field.

func (*ApplianceTaskStatusDetail) SetScanDetailId

func (o *ApplianceTaskStatusDetail) SetScanDetailId(v int32)

SetScanDetailId gets a reference to the given int32 and assigns it to the ScanDetailId field.

func (*ApplianceTaskStatusDetail) SetState

func (o *ApplianceTaskStatusDetail) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*ApplianceTaskStatusDetail) SetThresholds

SetThresholds gets a reference to the given []ApplianceTaskThresholdBasic and assigns it to the Thresholds field.

func (ApplianceTaskStatusDetail) ToMap

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

type ApplianceTaskThresholdBasic

type ApplianceTaskThresholdBasic struct {
	State     *string `json:"state,omitempty"`
	LowValue  *int32  `json:"lowValue,omitempty"`
	HighValue *int32  `json:"highValue,omitempty"`
}

ApplianceTaskThresholdBasic struct for ApplianceTaskThresholdBasic

func NewApplianceTaskThresholdBasic

func NewApplianceTaskThresholdBasic() *ApplianceTaskThresholdBasic

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

func NewApplianceTaskThresholdBasicWithDefaults

func NewApplianceTaskThresholdBasicWithDefaults() *ApplianceTaskThresholdBasic

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

func (*ApplianceTaskThresholdBasic) GetHighValue

func (o *ApplianceTaskThresholdBasic) GetHighValue() int32

GetHighValue returns the HighValue field value if set, zero value otherwise.

func (*ApplianceTaskThresholdBasic) GetHighValueOk

func (o *ApplianceTaskThresholdBasic) GetHighValueOk() (*int32, bool)

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

func (*ApplianceTaskThresholdBasic) GetLowValue

func (o *ApplianceTaskThresholdBasic) GetLowValue() int32

GetLowValue returns the LowValue field value if set, zero value otherwise.

func (*ApplianceTaskThresholdBasic) GetLowValueOk

func (o *ApplianceTaskThresholdBasic) GetLowValueOk() (*int32, bool)

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

func (*ApplianceTaskThresholdBasic) GetState

func (o *ApplianceTaskThresholdBasic) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*ApplianceTaskThresholdBasic) GetStateOk

func (o *ApplianceTaskThresholdBasic) 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 (*ApplianceTaskThresholdBasic) HasHighValue

func (o *ApplianceTaskThresholdBasic) HasHighValue() bool

HasHighValue returns a boolean if a field has been set.

func (*ApplianceTaskThresholdBasic) HasLowValue

func (o *ApplianceTaskThresholdBasic) HasLowValue() bool

HasLowValue returns a boolean if a field has been set.

func (*ApplianceTaskThresholdBasic) HasState

func (o *ApplianceTaskThresholdBasic) HasState() bool

HasState returns a boolean if a field has been set.

func (ApplianceTaskThresholdBasic) MarshalJSON

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

func (*ApplianceTaskThresholdBasic) SetHighValue

func (o *ApplianceTaskThresholdBasic) SetHighValue(v int32)

SetHighValue gets a reference to the given int32 and assigns it to the HighValue field.

func (*ApplianceTaskThresholdBasic) SetLowValue

func (o *ApplianceTaskThresholdBasic) SetLowValue(v int32)

SetLowValue gets a reference to the given int32 and assigns it to the LowValue field.

func (*ApplianceTaskThresholdBasic) SetState

func (o *ApplianceTaskThresholdBasic) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (ApplianceTaskThresholdBasic) ToMap

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

type ApplicableAction

type ApplicableAction struct {
	Type    *string  `json:"type,omitempty"`
	Actions []Action `json:"actions,omitempty"`
}

ApplicableAction Request/Response for Maintenance Window ApplicableAction.

func NewApplicableAction

func NewApplicableAction() *ApplicableAction

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

func NewApplicableActionWithDefaults

func NewApplicableActionWithDefaults() *ApplicableAction

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

func (*ApplicableAction) GetActions

func (o *ApplicableAction) GetActions() []Action

GetActions returns the Actions field value if set, zero value otherwise.

func (*ApplicableAction) GetActionsOk

func (o *ApplicableAction) GetActionsOk() ([]Action, 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 (*ApplicableAction) GetType

func (o *ApplicableAction) GetType() string

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

func (*ApplicableAction) GetTypeOk

func (o *ApplicableAction) 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 (*ApplicableAction) HasActions

func (o *ApplicableAction) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*ApplicableAction) HasType

func (o *ApplicableAction) HasType() bool

HasType returns a boolean if a field has been set.

func (ApplicableAction) MarshalJSON

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

func (*ApplicableAction) SetActions

func (o *ApplicableAction) SetActions(v []Action)

SetActions gets a reference to the given []Action and assigns it to the Actions field.

func (*ApplicableAction) SetType

func (o *ApplicableAction) SetType(v string)

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

func (ApplicableAction) ToMap

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

type AssetLifecycleDetails

type AssetLifecycleDetails struct {
	WarrantyExpiryDate      *string  `json:"warrantyExpiryDate,omitempty"`
	LeaseExpiryDate         *string  `json:"leaseExpiryDate,omitempty"`
	ExpectedReplacementDate *string  `json:"expectedReplacementDate,omitempty"`
	PurchaseDate            *string  `json:"purchaseDate,omitempty"`
	Cost                    *float32 `json:"cost,omitempty"`
	Location                *string  `json:"location,omitempty"`
	AssetTag                *string  `json:"assetTag,omitempty"`
	Description             *string  `json:"description,omitempty"`
	UpdateWarrantyError     *string  `json:"updateWarrantyError,omitempty"`
}

AssetLifecycleDetails Asset Lifecycle details

func NewAssetLifecycleDetails

func NewAssetLifecycleDetails() *AssetLifecycleDetails

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

func NewAssetLifecycleDetailsWithDefaults

func NewAssetLifecycleDetailsWithDefaults() *AssetLifecycleDetails

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

func (*AssetLifecycleDetails) GetAssetTag

func (o *AssetLifecycleDetails) GetAssetTag() string

GetAssetTag returns the AssetTag field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetAssetTagOk

func (o *AssetLifecycleDetails) GetAssetTagOk() (*string, bool)

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

func (*AssetLifecycleDetails) GetCost

func (o *AssetLifecycleDetails) GetCost() float32

GetCost returns the Cost field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetCostOk

func (o *AssetLifecycleDetails) GetCostOk() (*float32, 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 (*AssetLifecycleDetails) GetDescription

func (o *AssetLifecycleDetails) GetDescription() string

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

func (*AssetLifecycleDetails) GetDescriptionOk

func (o *AssetLifecycleDetails) 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 (*AssetLifecycleDetails) GetExpectedReplacementDate

func (o *AssetLifecycleDetails) GetExpectedReplacementDate() string

GetExpectedReplacementDate returns the ExpectedReplacementDate field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetExpectedReplacementDateOk

func (o *AssetLifecycleDetails) GetExpectedReplacementDateOk() (*string, bool)

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

func (*AssetLifecycleDetails) GetLeaseExpiryDate

func (o *AssetLifecycleDetails) GetLeaseExpiryDate() string

GetLeaseExpiryDate returns the LeaseExpiryDate field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetLeaseExpiryDateOk

func (o *AssetLifecycleDetails) GetLeaseExpiryDateOk() (*string, bool)

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

func (*AssetLifecycleDetails) GetLocation

func (o *AssetLifecycleDetails) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetLocationOk

func (o *AssetLifecycleDetails) GetLocationOk() (*string, bool)

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

func (*AssetLifecycleDetails) GetPurchaseDate

func (o *AssetLifecycleDetails) GetPurchaseDate() string

GetPurchaseDate returns the PurchaseDate field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetPurchaseDateOk

func (o *AssetLifecycleDetails) GetPurchaseDateOk() (*string, bool)

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

func (*AssetLifecycleDetails) GetUpdateWarrantyError

func (o *AssetLifecycleDetails) GetUpdateWarrantyError() string

GetUpdateWarrantyError returns the UpdateWarrantyError field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetUpdateWarrantyErrorOk

func (o *AssetLifecycleDetails) GetUpdateWarrantyErrorOk() (*string, bool)

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

func (*AssetLifecycleDetails) GetWarrantyExpiryDate

func (o *AssetLifecycleDetails) GetWarrantyExpiryDate() string

GetWarrantyExpiryDate returns the WarrantyExpiryDate field value if set, zero value otherwise.

func (*AssetLifecycleDetails) GetWarrantyExpiryDateOk

func (o *AssetLifecycleDetails) GetWarrantyExpiryDateOk() (*string, bool)

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

func (*AssetLifecycleDetails) HasAssetTag

func (o *AssetLifecycleDetails) HasAssetTag() bool

HasAssetTag returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasCost

func (o *AssetLifecycleDetails) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasDescription

func (o *AssetLifecycleDetails) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasExpectedReplacementDate

func (o *AssetLifecycleDetails) HasExpectedReplacementDate() bool

HasExpectedReplacementDate returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasLeaseExpiryDate

func (o *AssetLifecycleDetails) HasLeaseExpiryDate() bool

HasLeaseExpiryDate returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasLocation

func (o *AssetLifecycleDetails) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasPurchaseDate

func (o *AssetLifecycleDetails) HasPurchaseDate() bool

HasPurchaseDate returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasUpdateWarrantyError

func (o *AssetLifecycleDetails) HasUpdateWarrantyError() bool

HasUpdateWarrantyError returns a boolean if a field has been set.

func (*AssetLifecycleDetails) HasWarrantyExpiryDate

func (o *AssetLifecycleDetails) HasWarrantyExpiryDate() bool

HasWarrantyExpiryDate returns a boolean if a field has been set.

func (AssetLifecycleDetails) MarshalJSON

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

func (*AssetLifecycleDetails) SetAssetTag

func (o *AssetLifecycleDetails) SetAssetTag(v string)

SetAssetTag gets a reference to the given string and assigns it to the AssetTag field.

func (*AssetLifecycleDetails) SetCost

func (o *AssetLifecycleDetails) SetCost(v float32)

SetCost gets a reference to the given float32 and assigns it to the Cost field.

func (*AssetLifecycleDetails) SetDescription

func (o *AssetLifecycleDetails) SetDescription(v string)

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

func (*AssetLifecycleDetails) SetExpectedReplacementDate

func (o *AssetLifecycleDetails) SetExpectedReplacementDate(v string)

SetExpectedReplacementDate gets a reference to the given string and assigns it to the ExpectedReplacementDate field.

func (*AssetLifecycleDetails) SetLeaseExpiryDate

func (o *AssetLifecycleDetails) SetLeaseExpiryDate(v string)

SetLeaseExpiryDate gets a reference to the given string and assigns it to the LeaseExpiryDate field.

func (*AssetLifecycleDetails) SetLocation

func (o *AssetLifecycleDetails) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*AssetLifecycleDetails) SetPurchaseDate

func (o *AssetLifecycleDetails) SetPurchaseDate(v string)

SetPurchaseDate gets a reference to the given string and assigns it to the PurchaseDate field.

func (*AssetLifecycleDetails) SetUpdateWarrantyError

func (o *AssetLifecycleDetails) SetUpdateWarrantyError(v string)

SetUpdateWarrantyError gets a reference to the given string and assigns it to the UpdateWarrantyError field.

func (*AssetLifecycleDetails) SetWarrantyExpiryDate

func (o *AssetLifecycleDetails) SetWarrantyExpiryDate(v string)

SetWarrantyExpiryDate gets a reference to the given string and assigns it to the WarrantyExpiryDate field.

func (AssetLifecycleDetails) ToMap

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

type AssetLifecyclePatchRequest

type AssetLifecyclePatchRequest struct {
	WarrantyExpiryDate      *string  `` /* 131-byte string literal not displayed */
	LeaseExpiryDate         *string  `` /* 128-byte string literal not displayed */
	ExpectedReplacementDate *string  `` /* 136-byte string literal not displayed */
	PurchaseDate            *string  `json:"purchaseDate,omitempty" validate:"regexp=(\\\\d{4}-\\\\d{2}-\\\\d{2}( \\\\d{2}:\\\\d{2}:\\\\d{2}(\\\\.\\\\d{1,9})?)?)?"`
	Cost                    *float32 `json:"cost,omitempty"`
	Location                *string  `json:"location,omitempty"`
	AssetTag                *string  `json:"assetTag,omitempty"`
	Description             *string  `json:"description,omitempty"`
	UpdateWarrantyError     *string  `json:"updateWarrantyError,omitempty"`
}

AssetLifecyclePatchRequest Asset Lifecycle Patch Request details

func NewAssetLifecyclePatchRequest

func NewAssetLifecyclePatchRequest() *AssetLifecyclePatchRequest

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

func NewAssetLifecyclePatchRequestWithDefaults

func NewAssetLifecyclePatchRequestWithDefaults() *AssetLifecyclePatchRequest

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

func (*AssetLifecyclePatchRequest) GetAssetTag

func (o *AssetLifecyclePatchRequest) GetAssetTag() string

GetAssetTag returns the AssetTag field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetAssetTagOk

func (o *AssetLifecyclePatchRequest) GetAssetTagOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) GetCost

func (o *AssetLifecyclePatchRequest) GetCost() float32

GetCost returns the Cost field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetCostOk

func (o *AssetLifecyclePatchRequest) GetCostOk() (*float32, 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 (*AssetLifecyclePatchRequest) GetDescription

func (o *AssetLifecyclePatchRequest) GetDescription() string

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

func (*AssetLifecyclePatchRequest) GetDescriptionOk

func (o *AssetLifecyclePatchRequest) 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 (*AssetLifecyclePatchRequest) GetExpectedReplacementDate

func (o *AssetLifecyclePatchRequest) GetExpectedReplacementDate() string

GetExpectedReplacementDate returns the ExpectedReplacementDate field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetExpectedReplacementDateOk

func (o *AssetLifecyclePatchRequest) GetExpectedReplacementDateOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) GetLeaseExpiryDate

func (o *AssetLifecyclePatchRequest) GetLeaseExpiryDate() string

GetLeaseExpiryDate returns the LeaseExpiryDate field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetLeaseExpiryDateOk

func (o *AssetLifecyclePatchRequest) GetLeaseExpiryDateOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) GetLocation

func (o *AssetLifecyclePatchRequest) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetLocationOk

func (o *AssetLifecyclePatchRequest) GetLocationOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) GetPurchaseDate

func (o *AssetLifecyclePatchRequest) GetPurchaseDate() string

GetPurchaseDate returns the PurchaseDate field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetPurchaseDateOk

func (o *AssetLifecyclePatchRequest) GetPurchaseDateOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) GetUpdateWarrantyError

func (o *AssetLifecyclePatchRequest) GetUpdateWarrantyError() string

GetUpdateWarrantyError returns the UpdateWarrantyError field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetUpdateWarrantyErrorOk

func (o *AssetLifecyclePatchRequest) GetUpdateWarrantyErrorOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) GetWarrantyExpiryDate

func (o *AssetLifecyclePatchRequest) GetWarrantyExpiryDate() string

GetWarrantyExpiryDate returns the WarrantyExpiryDate field value if set, zero value otherwise.

func (*AssetLifecyclePatchRequest) GetWarrantyExpiryDateOk

func (o *AssetLifecyclePatchRequest) GetWarrantyExpiryDateOk() (*string, bool)

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

func (*AssetLifecyclePatchRequest) HasAssetTag

func (o *AssetLifecyclePatchRequest) HasAssetTag() bool

HasAssetTag returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasCost

func (o *AssetLifecyclePatchRequest) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasDescription

func (o *AssetLifecyclePatchRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasExpectedReplacementDate

func (o *AssetLifecyclePatchRequest) HasExpectedReplacementDate() bool

HasExpectedReplacementDate returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasLeaseExpiryDate

func (o *AssetLifecyclePatchRequest) HasLeaseExpiryDate() bool

HasLeaseExpiryDate returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasLocation

func (o *AssetLifecyclePatchRequest) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasPurchaseDate

func (o *AssetLifecyclePatchRequest) HasPurchaseDate() bool

HasPurchaseDate returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasUpdateWarrantyError

func (o *AssetLifecyclePatchRequest) HasUpdateWarrantyError() bool

HasUpdateWarrantyError returns a boolean if a field has been set.

func (*AssetLifecyclePatchRequest) HasWarrantyExpiryDate

func (o *AssetLifecyclePatchRequest) HasWarrantyExpiryDate() bool

HasWarrantyExpiryDate returns a boolean if a field has been set.

func (AssetLifecyclePatchRequest) MarshalJSON

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

func (*AssetLifecyclePatchRequest) SetAssetTag

func (o *AssetLifecyclePatchRequest) SetAssetTag(v string)

SetAssetTag gets a reference to the given string and assigns it to the AssetTag field.

func (*AssetLifecyclePatchRequest) SetCost

func (o *AssetLifecyclePatchRequest) SetCost(v float32)

SetCost gets a reference to the given float32 and assigns it to the Cost field.

func (*AssetLifecyclePatchRequest) SetDescription

func (o *AssetLifecyclePatchRequest) SetDescription(v string)

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

func (*AssetLifecyclePatchRequest) SetExpectedReplacementDate

func (o *AssetLifecyclePatchRequest) SetExpectedReplacementDate(v string)

SetExpectedReplacementDate gets a reference to the given string and assigns it to the ExpectedReplacementDate field.

func (*AssetLifecyclePatchRequest) SetLeaseExpiryDate

func (o *AssetLifecyclePatchRequest) SetLeaseExpiryDate(v string)

SetLeaseExpiryDate gets a reference to the given string and assigns it to the LeaseExpiryDate field.

func (*AssetLifecyclePatchRequest) SetLocation

func (o *AssetLifecyclePatchRequest) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*AssetLifecyclePatchRequest) SetPurchaseDate

func (o *AssetLifecyclePatchRequest) SetPurchaseDate(v string)

SetPurchaseDate gets a reference to the given string and assigns it to the PurchaseDate field.

func (*AssetLifecyclePatchRequest) SetUpdateWarrantyError

func (o *AssetLifecyclePatchRequest) SetUpdateWarrantyError(v string)

SetUpdateWarrantyError gets a reference to the given string and assigns it to the UpdateWarrantyError field.

func (*AssetLifecyclePatchRequest) SetWarrantyExpiryDate

func (o *AssetLifecyclePatchRequest) SetWarrantyExpiryDate(v string)

SetWarrantyExpiryDate gets a reference to the given string and assigns it to the WarrantyExpiryDate field.

func (AssetLifecyclePatchRequest) ToMap

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

type AssetLifecyclePutRequest

type AssetLifecyclePutRequest struct {
	WarrantyExpiryDate      string  `json:"warrantyExpiryDate" validate:"regexp=(\\\\d{4}-\\\\d{2}-\\\\d{2}( \\\\d{2}:\\\\d{2}:\\\\d{2}(\\\\.\\\\d{1,9})?)?)?"`
	LeaseExpiryDate         string  `json:"leaseExpiryDate" validate:"regexp=(\\\\d{4}-\\\\d{2}-\\\\d{2}( \\\\d{2}:\\\\d{2}:\\\\d{2}(\\\\.\\\\d{1,9})?)?)?"`
	ExpectedReplacementDate string  `` /* 126-byte string literal not displayed */
	PurchaseDate            string  `json:"purchaseDate" validate:"regexp=(\\\\d{4}-\\\\d{2}-\\\\d{2}( \\\\d{2}:\\\\d{2}:\\\\d{2}(\\\\.\\\\d{1,9})?)?)?"`
	Cost                    float32 `json:"cost"`
	Location                string  `json:"location"`
	AssetTag                string  `json:"assetTag"`
	Description             string  `json:"description"`
	// This field is Read Only
	UpdateWarrantyError *string `json:"updateWarrantyError,omitempty"`
	AllNull             *bool   `json:"allNull,omitempty"`
}

AssetLifecyclePutRequest Asset Lifecycle details

func NewAssetLifecyclePutRequest

func NewAssetLifecyclePutRequest(warrantyExpiryDate string, leaseExpiryDate string, expectedReplacementDate string, purchaseDate string, cost float32, location string, assetTag string, description string) *AssetLifecyclePutRequest

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

func NewAssetLifecyclePutRequestWithDefaults

func NewAssetLifecyclePutRequestWithDefaults() *AssetLifecyclePutRequest

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

func (*AssetLifecyclePutRequest) GetAllNull

func (o *AssetLifecyclePutRequest) GetAllNull() bool

GetAllNull returns the AllNull field value if set, zero value otherwise.

func (*AssetLifecyclePutRequest) GetAllNullOk

func (o *AssetLifecyclePutRequest) GetAllNullOk() (*bool, bool)

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

func (*AssetLifecyclePutRequest) GetAssetTag

func (o *AssetLifecyclePutRequest) GetAssetTag() string

GetAssetTag returns the AssetTag field value

func (*AssetLifecyclePutRequest) GetAssetTagOk

func (o *AssetLifecyclePutRequest) GetAssetTagOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) GetCost

func (o *AssetLifecyclePutRequest) GetCost() float32

GetCost returns the Cost field value

func (*AssetLifecyclePutRequest) GetCostOk

func (o *AssetLifecyclePutRequest) GetCostOk() (*float32, bool)

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

func (*AssetLifecyclePutRequest) GetDescription

func (o *AssetLifecyclePutRequest) GetDescription() string

GetDescription returns the Description field value

func (*AssetLifecyclePutRequest) GetDescriptionOk

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

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

func (*AssetLifecyclePutRequest) GetExpectedReplacementDate

func (o *AssetLifecyclePutRequest) GetExpectedReplacementDate() string

GetExpectedReplacementDate returns the ExpectedReplacementDate field value

func (*AssetLifecyclePutRequest) GetExpectedReplacementDateOk

func (o *AssetLifecyclePutRequest) GetExpectedReplacementDateOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) GetLeaseExpiryDate

func (o *AssetLifecyclePutRequest) GetLeaseExpiryDate() string

GetLeaseExpiryDate returns the LeaseExpiryDate field value

func (*AssetLifecyclePutRequest) GetLeaseExpiryDateOk

func (o *AssetLifecyclePutRequest) GetLeaseExpiryDateOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) GetLocation

func (o *AssetLifecyclePutRequest) GetLocation() string

GetLocation returns the Location field value

func (*AssetLifecyclePutRequest) GetLocationOk

func (o *AssetLifecyclePutRequest) GetLocationOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) GetPurchaseDate

func (o *AssetLifecyclePutRequest) GetPurchaseDate() string

GetPurchaseDate returns the PurchaseDate field value

func (*AssetLifecyclePutRequest) GetPurchaseDateOk

func (o *AssetLifecyclePutRequest) GetPurchaseDateOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) GetUpdateWarrantyError

func (o *AssetLifecyclePutRequest) GetUpdateWarrantyError() string

GetUpdateWarrantyError returns the UpdateWarrantyError field value if set, zero value otherwise.

func (*AssetLifecyclePutRequest) GetUpdateWarrantyErrorOk

func (o *AssetLifecyclePutRequest) GetUpdateWarrantyErrorOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) GetWarrantyExpiryDate

func (o *AssetLifecyclePutRequest) GetWarrantyExpiryDate() string

GetWarrantyExpiryDate returns the WarrantyExpiryDate field value

func (*AssetLifecyclePutRequest) GetWarrantyExpiryDateOk

func (o *AssetLifecyclePutRequest) GetWarrantyExpiryDateOk() (*string, bool)

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

func (*AssetLifecyclePutRequest) HasAllNull

func (o *AssetLifecyclePutRequest) HasAllNull() bool

HasAllNull returns a boolean if a field has been set.

func (*AssetLifecyclePutRequest) HasUpdateWarrantyError

func (o *AssetLifecyclePutRequest) HasUpdateWarrantyError() bool

HasUpdateWarrantyError returns a boolean if a field has been set.

func (AssetLifecyclePutRequest) MarshalJSON

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

func (*AssetLifecyclePutRequest) SetAllNull

func (o *AssetLifecyclePutRequest) SetAllNull(v bool)

SetAllNull gets a reference to the given bool and assigns it to the AllNull field.

func (*AssetLifecyclePutRequest) SetAssetTag

func (o *AssetLifecyclePutRequest) SetAssetTag(v string)

SetAssetTag sets field value

func (*AssetLifecyclePutRequest) SetCost

func (o *AssetLifecyclePutRequest) SetCost(v float32)

SetCost sets field value

func (*AssetLifecyclePutRequest) SetDescription

func (o *AssetLifecyclePutRequest) SetDescription(v string)

SetDescription sets field value

func (*AssetLifecyclePutRequest) SetExpectedReplacementDate

func (o *AssetLifecyclePutRequest) SetExpectedReplacementDate(v string)

SetExpectedReplacementDate sets field value

func (*AssetLifecyclePutRequest) SetLeaseExpiryDate

func (o *AssetLifecyclePutRequest) SetLeaseExpiryDate(v string)

SetLeaseExpiryDate sets field value

func (*AssetLifecyclePutRequest) SetLocation

func (o *AssetLifecyclePutRequest) SetLocation(v string)

SetLocation sets field value

func (*AssetLifecyclePutRequest) SetPurchaseDate

func (o *AssetLifecyclePutRequest) SetPurchaseDate(v string)

SetPurchaseDate sets field value

func (*AssetLifecyclePutRequest) SetUpdateWarrantyError

func (o *AssetLifecyclePutRequest) SetUpdateWarrantyError(v string)

SetUpdateWarrantyError gets a reference to the given string and assigns it to the UpdateWarrantyError field.

func (*AssetLifecyclePutRequest) SetWarrantyExpiryDate

func (o *AssetLifecyclePutRequest) SetWarrantyExpiryDate(v string)

SetWarrantyExpiryDate sets field value

func (AssetLifecyclePutRequest) ToMap

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

func (*AssetLifecyclePutRequest) UnmarshalJSON

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

type AuthRefreshResponse

type AuthRefreshResponse struct {
	Tokens   *AuthTokens `json:"tokens,omitempty"`
	Refresh  *string     `json:"refresh,omitempty"`
	Validate *string     `json:"validate,omitempty"`
}

AuthRefreshResponse Response for the refresh of authentication tokens.

func NewAuthRefreshResponse

func NewAuthRefreshResponse() *AuthRefreshResponse

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

func NewAuthRefreshResponseWithDefaults

func NewAuthRefreshResponseWithDefaults() *AuthRefreshResponse

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

func (*AuthRefreshResponse) GetRefresh

func (o *AuthRefreshResponse) GetRefresh() string

GetRefresh returns the Refresh field value if set, zero value otherwise.

func (*AuthRefreshResponse) GetRefreshOk

func (o *AuthRefreshResponse) GetRefreshOk() (*string, bool)

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

func (*AuthRefreshResponse) GetTokens

func (o *AuthRefreshResponse) GetTokens() AuthTokens

GetTokens returns the Tokens field value if set, zero value otherwise.

func (*AuthRefreshResponse) GetTokensOk

func (o *AuthRefreshResponse) GetTokensOk() (*AuthTokens, bool)

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

func (*AuthRefreshResponse) GetValidate

func (o *AuthRefreshResponse) GetValidate() string

GetValidate returns the Validate field value if set, zero value otherwise.

func (*AuthRefreshResponse) GetValidateOk

func (o *AuthRefreshResponse) GetValidateOk() (*string, bool)

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

func (*AuthRefreshResponse) HasRefresh

func (o *AuthRefreshResponse) HasRefresh() bool

HasRefresh returns a boolean if a field has been set.

func (*AuthRefreshResponse) HasTokens

func (o *AuthRefreshResponse) HasTokens() bool

HasTokens returns a boolean if a field has been set.

func (*AuthRefreshResponse) HasValidate

func (o *AuthRefreshResponse) HasValidate() bool

HasValidate returns a boolean if a field has been set.

func (AuthRefreshResponse) MarshalJSON

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

func (*AuthRefreshResponse) SetRefresh

func (o *AuthRefreshResponse) SetRefresh(v string)

SetRefresh gets a reference to the given string and assigns it to the Refresh field.

func (*AuthRefreshResponse) SetTokens

func (o *AuthRefreshResponse) SetTokens(v AuthTokens)

SetTokens gets a reference to the given AuthTokens and assigns it to the Tokens field.

func (*AuthRefreshResponse) SetValidate

func (o *AuthRefreshResponse) SetValidate(v string)

SetValidate gets a reference to the given string and assigns it to the Validate field.

func (AuthRefreshResponse) ToMap

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

type AuthToken

type AuthToken struct {
	// The JWT token.
	Token string `json:"token"`
	// The token type: bearer or body.
	Type string `json:"type"`
	// The expiry in seconds.
	ExpirySeconds *int64 `json:"expirySeconds,omitempty"`
}

AuthToken Authentication token (access or refresh).

func NewAuthToken

func NewAuthToken(token string, type_ string) *AuthToken

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

func NewAuthTokenWithDefaults

func NewAuthTokenWithDefaults() *AuthToken

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

func (*AuthToken) GetExpirySeconds

func (o *AuthToken) GetExpirySeconds() int64

GetExpirySeconds returns the ExpirySeconds field value if set, zero value otherwise.

func (*AuthToken) GetExpirySecondsOk

func (o *AuthToken) GetExpirySecondsOk() (*int64, bool)

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

func (*AuthToken) GetToken

func (o *AuthToken) GetToken() string

GetToken returns the Token field value

func (*AuthToken) GetTokenOk

func (o *AuthToken) GetTokenOk() (*string, bool)

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

func (*AuthToken) GetType

func (o *AuthToken) GetType() string

GetType returns the Type field value

func (*AuthToken) GetTypeOk

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

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

func (*AuthToken) HasExpirySeconds

func (o *AuthToken) HasExpirySeconds() bool

HasExpirySeconds returns a boolean if a field has been set.

func (AuthToken) MarshalJSON

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

func (*AuthToken) SetExpirySeconds

func (o *AuthToken) SetExpirySeconds(v int64)

SetExpirySeconds gets a reference to the given int64 and assigns it to the ExpirySeconds field.

func (*AuthToken) SetToken

func (o *AuthToken) SetToken(v string)

SetToken sets field value

func (*AuthToken) SetType

func (o *AuthToken) SetType(v string)

SetType sets field value

func (AuthToken) ToMap

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

func (*AuthToken) UnmarshalJSON

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

type AuthTokens

type AuthTokens struct {
	Access  AuthToken `json:"access"`
	Refresh AuthToken `json:"refresh"`
}

AuthTokens Authentication tokens (access and refresh).

func NewAuthTokens

func NewAuthTokens(access AuthToken, refresh AuthToken) *AuthTokens

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

func NewAuthTokensWithDefaults

func NewAuthTokensWithDefaults() *AuthTokens

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

func (*AuthTokens) GetAccess

func (o *AuthTokens) GetAccess() AuthToken

GetAccess returns the Access field value

func (*AuthTokens) GetAccessOk

func (o *AuthTokens) GetAccessOk() (*AuthToken, bool)

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

func (*AuthTokens) GetRefresh

func (o *AuthTokens) GetRefresh() AuthToken

GetRefresh returns the Refresh field value

func (*AuthTokens) GetRefreshOk

func (o *AuthTokens) GetRefreshOk() (*AuthToken, bool)

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

func (AuthTokens) MarshalJSON

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

func (*AuthTokens) SetAccess

func (o *AuthTokens) SetAccess(v AuthToken)

SetAccess sets field value

func (*AuthTokens) SetRefresh

func (o *AuthTokens) SetRefresh(v AuthToken)

SetRefresh sets field value

func (AuthTokens) ToMap

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

func (*AuthTokens) UnmarshalJSON

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

type AuthValidateResponse

type AuthValidateResponse struct {
	Message *string `json:"message,omitempty"`
}

AuthValidateResponse Response for validating the authentication access token.

func NewAuthValidateResponse

func NewAuthValidateResponse() *AuthValidateResponse

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

func NewAuthValidateResponseWithDefaults

func NewAuthValidateResponseWithDefaults() *AuthValidateResponse

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

func (*AuthValidateResponse) GetMessage

func (o *AuthValidateResponse) GetMessage() string

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

func (*AuthValidateResponse) GetMessageOk

func (o *AuthValidateResponse) 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 (*AuthValidateResponse) HasMessage

func (o *AuthValidateResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (AuthValidateResponse) MarshalJSON

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

func (*AuthValidateResponse) SetMessage

func (o *AuthValidateResponse) SetMessage(v string)

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

func (AuthValidateResponse) ToMap

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

type AuthenticateResponse

type AuthenticateResponse struct {
	Tokens   *AuthTokens `json:"tokens,omitempty"`
	Refresh  *string     `json:"refresh,omitempty"`
	Validate *string     `json:"validate,omitempty"`
}

AuthenticateResponse Response for obtaining the authentication tokens.

func NewAuthenticateResponse

func NewAuthenticateResponse() *AuthenticateResponse

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

func NewAuthenticateResponseWithDefaults

func NewAuthenticateResponseWithDefaults() *AuthenticateResponse

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

func (*AuthenticateResponse) GetRefresh

func (o *AuthenticateResponse) GetRefresh() string

GetRefresh returns the Refresh field value if set, zero value otherwise.

func (*AuthenticateResponse) GetRefreshOk

func (o *AuthenticateResponse) GetRefreshOk() (*string, bool)

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

func (*AuthenticateResponse) GetTokens

func (o *AuthenticateResponse) GetTokens() AuthTokens

GetTokens returns the Tokens field value if set, zero value otherwise.

func (*AuthenticateResponse) GetTokensOk

func (o *AuthenticateResponse) GetTokensOk() (*AuthTokens, bool)

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

func (*AuthenticateResponse) GetValidate

func (o *AuthenticateResponse) GetValidate() string

GetValidate returns the Validate field value if set, zero value otherwise.

func (*AuthenticateResponse) GetValidateOk

func (o *AuthenticateResponse) GetValidateOk() (*string, bool)

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

func (*AuthenticateResponse) HasRefresh

func (o *AuthenticateResponse) HasRefresh() bool

HasRefresh returns a boolean if a field has been set.

func (*AuthenticateResponse) HasTokens

func (o *AuthenticateResponse) HasTokens() bool

HasTokens returns a boolean if a field has been set.

func (*AuthenticateResponse) HasValidate

func (o *AuthenticateResponse) HasValidate() bool

HasValidate returns a boolean if a field has been set.

func (AuthenticateResponse) MarshalJSON

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

func (*AuthenticateResponse) SetRefresh

func (o *AuthenticateResponse) SetRefresh(v string)

SetRefresh gets a reference to the given string and assigns it to the Refresh field.

func (*AuthenticateResponse) SetTokens

func (o *AuthenticateResponse) SetTokens(v AuthTokens)

SetTokens gets a reference to the given AuthTokens and assigns it to the Tokens field.

func (*AuthenticateResponse) SetValidate

func (o *AuthenticateResponse) SetValidate(v string)

SetValidate gets a reference to the given string and assigns it to the Validate field.

func (AuthenticateResponse) ToMap

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

type AuthenticationAPIService

type AuthenticationAPIService service

AuthenticationAPIService AuthenticationAPI service

func (*AuthenticationAPIService) AuthRoot

AuthRoot List the authentication-related links.

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

func (*AuthenticationAPIService) AuthRootExecute

Execute executes the request

@return LinksResponse

func (*AuthenticationAPIService) Authenticate

Authenticate Obtains access and refresh tokens using an N-central User-API Token (JWT).

<p> This method essentially uses the HTTP <a href="https://swagger.io/docs/specification/authentication/bearer-authentication/">bearer authentication</a>. To obtain the "N-central User-API Token (JWT)", visit the <a href="/">N-central UI</a>. Then navigate to Administration → User Management → Users → Click on user → API Access → GENERATE JSON WEB TOKEN. </p>

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

func (*AuthenticationAPIService) AuthenticateExecute

Execute executes the request

@return AuthenticateResponse

func (*AuthenticationAPIService) Refresh

Refresh Obtains a new API-Access token using a valid refresh token.

<p> In order to refresh the API-Access token, you must first authenticate to obtain a valid "refresh token" and include it in the request body. </p>

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

func (*AuthenticationAPIService) RefreshExecute

Execute executes the request

@return AuthRefreshResponse

func (*AuthenticationAPIService) Validate

Validate Check the validity of the API-Access token.

<p> In order to validate the API-Access token, you must first authenticate to obtain the API-Access token. </p>

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

func (*AuthenticationAPIService) ValidateExecute

Execute executes the request

@return AuthValidateResponse

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 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 CreateUserRoleRequest

type CreateUserRoleRequest struct {
	// The name of the role
	RoleName string `json:"roleName"`
	// The description of the role
	Description string `json:"description"`
	// The list of permissions
	PermissionIds []string `json:"permissionIds"`
	// The list of user IDs
	UserIds []string `json:"userIds,omitempty"`
}

CreateUserRoleRequest Request Payload for adding a new user role.

func NewCreateUserRoleRequest

func NewCreateUserRoleRequest(roleName string, description string, permissionIds []string) *CreateUserRoleRequest

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

func NewCreateUserRoleRequestWithDefaults

func NewCreateUserRoleRequestWithDefaults() *CreateUserRoleRequest

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

func (*CreateUserRoleRequest) GetDescription

func (o *CreateUserRoleRequest) GetDescription() string

GetDescription returns the Description field value

func (*CreateUserRoleRequest) GetDescriptionOk

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

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

func (*CreateUserRoleRequest) GetPermissionIds

func (o *CreateUserRoleRequest) GetPermissionIds() []string

GetPermissionIds returns the PermissionIds field value

func (*CreateUserRoleRequest) GetPermissionIdsOk

func (o *CreateUserRoleRequest) GetPermissionIdsOk() ([]string, bool)

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

func (*CreateUserRoleRequest) GetRoleName

func (o *CreateUserRoleRequest) GetRoleName() string

GetRoleName returns the RoleName field value

func (*CreateUserRoleRequest) GetRoleNameOk

func (o *CreateUserRoleRequest) GetRoleNameOk() (*string, bool)

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

func (*CreateUserRoleRequest) GetUserIds

func (o *CreateUserRoleRequest) GetUserIds() []string

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*CreateUserRoleRequest) GetUserIdsOk

func (o *CreateUserRoleRequest) GetUserIdsOk() ([]string, bool)

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

func (*CreateUserRoleRequest) HasUserIds

func (o *CreateUserRoleRequest) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (CreateUserRoleRequest) MarshalJSON

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

func (*CreateUserRoleRequest) SetDescription

func (o *CreateUserRoleRequest) SetDescription(v string)

SetDescription sets field value

func (*CreateUserRoleRequest) SetPermissionIds

func (o *CreateUserRoleRequest) SetPermissionIds(v []string)

SetPermissionIds sets field value

func (*CreateUserRoleRequest) SetRoleName

func (o *CreateUserRoleRequest) SetRoleName(v string)

SetRoleName sets field value

func (*CreateUserRoleRequest) SetUserIds

func (o *CreateUserRoleRequest) SetUserIds(v []string)

SetUserIds gets a reference to the given []string and assigns it to the UserIds field.

func (CreateUserRoleRequest) ToMap

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

func (*CreateUserRoleRequest) UnmarshalJSON

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

type CreateUserRoleResponse

type CreateUserRoleResponse struct {
	Data  *Data    `json:"data,omitempty"`
	Links []string `json:"links,omitempty"`
}

CreateUserRoleResponse Represents the response of creating a new role and contains the role ID for a newly created role.

func NewCreateUserRoleResponse

func NewCreateUserRoleResponse() *CreateUserRoleResponse

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

func NewCreateUserRoleResponseWithDefaults

func NewCreateUserRoleResponseWithDefaults() *CreateUserRoleResponse

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

func (*CreateUserRoleResponse) GetData

func (o *CreateUserRoleResponse) GetData() Data

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

func (*CreateUserRoleResponse) GetDataOk

func (o *CreateUserRoleResponse) GetDataOk() (*Data, bool)

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

func (o *CreateUserRoleResponse) GetLinks() []string

GetLinks returns the Links field value if set, zero value otherwise.

func (*CreateUserRoleResponse) GetLinksOk

func (o *CreateUserRoleResponse) GetLinksOk() ([]string, 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 (*CreateUserRoleResponse) HasData

func (o *CreateUserRoleResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *CreateUserRoleResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (CreateUserRoleResponse) MarshalJSON

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

func (*CreateUserRoleResponse) SetData

func (o *CreateUserRoleResponse) SetData(v Data)

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

func (o *CreateUserRoleResponse) SetLinks(v []string)

SetLinks gets a reference to the given []string and assigns it to the Links field.

func (CreateUserRoleResponse) ToMap

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

type CustomPropertiesAPIService

type CustomPropertiesAPIService service

CustomPropertiesAPIService CustomPropertiesAPI service

func (*CustomPropertiesAPIService) GetCustomProperty

func (a *CustomPropertiesAPIService) GetCustomProperty(ctx context.Context, orgUnitId int32, propertyId int32) ApiGetCustomPropertyRequest

GetCustomProperty PREVIEW: Get the organization unit custom property.

Get the organization unit custom property for the given organization unit id and property id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId The organization unit id.
@param propertyId The property id.
@return ApiGetCustomPropertyRequest

func (*CustomPropertiesAPIService) GetCustomPropertyExecute

Execute executes the request

@return DefaultCustomProperty

func (*CustomPropertiesAPIService) GetDeviceCustomProperty

func (a *CustomPropertiesAPIService) GetDeviceCustomProperty(ctx context.Context, deviceId int32, propertyId int32) ApiGetDeviceCustomPropertyRequest

GetDeviceCustomProperty PREVIEW: Get the device custom property.

Get the device custom property for the given device id and property id.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId The device id.
@param propertyId The property id.
@return ApiGetDeviceCustomPropertyRequest

func (*CustomPropertiesAPIService) GetDeviceCustomPropertyExecute

Execute executes the request

@return OrganizationCustomProperty

func (*CustomPropertiesAPIService) GetDeviceDefaultCustomProperty

func (a *CustomPropertiesAPIService) GetDeviceDefaultCustomProperty(ctx context.Context, orgUnitId string, propertyId string) ApiGetDeviceDefaultCustomPropertyRequest

GetDeviceDefaultCustomProperty PREVIEW: Retrieve Device Default Custom Property information by organization unit id and property id

Retrieves default custom properties information<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which information needs to be fetched
@param propertyId ID of the property for which information needs to be fetched
@return ApiGetDeviceDefaultCustomPropertyRequest

func (*CustomPropertiesAPIService) GetDeviceDefaultCustomPropertyExecute

Execute executes the request

@return DeviceCustomPropertyResponse

func (*CustomPropertiesAPIService) GetOrganizationUnitProperty

func (a *CustomPropertiesAPIService) GetOrganizationUnitProperty(ctx context.Context, orgUnitId int32, propertyId int32) ApiGetOrganizationUnitPropertyRequest

GetOrganizationUnitProperty PREVIEW: Get the organization unit custom property.

Get the organization unit custom property for the given organization unit id and property id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId The organization unit id.
@param propertyId The property id.
@return ApiGetOrganizationUnitPropertyRequest

func (*CustomPropertiesAPIService) GetOrganizationUnitPropertyExecute

Execute executes the request

@return OrganizationCustomProperty

func (*CustomPropertiesAPIService) ListCustomerProperties

func (a *CustomPropertiesAPIService) ListCustomerProperties(ctx context.Context, orgUnitId int32) ApiListCustomerPropertiesRequest

ListCustomerProperties PREVIEW: Get the list of organization custom properties.

Get the list of organization unit custom properties for the given organization unit id.

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

func (*CustomPropertiesAPIService) ListCustomerPropertiesExecute

Execute executes the request

@return ListResponseOrganizationCustomProperty

func (*CustomPropertiesAPIService) ListDeviceCustomProperties

func (a *CustomPropertiesAPIService) ListDeviceCustomProperties(ctx context.Context, deviceId string) ApiListDeviceCustomPropertiesRequest

ListDeviceCustomProperties PREVIEW: Retrieve Device Custom Properties by device id

Retrieves custom properties list for a device.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be fetched
@return ApiListDeviceCustomPropertiesRequest

func (*CustomPropertiesAPIService) ListDeviceCustomPropertiesExecute

Execute executes the request

@return ListResponseDeviceCustomProperty

func (*CustomPropertiesAPIService) ModifyDefaultOrganizationUnitProperty

func (a *CustomPropertiesAPIService) ModifyDefaultOrganizationUnitProperty(ctx context.Context, orgUnitId int32) ApiModifyDefaultOrganizationUnitPropertyRequest

ModifyDefaultOrganizationUnitProperty PREVIEW: Update the default organization unit custom property.

Update the default organization unit custom property for the given organization unit id and property id.

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

func (*CustomPropertiesAPIService) ModifyDefaultOrganizationUnitPropertyExecute

func (a *CustomPropertiesAPIService) ModifyDefaultOrganizationUnitPropertyExecute(r ApiModifyDefaultOrganizationUnitPropertyRequest) (*http.Response, error)

Execute executes the request

func (*CustomPropertiesAPIService) ModifyDeviceProperty

func (a *CustomPropertiesAPIService) ModifyDeviceProperty(ctx context.Context, deviceId string, propertyId string) ApiModifyDevicePropertyRequest

ModifyDeviceProperty PREVIEW: Modify Device Custom Property

Modifies one custom property for a device.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId Device ID to update property for.
@param propertyId Custom property ID that is associated with the device.
@return ApiModifyDevicePropertyRequest

func (*CustomPropertiesAPIService) ModifyDevicePropertyExecute

Execute executes the request

@return DevicePropertyUpdated

func (*CustomPropertiesAPIService) ModifyOrganizationUnitPropertyValue

func (a *CustomPropertiesAPIService) ModifyOrganizationUnitPropertyValue(ctx context.Context, orgUnitId int32, propertyId int32) ApiModifyOrganizationUnitPropertyValueRequest

ModifyOrganizationUnitPropertyValue PREVIEW: Update the organization unit custom property.

Update the organization unit custom property for the given organization unit id and property id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId The organization unit id.
@param propertyId The property id.
@return ApiModifyOrganizationUnitPropertyValueRequest

func (*CustomPropertiesAPIService) ModifyOrganizationUnitPropertyValueExecute

Execute executes the request

@return OrganizationPropertyUpdated

type CustomPsaTicketGetResponse

type CustomPsaTicketGetResponse struct {
	Data *CustomPsaTicketInfo `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

CustomPsaTicketGetResponse Represents the response for fetching details of a specific Custom PSA ticket.

func NewCustomPsaTicketGetResponse

func NewCustomPsaTicketGetResponse() *CustomPsaTicketGetResponse

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

func NewCustomPsaTicketGetResponseWithDefaults

func NewCustomPsaTicketGetResponseWithDefaults() *CustomPsaTicketGetResponse

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

func (*CustomPsaTicketGetResponse) GetData

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

func (*CustomPsaTicketGetResponse) GetDataOk

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

func (o *CustomPsaTicketGetResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*CustomPsaTicketGetResponse) GetLinksOk

func (o *CustomPsaTicketGetResponse) GetLinksOk() (*map[string]string, 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 (*CustomPsaTicketGetResponse) HasData

func (o *CustomPsaTicketGetResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *CustomPsaTicketGetResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (CustomPsaTicketGetResponse) MarshalJSON

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

func (*CustomPsaTicketGetResponse) SetData

SetData gets a reference to the given CustomPsaTicketInfo and assigns it to the Data field.

func (o *CustomPsaTicketGetResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (CustomPsaTicketGetResponse) ToMap

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

type CustomPsaTicketInfo

type CustomPsaTicketInfo struct {
	// The ID of the Custom PSA ticket.
	TicketId *string `json:"ticketId,omitempty"`
	// The title of the Custom PSA ticket.
	TicketTitle *string `json:"ticketTitle,omitempty"`
	// The details of the Custom PSA ticket.
	TicketDetails *string `json:"ticketDetails,omitempty"`
	// The status of the Custom PSA ticket.
	TicketStatus *string `json:"ticketStatus,omitempty"`
	// The creation date of the Custom PSA ticket.
	CreationDate *string `json:"creationDate,omitempty"`
}

CustomPsaTicketInfo Represents the response for fetching details of a specific Custom PSA ticket.

func NewCustomPsaTicketInfo

func NewCustomPsaTicketInfo() *CustomPsaTicketInfo

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

func NewCustomPsaTicketInfoWithDefaults

func NewCustomPsaTicketInfoWithDefaults() *CustomPsaTicketInfo

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

func (*CustomPsaTicketInfo) GetCreationDate

func (o *CustomPsaTicketInfo) GetCreationDate() string

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*CustomPsaTicketInfo) GetCreationDateOk

func (o *CustomPsaTicketInfo) GetCreationDateOk() (*string, bool)

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

func (*CustomPsaTicketInfo) GetTicketDetails

func (o *CustomPsaTicketInfo) GetTicketDetails() string

GetTicketDetails returns the TicketDetails field value if set, zero value otherwise.

func (*CustomPsaTicketInfo) GetTicketDetailsOk

func (o *CustomPsaTicketInfo) GetTicketDetailsOk() (*string, bool)

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

func (*CustomPsaTicketInfo) GetTicketId

func (o *CustomPsaTicketInfo) GetTicketId() string

GetTicketId returns the TicketId field value if set, zero value otherwise.

func (*CustomPsaTicketInfo) GetTicketIdOk

func (o *CustomPsaTicketInfo) GetTicketIdOk() (*string, bool)

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

func (*CustomPsaTicketInfo) GetTicketStatus

func (o *CustomPsaTicketInfo) GetTicketStatus() string

GetTicketStatus returns the TicketStatus field value if set, zero value otherwise.

func (*CustomPsaTicketInfo) GetTicketStatusOk

func (o *CustomPsaTicketInfo) GetTicketStatusOk() (*string, bool)

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

func (*CustomPsaTicketInfo) GetTicketTitle

func (o *CustomPsaTicketInfo) GetTicketTitle() string

GetTicketTitle returns the TicketTitle field value if set, zero value otherwise.

func (*CustomPsaTicketInfo) GetTicketTitleOk

func (o *CustomPsaTicketInfo) GetTicketTitleOk() (*string, bool)

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

func (*CustomPsaTicketInfo) HasCreationDate

func (o *CustomPsaTicketInfo) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*CustomPsaTicketInfo) HasTicketDetails

func (o *CustomPsaTicketInfo) HasTicketDetails() bool

HasTicketDetails returns a boolean if a field has been set.

func (*CustomPsaTicketInfo) HasTicketId

func (o *CustomPsaTicketInfo) HasTicketId() bool

HasTicketId returns a boolean if a field has been set.

func (*CustomPsaTicketInfo) HasTicketStatus

func (o *CustomPsaTicketInfo) HasTicketStatus() bool

HasTicketStatus returns a boolean if a field has been set.

func (*CustomPsaTicketInfo) HasTicketTitle

func (o *CustomPsaTicketInfo) HasTicketTitle() bool

HasTicketTitle returns a boolean if a field has been set.

func (CustomPsaTicketInfo) MarshalJSON

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

func (*CustomPsaTicketInfo) SetCreationDate

func (o *CustomPsaTicketInfo) SetCreationDate(v string)

SetCreationDate gets a reference to the given string and assigns it to the CreationDate field.

func (*CustomPsaTicketInfo) SetTicketDetails

func (o *CustomPsaTicketInfo) SetTicketDetails(v string)

SetTicketDetails gets a reference to the given string and assigns it to the TicketDetails field.

func (*CustomPsaTicketInfo) SetTicketId

func (o *CustomPsaTicketInfo) SetTicketId(v string)

SetTicketId gets a reference to the given string and assigns it to the TicketId field.

func (*CustomPsaTicketInfo) SetTicketStatus

func (o *CustomPsaTicketInfo) SetTicketStatus(v string)

SetTicketStatus gets a reference to the given string and assigns it to the TicketStatus field.

func (*CustomPsaTicketInfo) SetTicketTitle

func (o *CustomPsaTicketInfo) SetTicketTitle(v string)

SetTicketTitle gets a reference to the given string and assigns it to the TicketTitle field.

func (CustomPsaTicketInfo) ToMap

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

type Customer

type Customer struct {
	// The ID of the organization unit.
	CustomerId *string `json:"customerId,omitempty"`
	// The name of the organization unit.
	CustomerName *string `json:"customerName,omitempty"`
	// The type of the organization unit (SYSTEM, SO, CUSTOMER or SITE).
	OrgUnitType *string `json:"orgUnitType,omitempty"`
	// The ID of the parent organization unit.
	ParentId *string `json:"parentId,omitempty"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// The external ID 2 of the organization unit.
	ExternalId2 *string `json:"externalId2,omitempty"`
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode *string `json:"postalCode,omitempty"`
	// DEPRECATED: County where the organization unit is located.
	County       *string `json:"county,omitempty"`
	IsSystem     *bool   `json:"isSystem,omitempty"`
	IsServiceOrg *bool   `json:"isServiceOrg,omitempty"`
}

Customer Data object for service customer.

func NewCustomer

func NewCustomer(contactFirstName string, contactLastName string) *Customer

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

func NewCustomerWithDefaults

func NewCustomerWithDefaults() *Customer

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

func (*Customer) GetCity

func (o *Customer) GetCity() string

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

func (*Customer) GetCityOk

func (o *Customer) 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 (*Customer) GetContactDepartment

func (o *Customer) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*Customer) GetContactDepartmentOk

func (o *Customer) GetContactDepartmentOk() (*string, bool)

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

func (*Customer) GetContactEmail

func (o *Customer) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*Customer) GetContactEmailOk

func (o *Customer) GetContactEmailOk() (*string, bool)

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

func (*Customer) GetContactFirstName

func (o *Customer) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*Customer) GetContactFirstNameOk

func (o *Customer) GetContactFirstNameOk() (*string, bool)

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

func (*Customer) GetContactLastName

func (o *Customer) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*Customer) GetContactLastNameOk

func (o *Customer) GetContactLastNameOk() (*string, bool)

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

func (*Customer) GetContactPhone

func (o *Customer) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*Customer) GetContactPhoneExt

func (o *Customer) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*Customer) GetContactPhoneExtOk

func (o *Customer) GetContactPhoneExtOk() (*string, bool)

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

func (*Customer) GetContactPhoneOk

func (o *Customer) GetContactPhoneOk() (*string, bool)

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

func (*Customer) GetContactTitle

func (o *Customer) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*Customer) GetContactTitleOk

func (o *Customer) GetContactTitleOk() (*string, bool)

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

func (*Customer) GetCountry

func (o *Customer) GetCountry() string

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

func (*Customer) GetCountryOk

func (o *Customer) 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 (*Customer) GetCounty

func (o *Customer) GetCounty() string

GetCounty returns the County field value if set, zero value otherwise.

func (*Customer) GetCountyOk

func (o *Customer) GetCountyOk() (*string, bool)

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

func (*Customer) GetCustomerId

func (o *Customer) GetCustomerId() string

GetCustomerId returns the CustomerId field value if set, zero value otherwise.

func (*Customer) GetCustomerIdOk

func (o *Customer) GetCustomerIdOk() (*string, bool)

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

func (*Customer) GetCustomerName

func (o *Customer) GetCustomerName() string

GetCustomerName returns the CustomerName field value if set, zero value otherwise.

func (*Customer) GetCustomerNameOk

func (o *Customer) GetCustomerNameOk() (*string, bool)

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

func (*Customer) GetExternalId

func (o *Customer) GetExternalId() string

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

func (*Customer) GetExternalId2

func (o *Customer) GetExternalId2() string

GetExternalId2 returns the ExternalId2 field value if set, zero value otherwise.

func (*Customer) GetExternalId2Ok

func (o *Customer) GetExternalId2Ok() (*string, bool)

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

func (*Customer) GetExternalIdOk

func (o *Customer) 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 (*Customer) GetIsServiceOrg

func (o *Customer) GetIsServiceOrg() bool

GetIsServiceOrg returns the IsServiceOrg field value if set, zero value otherwise.

func (*Customer) GetIsServiceOrgOk

func (o *Customer) GetIsServiceOrgOk() (*bool, bool)

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

func (*Customer) GetIsSystem

func (o *Customer) GetIsSystem() bool

GetIsSystem returns the IsSystem field value if set, zero value otherwise.

func (*Customer) GetIsSystemOk

func (o *Customer) GetIsSystemOk() (*bool, bool)

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

func (*Customer) GetOrgUnitType

func (o *Customer) GetOrgUnitType() string

GetOrgUnitType returns the OrgUnitType field value if set, zero value otherwise.

func (*Customer) GetOrgUnitTypeOk

func (o *Customer) GetOrgUnitTypeOk() (*string, bool)

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

func (*Customer) GetParentId

func (o *Customer) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*Customer) GetParentIdOk

func (o *Customer) 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 (*Customer) GetPhone

func (o *Customer) GetPhone() string

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

func (*Customer) GetPhoneOk

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

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

func (*Customer) GetPostalCode

func (o *Customer) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*Customer) GetPostalCodeOk

func (o *Customer) GetPostalCodeOk() (*string, bool)

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

func (*Customer) GetStateProv

func (o *Customer) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*Customer) GetStateProvOk

func (o *Customer) GetStateProvOk() (*string, bool)

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

func (*Customer) GetStreet1

func (o *Customer) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*Customer) GetStreet1Ok

func (o *Customer) GetStreet1Ok() (*string, bool)

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

func (*Customer) GetStreet2

func (o *Customer) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*Customer) GetStreet2Ok

func (o *Customer) GetStreet2Ok() (*string, bool)

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

func (*Customer) HasCity

func (o *Customer) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*Customer) HasContactDepartment

func (o *Customer) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*Customer) HasContactEmail

func (o *Customer) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*Customer) HasContactPhone

func (o *Customer) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*Customer) HasContactPhoneExt

func (o *Customer) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*Customer) HasContactTitle

func (o *Customer) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*Customer) HasCountry

func (o *Customer) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Customer) HasCounty

func (o *Customer) HasCounty() bool

HasCounty returns a boolean if a field has been set.

func (*Customer) HasCustomerId

func (o *Customer) HasCustomerId() bool

HasCustomerId returns a boolean if a field has been set.

func (*Customer) HasCustomerName

func (o *Customer) HasCustomerName() bool

HasCustomerName returns a boolean if a field has been set.

func (*Customer) HasExternalId

func (o *Customer) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*Customer) HasExternalId2

func (o *Customer) HasExternalId2() bool

HasExternalId2 returns a boolean if a field has been set.

func (*Customer) HasIsServiceOrg

func (o *Customer) HasIsServiceOrg() bool

HasIsServiceOrg returns a boolean if a field has been set.

func (*Customer) HasIsSystem

func (o *Customer) HasIsSystem() bool

HasIsSystem returns a boolean if a field has been set.

func (*Customer) HasOrgUnitType

func (o *Customer) HasOrgUnitType() bool

HasOrgUnitType returns a boolean if a field has been set.

func (*Customer) HasParentId

func (o *Customer) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*Customer) HasPhone

func (o *Customer) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*Customer) HasPostalCode

func (o *Customer) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*Customer) HasStateProv

func (o *Customer) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*Customer) HasStreet1

func (o *Customer) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*Customer) HasStreet2

func (o *Customer) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (Customer) MarshalJSON

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

func (*Customer) SetCity

func (o *Customer) SetCity(v string)

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

func (*Customer) SetContactDepartment

func (o *Customer) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*Customer) SetContactEmail

func (o *Customer) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*Customer) SetContactFirstName

func (o *Customer) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*Customer) SetContactLastName

func (o *Customer) SetContactLastName(v string)

SetContactLastName sets field value

func (*Customer) SetContactPhone

func (o *Customer) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*Customer) SetContactPhoneExt

func (o *Customer) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*Customer) SetContactTitle

func (o *Customer) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*Customer) SetCountry

func (o *Customer) SetCountry(v string)

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

func (*Customer) SetCounty

func (o *Customer) SetCounty(v string)

SetCounty gets a reference to the given string and assigns it to the County field.

func (*Customer) SetCustomerId

func (o *Customer) SetCustomerId(v string)

SetCustomerId gets a reference to the given string and assigns it to the CustomerId field.

func (*Customer) SetCustomerName

func (o *Customer) SetCustomerName(v string)

SetCustomerName gets a reference to the given string and assigns it to the CustomerName field.

func (*Customer) SetExternalId

func (o *Customer) SetExternalId(v string)

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

func (*Customer) SetExternalId2

func (o *Customer) SetExternalId2(v string)

SetExternalId2 gets a reference to the given string and assigns it to the ExternalId2 field.

func (*Customer) SetIsServiceOrg

func (o *Customer) SetIsServiceOrg(v bool)

SetIsServiceOrg gets a reference to the given bool and assigns it to the IsServiceOrg field.

func (*Customer) SetIsSystem

func (o *Customer) SetIsSystem(v bool)

SetIsSystem gets a reference to the given bool and assigns it to the IsSystem field.

func (*Customer) SetOrgUnitType

func (o *Customer) SetOrgUnitType(v string)

SetOrgUnitType gets a reference to the given string and assigns it to the OrgUnitType field.

func (*Customer) SetParentId

func (o *Customer) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*Customer) SetPhone

func (o *Customer) SetPhone(v string)

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

func (*Customer) SetPostalCode

func (o *Customer) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*Customer) SetStateProv

func (o *Customer) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*Customer) SetStreet1

func (o *Customer) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*Customer) SetStreet2

func (o *Customer) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (Customer) ToMap

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

func (*Customer) UnmarshalJSON

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

type CustomerCreation

type CustomerCreation struct {
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode *string `json:"postalCode,omitempty"`
	// Name of the customer.
	CustomerName string `json:"customerName"`
	// License type of the customer.
	LicenseType *string `json:"licenseType,omitempty"`
}

CustomerCreation Data object for customer.

func NewCustomerCreation

func NewCustomerCreation(contactFirstName string, contactLastName string, customerName string) *CustomerCreation

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

func NewCustomerCreationWithDefaults

func NewCustomerCreationWithDefaults() *CustomerCreation

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

func (*CustomerCreation) GetCity

func (o *CustomerCreation) GetCity() string

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

func (*CustomerCreation) GetCityOk

func (o *CustomerCreation) 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 (*CustomerCreation) GetContactDepartment

func (o *CustomerCreation) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*CustomerCreation) GetContactDepartmentOk

func (o *CustomerCreation) GetContactDepartmentOk() (*string, bool)

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

func (*CustomerCreation) GetContactEmail

func (o *CustomerCreation) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*CustomerCreation) GetContactEmailOk

func (o *CustomerCreation) GetContactEmailOk() (*string, bool)

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

func (*CustomerCreation) GetContactFirstName

func (o *CustomerCreation) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*CustomerCreation) GetContactFirstNameOk

func (o *CustomerCreation) GetContactFirstNameOk() (*string, bool)

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

func (*CustomerCreation) GetContactLastName

func (o *CustomerCreation) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*CustomerCreation) GetContactLastNameOk

func (o *CustomerCreation) GetContactLastNameOk() (*string, bool)

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

func (*CustomerCreation) GetContactPhone

func (o *CustomerCreation) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*CustomerCreation) GetContactPhoneExt

func (o *CustomerCreation) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*CustomerCreation) GetContactPhoneExtOk

func (o *CustomerCreation) GetContactPhoneExtOk() (*string, bool)

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

func (*CustomerCreation) GetContactPhoneOk

func (o *CustomerCreation) GetContactPhoneOk() (*string, bool)

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

func (*CustomerCreation) GetContactTitle

func (o *CustomerCreation) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*CustomerCreation) GetContactTitleOk

func (o *CustomerCreation) GetContactTitleOk() (*string, bool)

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

func (*CustomerCreation) GetCountry

func (o *CustomerCreation) GetCountry() string

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

func (*CustomerCreation) GetCountryOk

func (o *CustomerCreation) 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 (*CustomerCreation) GetCustomerName

func (o *CustomerCreation) GetCustomerName() string

GetCustomerName returns the CustomerName field value

func (*CustomerCreation) GetCustomerNameOk

func (o *CustomerCreation) GetCustomerNameOk() (*string, bool)

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

func (*CustomerCreation) GetExternalId

func (o *CustomerCreation) GetExternalId() string

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

func (*CustomerCreation) GetExternalIdOk

func (o *CustomerCreation) 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 (*CustomerCreation) GetLicenseType

func (o *CustomerCreation) GetLicenseType() string

GetLicenseType returns the LicenseType field value if set, zero value otherwise.

func (*CustomerCreation) GetLicenseTypeOk

func (o *CustomerCreation) 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 (*CustomerCreation) GetPhone

func (o *CustomerCreation) GetPhone() string

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

func (*CustomerCreation) GetPhoneOk

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

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

func (*CustomerCreation) GetPostalCode

func (o *CustomerCreation) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*CustomerCreation) GetPostalCodeOk

func (o *CustomerCreation) GetPostalCodeOk() (*string, bool)

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

func (*CustomerCreation) GetStateProv

func (o *CustomerCreation) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*CustomerCreation) GetStateProvOk

func (o *CustomerCreation) GetStateProvOk() (*string, bool)

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

func (*CustomerCreation) GetStreet1

func (o *CustomerCreation) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*CustomerCreation) GetStreet1Ok

func (o *CustomerCreation) GetStreet1Ok() (*string, bool)

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

func (*CustomerCreation) GetStreet2

func (o *CustomerCreation) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*CustomerCreation) GetStreet2Ok

func (o *CustomerCreation) GetStreet2Ok() (*string, bool)

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

func (*CustomerCreation) HasCity

func (o *CustomerCreation) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*CustomerCreation) HasContactDepartment

func (o *CustomerCreation) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*CustomerCreation) HasContactEmail

func (o *CustomerCreation) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*CustomerCreation) HasContactPhone

func (o *CustomerCreation) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*CustomerCreation) HasContactPhoneExt

func (o *CustomerCreation) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*CustomerCreation) HasContactTitle

func (o *CustomerCreation) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*CustomerCreation) HasCountry

func (o *CustomerCreation) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CustomerCreation) HasExternalId

func (o *CustomerCreation) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*CustomerCreation) HasLicenseType

func (o *CustomerCreation) HasLicenseType() bool

HasLicenseType returns a boolean if a field has been set.

func (*CustomerCreation) HasPhone

func (o *CustomerCreation) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*CustomerCreation) HasPostalCode

func (o *CustomerCreation) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*CustomerCreation) HasStateProv

func (o *CustomerCreation) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*CustomerCreation) HasStreet1

func (o *CustomerCreation) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*CustomerCreation) HasStreet2

func (o *CustomerCreation) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (CustomerCreation) MarshalJSON

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

func (*CustomerCreation) SetCity

func (o *CustomerCreation) SetCity(v string)

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

func (*CustomerCreation) SetContactDepartment

func (o *CustomerCreation) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*CustomerCreation) SetContactEmail

func (o *CustomerCreation) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*CustomerCreation) SetContactFirstName

func (o *CustomerCreation) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*CustomerCreation) SetContactLastName

func (o *CustomerCreation) SetContactLastName(v string)

SetContactLastName sets field value

func (*CustomerCreation) SetContactPhone

func (o *CustomerCreation) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*CustomerCreation) SetContactPhoneExt

func (o *CustomerCreation) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*CustomerCreation) SetContactTitle

func (o *CustomerCreation) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*CustomerCreation) SetCountry

func (o *CustomerCreation) SetCountry(v string)

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

func (*CustomerCreation) SetCustomerName

func (o *CustomerCreation) SetCustomerName(v string)

SetCustomerName sets field value

func (*CustomerCreation) SetExternalId

func (o *CustomerCreation) SetExternalId(v string)

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

func (*CustomerCreation) SetLicenseType

func (o *CustomerCreation) SetLicenseType(v string)

SetLicenseType gets a reference to the given string and assigns it to the LicenseType field.

func (*CustomerCreation) SetPhone

func (o *CustomerCreation) SetPhone(v string)

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

func (*CustomerCreation) SetPostalCode

func (o *CustomerCreation) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*CustomerCreation) SetStateProv

func (o *CustomerCreation) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*CustomerCreation) SetStreet1

func (o *CustomerCreation) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*CustomerCreation) SetStreet2

func (o *CustomerCreation) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (CustomerCreation) ToMap

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

func (*CustomerCreation) UnmarshalJSON

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

type Data

type Data struct {
	// Contains the results of the PSA credentials validation.
	IsPsaCredentialsValid *bool `json:"isPsaCredentialsValid,omitempty"`
}

Data struct for Data

func NewData

func NewData() *Data

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

func NewDataWithDefaults

func NewDataWithDefaults() *Data

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

func (*Data) GetIsPsaCredentialsValid

func (o *Data) GetIsPsaCredentialsValid() bool

GetIsPsaCredentialsValid returns the IsPsaCredentialsValid field value if set, zero value otherwise.

func (*Data) GetIsPsaCredentialsValidOk

func (o *Data) GetIsPsaCredentialsValidOk() (*bool, bool)

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

func (*Data) HasIsPsaCredentialsValid

func (o *Data) HasIsPsaCredentialsValid() bool

HasIsPsaCredentialsValid returns a boolean if a field has been set.

func (Data) MarshalJSON

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

func (*Data) SetIsPsaCredentialsValid

func (o *Data) SetIsPsaCredentialsValid(v bool)

SetIsPsaCredentialsValid gets a reference to the given bool and assigns it to the IsPsaCredentialsValid field.

func (Data) ToMap

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

type DefaultCustomProperty

type DefaultCustomProperty struct {
	// The property id.
	PropertyId *int32 `json:"propertyId,omitempty"`
	// The property name.
	PropertyName *string `json:"propertyName,omitempty"`
	// The ID of the 'Home' organization unit at which the custom property was created.
	OrgUnitId *int32 `json:"orgUnitId,omitempty"`
	// The property level (ORGANIZATION_UNIT/DEVICE).
	Level *string `json:"level,omitempty"`
	// The property type.
	PropertyType *string `json:"propertyType,omitempty"`
	// The way how the property value changes are propagated down the organization unit hierarchy.
	PropagationType *string `json:"propagationType,omitempty"`
	// The default value of the property.
	DefaultValue *string `json:"defaultValue,omitempty"`
	// The entire list of organization unit IDs to which the custom property is applicable. The list includes the 'Home' organization unit and all its child organization units.
	SelectedOrgUnitIds []int32 `json:"selectedOrgUnitIds,omitempty"`
	// The list of allowed values for the property, if the property type is ENUMERATED.
	EnumeratedValueList []string `json:"enumeratedValueList,omitempty"`
}

DefaultCustomProperty The default custom property (DEVICE/ORGANIZATION_UNIT).

func NewDefaultCustomProperty

func NewDefaultCustomProperty() *DefaultCustomProperty

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

func NewDefaultCustomPropertyWithDefaults

func NewDefaultCustomPropertyWithDefaults() *DefaultCustomProperty

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

func (*DefaultCustomProperty) GetDefaultValue

func (o *DefaultCustomProperty) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetDefaultValueOk

func (o *DefaultCustomProperty) GetDefaultValueOk() (*string, bool)

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

func (*DefaultCustomProperty) GetEnumeratedValueList

func (o *DefaultCustomProperty) GetEnumeratedValueList() []string

GetEnumeratedValueList returns the EnumeratedValueList field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetEnumeratedValueListOk

func (o *DefaultCustomProperty) GetEnumeratedValueListOk() ([]string, bool)

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

func (*DefaultCustomProperty) GetLevel

func (o *DefaultCustomProperty) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetLevelOk

func (o *DefaultCustomProperty) GetLevelOk() (*string, bool)

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

func (*DefaultCustomProperty) GetOrgUnitId

func (o *DefaultCustomProperty) GetOrgUnitId() int32

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetOrgUnitIdOk

func (o *DefaultCustomProperty) GetOrgUnitIdOk() (*int32, bool)

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

func (*DefaultCustomProperty) GetPropagationType

func (o *DefaultCustomProperty) GetPropagationType() string

GetPropagationType returns the PropagationType field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetPropagationTypeOk

func (o *DefaultCustomProperty) GetPropagationTypeOk() (*string, bool)

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

func (*DefaultCustomProperty) GetPropertyId

func (o *DefaultCustomProperty) GetPropertyId() int32

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetPropertyIdOk

func (o *DefaultCustomProperty) GetPropertyIdOk() (*int32, bool)

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

func (*DefaultCustomProperty) GetPropertyName

func (o *DefaultCustomProperty) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetPropertyNameOk

func (o *DefaultCustomProperty) GetPropertyNameOk() (*string, bool)

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

func (*DefaultCustomProperty) GetPropertyType

func (o *DefaultCustomProperty) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetPropertyTypeOk

func (o *DefaultCustomProperty) GetPropertyTypeOk() (*string, bool)

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

func (*DefaultCustomProperty) GetSelectedOrgUnitIds

func (o *DefaultCustomProperty) GetSelectedOrgUnitIds() []int32

GetSelectedOrgUnitIds returns the SelectedOrgUnitIds field value if set, zero value otherwise.

func (*DefaultCustomProperty) GetSelectedOrgUnitIdsOk

func (o *DefaultCustomProperty) GetSelectedOrgUnitIdsOk() ([]int32, bool)

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

func (*DefaultCustomProperty) HasDefaultValue

func (o *DefaultCustomProperty) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasEnumeratedValueList

func (o *DefaultCustomProperty) HasEnumeratedValueList() bool

HasEnumeratedValueList returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasLevel

func (o *DefaultCustomProperty) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasOrgUnitId

func (o *DefaultCustomProperty) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasPropagationType

func (o *DefaultCustomProperty) HasPropagationType() bool

HasPropagationType returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasPropertyId

func (o *DefaultCustomProperty) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasPropertyName

func (o *DefaultCustomProperty) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasPropertyType

func (o *DefaultCustomProperty) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*DefaultCustomProperty) HasSelectedOrgUnitIds

func (o *DefaultCustomProperty) HasSelectedOrgUnitIds() bool

HasSelectedOrgUnitIds returns a boolean if a field has been set.

func (DefaultCustomProperty) MarshalJSON

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

func (*DefaultCustomProperty) SetDefaultValue

func (o *DefaultCustomProperty) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*DefaultCustomProperty) SetEnumeratedValueList

func (o *DefaultCustomProperty) SetEnumeratedValueList(v []string)

SetEnumeratedValueList gets a reference to the given []string and assigns it to the EnumeratedValueList field.

func (*DefaultCustomProperty) SetLevel

func (o *DefaultCustomProperty) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*DefaultCustomProperty) SetOrgUnitId

func (o *DefaultCustomProperty) SetOrgUnitId(v int32)

SetOrgUnitId gets a reference to the given int32 and assigns it to the OrgUnitId field.

func (*DefaultCustomProperty) SetPropagationType

func (o *DefaultCustomProperty) SetPropagationType(v string)

SetPropagationType gets a reference to the given string and assigns it to the PropagationType field.

func (*DefaultCustomProperty) SetPropertyId

func (o *DefaultCustomProperty) SetPropertyId(v int32)

SetPropertyId gets a reference to the given int32 and assigns it to the PropertyId field.

func (*DefaultCustomProperty) SetPropertyName

func (o *DefaultCustomProperty) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*DefaultCustomProperty) SetPropertyType

func (o *DefaultCustomProperty) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*DefaultCustomProperty) SetSelectedOrgUnitIds

func (o *DefaultCustomProperty) SetSelectedOrgUnitIds(v []int32)

SetSelectedOrgUnitIds gets a reference to the given []int32 and assigns it to the SelectedOrgUnitIds field.

func (DefaultCustomProperty) ToMap

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

type DefaultCustomPropertyModifyRequest

type DefaultCustomPropertyModifyRequest struct {
	// A boolean flag to specify whether to propagate changes to children Organization Units.
	Propagate *bool `json:"propagate,omitempty"`
	// The property id.
	PropertyId *int32 `json:"propertyId,omitempty"`
	// The property name.
	PropertyName *string `json:"propertyName,omitempty"`
	// The way how the property value changes are propagated down the organization unit hierarchy.
	PropagationType *string `json:"propagationType,omitempty"`
	// The default value of the property.
	DefaultValue *string `json:"defaultValue,omitempty"`
	// The entire list of organization unit IDs to which the custom property is applicable. The list includes the 'Home' organization unit and all its child organization units.
	SelectedOrgUnitIds []int32 `json:"selectedOrgUnitIds,omitempty"`
	// The list of allowed values for the property, if the property type is ENUMERATED.
	EnumeratedValueList []string `json:"enumeratedValueList,omitempty"`
}

DefaultCustomPropertyModifyRequest The request body for default custom property (DEVICE/ORGANIZATION_UNIT).

func NewDefaultCustomPropertyModifyRequest

func NewDefaultCustomPropertyModifyRequest() *DefaultCustomPropertyModifyRequest

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

func NewDefaultCustomPropertyModifyRequestWithDefaults

func NewDefaultCustomPropertyModifyRequestWithDefaults() *DefaultCustomPropertyModifyRequest

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

func (*DefaultCustomPropertyModifyRequest) GetDefaultValue

func (o *DefaultCustomPropertyModifyRequest) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetDefaultValueOk

func (o *DefaultCustomPropertyModifyRequest) GetDefaultValueOk() (*string, bool)

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

func (*DefaultCustomPropertyModifyRequest) GetEnumeratedValueList

func (o *DefaultCustomPropertyModifyRequest) GetEnumeratedValueList() []string

GetEnumeratedValueList returns the EnumeratedValueList field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetEnumeratedValueListOk

func (o *DefaultCustomPropertyModifyRequest) GetEnumeratedValueListOk() ([]string, bool)

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

func (*DefaultCustomPropertyModifyRequest) GetPropagate

func (o *DefaultCustomPropertyModifyRequest) GetPropagate() bool

GetPropagate returns the Propagate field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetPropagateOk

func (o *DefaultCustomPropertyModifyRequest) GetPropagateOk() (*bool, bool)

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

func (*DefaultCustomPropertyModifyRequest) GetPropagationType

func (o *DefaultCustomPropertyModifyRequest) GetPropagationType() string

GetPropagationType returns the PropagationType field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetPropagationTypeOk

func (o *DefaultCustomPropertyModifyRequest) GetPropagationTypeOk() (*string, bool)

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

func (*DefaultCustomPropertyModifyRequest) GetPropertyId

func (o *DefaultCustomPropertyModifyRequest) GetPropertyId() int32

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetPropertyIdOk

func (o *DefaultCustomPropertyModifyRequest) GetPropertyIdOk() (*int32, bool)

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

func (*DefaultCustomPropertyModifyRequest) GetPropertyName

func (o *DefaultCustomPropertyModifyRequest) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetPropertyNameOk

func (o *DefaultCustomPropertyModifyRequest) GetPropertyNameOk() (*string, bool)

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

func (*DefaultCustomPropertyModifyRequest) GetSelectedOrgUnitIds

func (o *DefaultCustomPropertyModifyRequest) GetSelectedOrgUnitIds() []int32

GetSelectedOrgUnitIds returns the SelectedOrgUnitIds field value if set, zero value otherwise.

func (*DefaultCustomPropertyModifyRequest) GetSelectedOrgUnitIdsOk

func (o *DefaultCustomPropertyModifyRequest) GetSelectedOrgUnitIdsOk() ([]int32, bool)

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

func (*DefaultCustomPropertyModifyRequest) HasDefaultValue

func (o *DefaultCustomPropertyModifyRequest) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*DefaultCustomPropertyModifyRequest) HasEnumeratedValueList

func (o *DefaultCustomPropertyModifyRequest) HasEnumeratedValueList() bool

HasEnumeratedValueList returns a boolean if a field has been set.

func (*DefaultCustomPropertyModifyRequest) HasPropagate

func (o *DefaultCustomPropertyModifyRequest) HasPropagate() bool

HasPropagate returns a boolean if a field has been set.

func (*DefaultCustomPropertyModifyRequest) HasPropagationType

func (o *DefaultCustomPropertyModifyRequest) HasPropagationType() bool

HasPropagationType returns a boolean if a field has been set.

func (*DefaultCustomPropertyModifyRequest) HasPropertyId

func (o *DefaultCustomPropertyModifyRequest) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*DefaultCustomPropertyModifyRequest) HasPropertyName

func (o *DefaultCustomPropertyModifyRequest) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*DefaultCustomPropertyModifyRequest) HasSelectedOrgUnitIds

func (o *DefaultCustomPropertyModifyRequest) HasSelectedOrgUnitIds() bool

HasSelectedOrgUnitIds returns a boolean if a field has been set.

func (DefaultCustomPropertyModifyRequest) MarshalJSON

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

func (*DefaultCustomPropertyModifyRequest) SetDefaultValue

func (o *DefaultCustomPropertyModifyRequest) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*DefaultCustomPropertyModifyRequest) SetEnumeratedValueList

func (o *DefaultCustomPropertyModifyRequest) SetEnumeratedValueList(v []string)

SetEnumeratedValueList gets a reference to the given []string and assigns it to the EnumeratedValueList field.

func (*DefaultCustomPropertyModifyRequest) SetPropagate

func (o *DefaultCustomPropertyModifyRequest) SetPropagate(v bool)

SetPropagate gets a reference to the given bool and assigns it to the Propagate field.

func (*DefaultCustomPropertyModifyRequest) SetPropagationType

func (o *DefaultCustomPropertyModifyRequest) SetPropagationType(v string)

SetPropagationType gets a reference to the given string and assigns it to the PropagationType field.

func (*DefaultCustomPropertyModifyRequest) SetPropertyId

func (o *DefaultCustomPropertyModifyRequest) SetPropertyId(v int32)

SetPropertyId gets a reference to the given int32 and assigns it to the PropertyId field.

func (*DefaultCustomPropertyModifyRequest) SetPropertyName

func (o *DefaultCustomPropertyModifyRequest) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*DefaultCustomPropertyModifyRequest) SetSelectedOrgUnitIds

func (o *DefaultCustomPropertyModifyRequest) SetSelectedOrgUnitIds(v []int32)

SetSelectedOrgUnitIds gets a reference to the given []int32 and assigns it to the SelectedOrgUnitIds field.

func (DefaultCustomPropertyModifyRequest) ToMap

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

type DefaultDeviceCustomProperty

type DefaultDeviceCustomProperty struct {
	PropertyId       *int32                                `json:"propertyId,omitempty"`
	CustomerId       *int32                                `json:"customerId,omitempty"`
	PropertyName     *string                               `json:"propertyName,omitempty"`
	PropertyLevel    *string                               `json:"propertyLevel,omitempty"`
	PropertyType     *string                               `json:"propertyType,omitempty"`
	Value            *string                               `json:"value,omitempty"`
	EnumeratedValues []DeviceCustomPropertyEnumeratedValue `json:"enumeratedValues,omitempty"`
	DeviceClasses    []string                              `json:"deviceClasses,omitempty"`
	SupportedOs      []string                              `json:"supportedOs,omitempty"`
}

DefaultDeviceCustomProperty Response for default custom property.

func NewDefaultDeviceCustomProperty

func NewDefaultDeviceCustomProperty() *DefaultDeviceCustomProperty

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

func NewDefaultDeviceCustomPropertyWithDefaults

func NewDefaultDeviceCustomPropertyWithDefaults() *DefaultDeviceCustomProperty

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

func (*DefaultDeviceCustomProperty) GetCustomerId

func (o *DefaultDeviceCustomProperty) GetCustomerId() int32

GetCustomerId returns the CustomerId field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetCustomerIdOk

func (o *DefaultDeviceCustomProperty) GetCustomerIdOk() (*int32, bool)

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

func (*DefaultDeviceCustomProperty) GetDeviceClasses

func (o *DefaultDeviceCustomProperty) GetDeviceClasses() []string

GetDeviceClasses returns the DeviceClasses field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetDeviceClassesOk

func (o *DefaultDeviceCustomProperty) GetDeviceClassesOk() ([]string, bool)

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

func (*DefaultDeviceCustomProperty) GetEnumeratedValues

GetEnumeratedValues returns the EnumeratedValues field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetEnumeratedValuesOk

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

func (*DefaultDeviceCustomProperty) GetPropertyId

func (o *DefaultDeviceCustomProperty) GetPropertyId() int32

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetPropertyIdOk

func (o *DefaultDeviceCustomProperty) GetPropertyIdOk() (*int32, bool)

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

func (*DefaultDeviceCustomProperty) GetPropertyLevel

func (o *DefaultDeviceCustomProperty) GetPropertyLevel() string

GetPropertyLevel returns the PropertyLevel field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetPropertyLevelOk

func (o *DefaultDeviceCustomProperty) GetPropertyLevelOk() (*string, bool)

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

func (*DefaultDeviceCustomProperty) GetPropertyName

func (o *DefaultDeviceCustomProperty) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetPropertyNameOk

func (o *DefaultDeviceCustomProperty) GetPropertyNameOk() (*string, bool)

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

func (*DefaultDeviceCustomProperty) GetPropertyType

func (o *DefaultDeviceCustomProperty) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetPropertyTypeOk

func (o *DefaultDeviceCustomProperty) GetPropertyTypeOk() (*string, bool)

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

func (*DefaultDeviceCustomProperty) GetSupportedOs

func (o *DefaultDeviceCustomProperty) GetSupportedOs() []string

GetSupportedOs returns the SupportedOs field value if set, zero value otherwise.

func (*DefaultDeviceCustomProperty) GetSupportedOsOk

func (o *DefaultDeviceCustomProperty) GetSupportedOsOk() ([]string, bool)

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

func (*DefaultDeviceCustomProperty) GetValue

func (o *DefaultDeviceCustomProperty) GetValue() string

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

func (*DefaultDeviceCustomProperty) GetValueOk

func (o *DefaultDeviceCustomProperty) 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 (*DefaultDeviceCustomProperty) HasCustomerId

func (o *DefaultDeviceCustomProperty) HasCustomerId() bool

HasCustomerId returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasDeviceClasses

func (o *DefaultDeviceCustomProperty) HasDeviceClasses() bool

HasDeviceClasses returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasEnumeratedValues

func (o *DefaultDeviceCustomProperty) HasEnumeratedValues() bool

HasEnumeratedValues returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasPropertyId

func (o *DefaultDeviceCustomProperty) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasPropertyLevel

func (o *DefaultDeviceCustomProperty) HasPropertyLevel() bool

HasPropertyLevel returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasPropertyName

func (o *DefaultDeviceCustomProperty) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasPropertyType

func (o *DefaultDeviceCustomProperty) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasSupportedOs

func (o *DefaultDeviceCustomProperty) HasSupportedOs() bool

HasSupportedOs returns a boolean if a field has been set.

func (*DefaultDeviceCustomProperty) HasValue

func (o *DefaultDeviceCustomProperty) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DefaultDeviceCustomProperty) MarshalJSON

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

func (*DefaultDeviceCustomProperty) SetCustomerId

func (o *DefaultDeviceCustomProperty) SetCustomerId(v int32)

SetCustomerId gets a reference to the given int32 and assigns it to the CustomerId field.

func (*DefaultDeviceCustomProperty) SetDeviceClasses

func (o *DefaultDeviceCustomProperty) SetDeviceClasses(v []string)

SetDeviceClasses gets a reference to the given []string and assigns it to the DeviceClasses field.

func (*DefaultDeviceCustomProperty) SetEnumeratedValues

SetEnumeratedValues gets a reference to the given []DeviceCustomPropertyEnumeratedValue and assigns it to the EnumeratedValues field.

func (*DefaultDeviceCustomProperty) SetPropertyId

func (o *DefaultDeviceCustomProperty) SetPropertyId(v int32)

SetPropertyId gets a reference to the given int32 and assigns it to the PropertyId field.

func (*DefaultDeviceCustomProperty) SetPropertyLevel

func (o *DefaultDeviceCustomProperty) SetPropertyLevel(v string)

SetPropertyLevel gets a reference to the given string and assigns it to the PropertyLevel field.

func (*DefaultDeviceCustomProperty) SetPropertyName

func (o *DefaultDeviceCustomProperty) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*DefaultDeviceCustomProperty) SetPropertyType

func (o *DefaultDeviceCustomProperty) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*DefaultDeviceCustomProperty) SetSupportedOs

func (o *DefaultDeviceCustomProperty) SetSupportedOs(v []string)

SetSupportedOs gets a reference to the given []string and assigns it to the SupportedOs field.

func (*DefaultDeviceCustomProperty) SetValue

func (o *DefaultDeviceCustomProperty) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (DefaultDeviceCustomProperty) ToMap

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

type DetailsResponse

type DetailsResponse struct {
	// ID of the task.
	TaskId *int32 `json:"taskId,omitempty"`
	// ID of the device.
	DeviceId *int32 `json:"deviceId,omitempty"`
	// Name of the device.
	DeviceName *string `json:"deviceName,omitempty"`
	// Name of the task.
	TaskName *string `json:"taskName,omitempty"`
	// Status of the task.
	Status *string `json:"status,omitempty"`
	// Output of the task.
	Output *string `json:"output,omitempty"`
	// Message of the task.
	Message *string `json:"message,omitempty"`
	// Output file name.
	OutputFileName *string `json:"outputFileName,omitempty"`
}

DetailsResponse Details response for a task.

func NewDetailsResponse

func NewDetailsResponse() *DetailsResponse

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

func NewDetailsResponseWithDefaults

func NewDetailsResponseWithDefaults() *DetailsResponse

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

func (*DetailsResponse) GetDeviceId

func (o *DetailsResponse) GetDeviceId() int32

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

func (*DetailsResponse) GetDeviceIdOk

func (o *DetailsResponse) GetDeviceIdOk() (*int32, 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 (*DetailsResponse) GetDeviceName

func (o *DetailsResponse) GetDeviceName() string

GetDeviceName returns the DeviceName field value if set, zero value otherwise.

func (*DetailsResponse) GetDeviceNameOk

func (o *DetailsResponse) 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 (*DetailsResponse) GetMessage

func (o *DetailsResponse) GetMessage() string

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

func (*DetailsResponse) GetMessageOk

func (o *DetailsResponse) 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 (*DetailsResponse) GetOutput

func (o *DetailsResponse) GetOutput() string

GetOutput returns the Output field value if set, zero value otherwise.

func (*DetailsResponse) GetOutputFileName

func (o *DetailsResponse) GetOutputFileName() string

GetOutputFileName returns the OutputFileName field value if set, zero value otherwise.

func (*DetailsResponse) GetOutputFileNameOk

func (o *DetailsResponse) GetOutputFileNameOk() (*string, bool)

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

func (*DetailsResponse) GetOutputOk

func (o *DetailsResponse) GetOutputOk() (*string, bool)

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

func (*DetailsResponse) GetStatus

func (o *DetailsResponse) GetStatus() string

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

func (*DetailsResponse) GetStatusOk

func (o *DetailsResponse) 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 (*DetailsResponse) GetTaskId

func (o *DetailsResponse) GetTaskId() int32

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*DetailsResponse) GetTaskIdOk

func (o *DetailsResponse) GetTaskIdOk() (*int32, bool)

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

func (*DetailsResponse) GetTaskName

func (o *DetailsResponse) GetTaskName() string

GetTaskName returns the TaskName field value if set, zero value otherwise.

func (*DetailsResponse) GetTaskNameOk

func (o *DetailsResponse) GetTaskNameOk() (*string, bool)

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

func (*DetailsResponse) HasDeviceId

func (o *DetailsResponse) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*DetailsResponse) HasDeviceName

func (o *DetailsResponse) HasDeviceName() bool

HasDeviceName returns a boolean if a field has been set.

func (*DetailsResponse) HasMessage

func (o *DetailsResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DetailsResponse) HasOutput

func (o *DetailsResponse) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (*DetailsResponse) HasOutputFileName

func (o *DetailsResponse) HasOutputFileName() bool

HasOutputFileName returns a boolean if a field has been set.

func (*DetailsResponse) HasStatus

func (o *DetailsResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DetailsResponse) HasTaskId

func (o *DetailsResponse) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*DetailsResponse) HasTaskName

func (o *DetailsResponse) HasTaskName() bool

HasTaskName returns a boolean if a field has been set.

func (DetailsResponse) MarshalJSON

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

func (*DetailsResponse) SetDeviceId

func (o *DetailsResponse) SetDeviceId(v int32)

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

func (*DetailsResponse) SetDeviceName

func (o *DetailsResponse) SetDeviceName(v string)

SetDeviceName gets a reference to the given string and assigns it to the DeviceName field.

func (*DetailsResponse) SetMessage

func (o *DetailsResponse) SetMessage(v string)

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

func (*DetailsResponse) SetOutput

func (o *DetailsResponse) SetOutput(v string)

SetOutput gets a reference to the given string and assigns it to the Output field.

func (*DetailsResponse) SetOutputFileName

func (o *DetailsResponse) SetOutputFileName(v string)

SetOutputFileName gets a reference to the given string and assigns it to the OutputFileName field.

func (*DetailsResponse) SetStatus

func (o *DetailsResponse) SetStatus(v string)

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

func (*DetailsResponse) SetTaskId

func (o *DetailsResponse) SetTaskId(v int32)

SetTaskId gets a reference to the given int32 and assigns it to the TaskId field.

func (*DetailsResponse) SetTaskName

func (o *DetailsResponse) SetTaskName(v string)

SetTaskName gets a reference to the given string and assigns it to the TaskName field.

func (DetailsResponse) ToMap

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

type Device

type Device struct {
	DeviceId         *int32  `json:"deviceId,omitempty"`
	Uri              *string `json:"uri,omitempty"`
	RemoteControlUri *string `json:"remoteControlUri,omitempty"`
	SourceUri        *string `json:"sourceUri,omitempty"`
	LongName         *string `json:"longName,omitempty"`
	DeviceClass      *string `json:"deviceClass,omitempty"`
	Description      *string `json:"description,omitempty"`
	IsProbe          *bool   `json:"isProbe,omitempty"`
	OsId             *string `json:"osId,omitempty"`
	SupportedOs      *string `json:"supportedOs,omitempty"`
	DiscoveredName   *string `json:"discoveredName,omitempty"`
	DeviceClassLabel *string `json:"deviceClassLabel,omitempty"`
	SupportedOsLabel *string `json:"supportedOsLabel,omitempty"`
	LastLoggedInUser *string `json:"lastLoggedInUser,omitempty"`
	StillLoggedIn    *string `json:"stillLoggedIn,omitempty"`
	LicenseMode      *string `json:"licenseMode,omitempty"`
	OrgUnitId        *int32  `json:"orgUnitId,omitempty"`
	SoId             *int32  `json:"soId,omitempty"`
	SoName           *string `json:"soName,omitempty"`
	CustomerId       *int32  `json:"customerId,omitempty"`
	CustomerName     *string `json:"customerName,omitempty"`
	SiteId           *int32  `json:"siteId,omitempty"`
	SiteName         *string `json:"siteName,omitempty"`
	// Last check-in time of the agent. This field is optional and will only be included if the value is non-null.
	LastApplianceCheckinTime *string `json:"lastApplianceCheckinTime,omitempty"`
}

Device Response for list of devices.

func NewDevice

func NewDevice() *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) GetCustomerId

func (o *Device) GetCustomerId() int32

GetCustomerId returns the CustomerId field value if set, zero value otherwise.

func (*Device) GetCustomerIdOk

func (o *Device) GetCustomerIdOk() (*int32, bool)

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

func (*Device) GetCustomerName

func (o *Device) GetCustomerName() string

GetCustomerName returns the CustomerName field value if set, zero value otherwise.

func (*Device) GetCustomerNameOk

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

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

func (*Device) GetDescription

func (o *Device) GetDescription() string

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

func (*Device) GetDescriptionOk

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

func (o *Device) GetDeviceClass() string

GetDeviceClass returns the DeviceClass field value if set, zero value otherwise.

func (*Device) GetDeviceClassLabel

func (o *Device) GetDeviceClassLabel() string

GetDeviceClassLabel returns the DeviceClassLabel field value if set, zero value otherwise.

func (*Device) GetDeviceClassLabelOk

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

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

func (*Device) GetDeviceClassOk

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

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

func (*Device) GetDeviceId

func (o *Device) GetDeviceId() int32

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

func (*Device) GetDeviceIdOk

func (o *Device) GetDeviceIdOk() (*int32, 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 (*Device) GetDiscoveredName

func (o *Device) GetDiscoveredName() string

GetDiscoveredName returns the DiscoveredName field value if set, zero value otherwise.

func (*Device) GetDiscoveredNameOk

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

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

func (*Device) GetIsProbe

func (o *Device) GetIsProbe() bool

GetIsProbe returns the IsProbe field value if set, zero value otherwise.

func (*Device) GetIsProbeOk

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

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

func (*Device) GetLastApplianceCheckinTime

func (o *Device) GetLastApplianceCheckinTime() string

GetLastApplianceCheckinTime returns the LastApplianceCheckinTime field value if set, zero value otherwise.

func (*Device) GetLastApplianceCheckinTimeOk

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

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

func (*Device) GetLastLoggedInUser

func (o *Device) GetLastLoggedInUser() string

GetLastLoggedInUser returns the LastLoggedInUser field value if set, zero value otherwise.

func (*Device) GetLastLoggedInUserOk

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

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

func (*Device) GetLicenseMode

func (o *Device) GetLicenseMode() string

GetLicenseMode returns the LicenseMode field value if set, zero value otherwise.

func (*Device) GetLicenseModeOk

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

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

func (*Device) GetLongName

func (o *Device) GetLongName() string

GetLongName returns the LongName field value if set, zero value otherwise.

func (*Device) GetLongNameOk

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

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

func (*Device) GetOrgUnitId

func (o *Device) GetOrgUnitId() int32

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*Device) GetOrgUnitIdOk

func (o *Device) GetOrgUnitIdOk() (*int32, bool)

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

func (*Device) GetOsId

func (o *Device) GetOsId() string

GetOsId returns the OsId field value if set, zero value otherwise.

func (*Device) GetOsIdOk

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

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

func (*Device) GetRemoteControlUri

func (o *Device) GetRemoteControlUri() string

GetRemoteControlUri returns the RemoteControlUri field value if set, zero value otherwise.

func (*Device) GetRemoteControlUriOk

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

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

func (*Device) GetSiteId

func (o *Device) GetSiteId() int32

GetSiteId returns the SiteId field value if set, zero value otherwise.

func (*Device) GetSiteIdOk

func (o *Device) GetSiteIdOk() (*int32, bool)

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

func (*Device) GetSiteName

func (o *Device) GetSiteName() string

GetSiteName returns the SiteName field value if set, zero value otherwise.

func (*Device) GetSiteNameOk

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

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

func (*Device) GetSoId

func (o *Device) GetSoId() int32

GetSoId returns the SoId field value if set, zero value otherwise.

func (*Device) GetSoIdOk

func (o *Device) GetSoIdOk() (*int32, bool)

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

func (*Device) GetSoName

func (o *Device) GetSoName() string

GetSoName returns the SoName field value if set, zero value otherwise.

func (*Device) GetSoNameOk

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

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

func (*Device) GetSourceUri

func (o *Device) GetSourceUri() string

GetSourceUri returns the SourceUri field value if set, zero value otherwise.

func (*Device) GetSourceUriOk

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

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

func (*Device) GetStillLoggedIn

func (o *Device) GetStillLoggedIn() string

GetStillLoggedIn returns the StillLoggedIn field value if set, zero value otherwise.

func (*Device) GetStillLoggedInOk

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

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

func (*Device) GetSupportedOs

func (o *Device) GetSupportedOs() string

GetSupportedOs returns the SupportedOs field value if set, zero value otherwise.

func (*Device) GetSupportedOsLabel

func (o *Device) GetSupportedOsLabel() string

GetSupportedOsLabel returns the SupportedOsLabel field value if set, zero value otherwise.

func (*Device) GetSupportedOsLabelOk

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

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

func (*Device) GetSupportedOsOk

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

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

func (*Device) GetUri

func (o *Device) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*Device) GetUriOk

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

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

func (*Device) HasCustomerId

func (o *Device) HasCustomerId() bool

HasCustomerId returns a boolean if a field has been set.

func (*Device) HasCustomerName

func (o *Device) HasCustomerName() bool

HasCustomerName returns a boolean if a field has been set.

func (*Device) HasDescription

func (o *Device) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Device) HasDeviceClass

func (o *Device) HasDeviceClass() bool

HasDeviceClass returns a boolean if a field has been set.

func (*Device) HasDeviceClassLabel

func (o *Device) HasDeviceClassLabel() bool

HasDeviceClassLabel returns a boolean if a field has been set.

func (*Device) HasDeviceId

func (o *Device) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*Device) HasDiscoveredName

func (o *Device) HasDiscoveredName() bool

HasDiscoveredName returns a boolean if a field has been set.

func (*Device) HasIsProbe

func (o *Device) HasIsProbe() bool

HasIsProbe returns a boolean if a field has been set.

func (*Device) HasLastApplianceCheckinTime

func (o *Device) HasLastApplianceCheckinTime() bool

HasLastApplianceCheckinTime returns a boolean if a field has been set.

func (*Device) HasLastLoggedInUser

func (o *Device) HasLastLoggedInUser() bool

HasLastLoggedInUser returns a boolean if a field has been set.

func (*Device) HasLicenseMode

func (o *Device) HasLicenseMode() bool

HasLicenseMode returns a boolean if a field has been set.

func (*Device) HasLongName

func (o *Device) HasLongName() bool

HasLongName returns a boolean if a field has been set.

func (*Device) HasOrgUnitId

func (o *Device) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*Device) HasOsId

func (o *Device) HasOsId() bool

HasOsId returns a boolean if a field has been set.

func (*Device) HasRemoteControlUri

func (o *Device) HasRemoteControlUri() bool

HasRemoteControlUri returns a boolean if a field has been set.

func (*Device) HasSiteId

func (o *Device) HasSiteId() bool

HasSiteId returns a boolean if a field has been set.

func (*Device) HasSiteName

func (o *Device) HasSiteName() bool

HasSiteName returns a boolean if a field has been set.

func (*Device) HasSoId

func (o *Device) HasSoId() bool

HasSoId returns a boolean if a field has been set.

func (*Device) HasSoName

func (o *Device) HasSoName() bool

HasSoName returns a boolean if a field has been set.

func (*Device) HasSourceUri

func (o *Device) HasSourceUri() bool

HasSourceUri returns a boolean if a field has been set.

func (*Device) HasStillLoggedIn

func (o *Device) HasStillLoggedIn() bool

HasStillLoggedIn returns a boolean if a field has been set.

func (*Device) HasSupportedOs

func (o *Device) HasSupportedOs() bool

HasSupportedOs returns a boolean if a field has been set.

func (*Device) HasSupportedOsLabel

func (o *Device) HasSupportedOsLabel() bool

HasSupportedOsLabel returns a boolean if a field has been set.

func (*Device) HasUri

func (o *Device) HasUri() bool

HasUri returns a boolean if a field has been set.

func (Device) MarshalJSON

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

func (*Device) SetCustomerId

func (o *Device) SetCustomerId(v int32)

SetCustomerId gets a reference to the given int32 and assigns it to the CustomerId field.

func (*Device) SetCustomerName

func (o *Device) SetCustomerName(v string)

SetCustomerName gets a reference to the given string and assigns it to the CustomerName field.

func (*Device) SetDescription

func (o *Device) SetDescription(v string)

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

func (*Device) SetDeviceClass

func (o *Device) SetDeviceClass(v string)

SetDeviceClass gets a reference to the given string and assigns it to the DeviceClass field.

func (*Device) SetDeviceClassLabel

func (o *Device) SetDeviceClassLabel(v string)

SetDeviceClassLabel gets a reference to the given string and assigns it to the DeviceClassLabel field.

func (*Device) SetDeviceId

func (o *Device) SetDeviceId(v int32)

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

func (*Device) SetDiscoveredName

func (o *Device) SetDiscoveredName(v string)

SetDiscoveredName gets a reference to the given string and assigns it to the DiscoveredName field.

func (*Device) SetIsProbe

func (o *Device) SetIsProbe(v bool)

SetIsProbe gets a reference to the given bool and assigns it to the IsProbe field.

func (*Device) SetLastApplianceCheckinTime

func (o *Device) SetLastApplianceCheckinTime(v string)

SetLastApplianceCheckinTime gets a reference to the given string and assigns it to the LastApplianceCheckinTime field.

func (*Device) SetLastLoggedInUser

func (o *Device) SetLastLoggedInUser(v string)

SetLastLoggedInUser gets a reference to the given string and assigns it to the LastLoggedInUser field.

func (*Device) SetLicenseMode

func (o *Device) SetLicenseMode(v string)

SetLicenseMode gets a reference to the given string and assigns it to the LicenseMode field.

func (*Device) SetLongName

func (o *Device) SetLongName(v string)

SetLongName gets a reference to the given string and assigns it to the LongName field.

func (*Device) SetOrgUnitId

func (o *Device) SetOrgUnitId(v int32)

SetOrgUnitId gets a reference to the given int32 and assigns it to the OrgUnitId field.

func (*Device) SetOsId

func (o *Device) SetOsId(v string)

SetOsId gets a reference to the given string and assigns it to the OsId field.

func (*Device) SetRemoteControlUri

func (o *Device) SetRemoteControlUri(v string)

SetRemoteControlUri gets a reference to the given string and assigns it to the RemoteControlUri field.

func (*Device) SetSiteId

func (o *Device) SetSiteId(v int32)

SetSiteId gets a reference to the given int32 and assigns it to the SiteId field.

func (*Device) SetSiteName

func (o *Device) SetSiteName(v string)

SetSiteName gets a reference to the given string and assigns it to the SiteName field.

func (*Device) SetSoId

func (o *Device) SetSoId(v int32)

SetSoId gets a reference to the given int32 and assigns it to the SoId field.

func (*Device) SetSoName

func (o *Device) SetSoName(v string)

SetSoName gets a reference to the given string and assigns it to the SoName field.

func (*Device) SetSourceUri

func (o *Device) SetSourceUri(v string)

SetSourceUri gets a reference to the given string and assigns it to the SourceUri field.

func (*Device) SetStillLoggedIn

func (o *Device) SetStillLoggedIn(v string)

SetStillLoggedIn gets a reference to the given string and assigns it to the StillLoggedIn field.

func (*Device) SetSupportedOs

func (o *Device) SetSupportedOs(v string)

SetSupportedOs gets a reference to the given string and assigns it to the SupportedOs field.

func (*Device) SetSupportedOsLabel

func (o *Device) SetSupportedOsLabel(v string)

SetSupportedOsLabel gets a reference to the given string and assigns it to the SupportedOsLabel field.

func (*Device) SetUri

func (o *Device) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (Device) ToMap

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

type DeviceAccessGroupCreateRequest

type DeviceAccessGroupCreateRequest struct {
	// Name of the access group.
	GroupName string `json:"groupName"`
	// Description of the access group.
	GroupDescription string `json:"groupDescription"`
	// List of device IDs to attach to the access group.
	DeviceIds []string `json:"deviceIds,omitempty"`
	// List of user IDs to be associated with the access group.
	UserIds []string `json:"userIds,omitempty"`
}

DeviceAccessGroupCreateRequest Request for creating a device type access group.

func NewDeviceAccessGroupCreateRequest

func NewDeviceAccessGroupCreateRequest(groupName string, groupDescription string) *DeviceAccessGroupCreateRequest

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

func NewDeviceAccessGroupCreateRequestWithDefaults

func NewDeviceAccessGroupCreateRequestWithDefaults() *DeviceAccessGroupCreateRequest

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

func (*DeviceAccessGroupCreateRequest) GetDeviceIds

func (o *DeviceAccessGroupCreateRequest) GetDeviceIds() []string

GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.

func (*DeviceAccessGroupCreateRequest) GetDeviceIdsOk

func (o *DeviceAccessGroupCreateRequest) 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 (*DeviceAccessGroupCreateRequest) GetGroupDescription

func (o *DeviceAccessGroupCreateRequest) GetGroupDescription() string

GetGroupDescription returns the GroupDescription field value

func (*DeviceAccessGroupCreateRequest) GetGroupDescriptionOk

func (o *DeviceAccessGroupCreateRequest) GetGroupDescriptionOk() (*string, bool)

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

func (*DeviceAccessGroupCreateRequest) GetGroupName

func (o *DeviceAccessGroupCreateRequest) GetGroupName() string

GetGroupName returns the GroupName field value

func (*DeviceAccessGroupCreateRequest) GetGroupNameOk

func (o *DeviceAccessGroupCreateRequest) GetGroupNameOk() (*string, bool)

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

func (*DeviceAccessGroupCreateRequest) GetUserIds

func (o *DeviceAccessGroupCreateRequest) GetUserIds() []string

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*DeviceAccessGroupCreateRequest) GetUserIdsOk

func (o *DeviceAccessGroupCreateRequest) GetUserIdsOk() ([]string, bool)

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

func (*DeviceAccessGroupCreateRequest) HasDeviceIds

func (o *DeviceAccessGroupCreateRequest) HasDeviceIds() bool

HasDeviceIds returns a boolean if a field has been set.

func (*DeviceAccessGroupCreateRequest) HasUserIds

func (o *DeviceAccessGroupCreateRequest) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (DeviceAccessGroupCreateRequest) MarshalJSON

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

func (*DeviceAccessGroupCreateRequest) SetDeviceIds

func (o *DeviceAccessGroupCreateRequest) SetDeviceIds(v []string)

SetDeviceIds gets a reference to the given []string and assigns it to the DeviceIds field.

func (*DeviceAccessGroupCreateRequest) SetGroupDescription

func (o *DeviceAccessGroupCreateRequest) SetGroupDescription(v string)

SetGroupDescription sets field value

func (*DeviceAccessGroupCreateRequest) SetGroupName

func (o *DeviceAccessGroupCreateRequest) SetGroupName(v string)

SetGroupName sets field value

func (*DeviceAccessGroupCreateRequest) SetUserIds

func (o *DeviceAccessGroupCreateRequest) SetUserIds(v []string)

SetUserIds gets a reference to the given []string and assigns it to the UserIds field.

func (DeviceAccessGroupCreateRequest) ToMap

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

func (*DeviceAccessGroupCreateRequest) UnmarshalJSON

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

type DeviceAssetInfoResponse

type DeviceAssetInfoResponse struct {
	// Asset Information about the device.
	Data any `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

DeviceAssetInfoResponse Represents a device asset info response. It contains the asset information about the device in the form of following categories : 1. os 2. application 3. computersystem 4. networkadapter 5. device 6. processor The above categories are classified as \"default\" categories and the fields under these categories are considered as \"default\" fields. The default fields are considered definitive and are expected to be present at all times. If a default field is missing, it indicates that information about that specific field for the device is unavailable. The \"_extra\" part of the response contains all available asset categories and fields. The extra categories and fields provide supplementary information about the device asset. These details are optional and may or may not be available in the future. Additionally, certain fields from the \"_extra\" categories or fields might transition to become default categories or fields in the future.

func NewDeviceAssetInfoResponse

func NewDeviceAssetInfoResponse() *DeviceAssetInfoResponse

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

func NewDeviceAssetInfoResponseWithDefaults

func NewDeviceAssetInfoResponseWithDefaults() *DeviceAssetInfoResponse

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

func (*DeviceAssetInfoResponse) GetData

func (o *DeviceAssetInfoResponse) GetData() any

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

func (*DeviceAssetInfoResponse) GetDataOk

func (o *DeviceAssetInfoResponse) GetDataOk() (any, bool)

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

func (o *DeviceAssetInfoResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*DeviceAssetInfoResponse) GetLinksOk

func (o *DeviceAssetInfoResponse) GetLinksOk() (*map[string]string, 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 (*DeviceAssetInfoResponse) HasData

func (o *DeviceAssetInfoResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *DeviceAssetInfoResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (DeviceAssetInfoResponse) MarshalJSON

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

func (*DeviceAssetInfoResponse) SetData

func (o *DeviceAssetInfoResponse) SetData(v any)

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (o *DeviceAssetInfoResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (DeviceAssetInfoResponse) ToMap

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

type DeviceCustomProperty

type DeviceCustomProperty struct {
	// The property id.
	PropertyId *int32 `json:"propertyId,omitempty"`
	// The property name.
	PropertyName *string `json:"propertyName,omitempty"`
	// The property type.
	PropertyType *string `json:"propertyType,omitempty"`
	// The property value.
	Value *string `json:"value,omitempty"`
	// The possible value of the property.
	EnumeratedValueList []string `json:"enumeratedValueList,omitempty"`
}

DeviceCustomProperty The custom property (DEVICE/ORGANIZATION_UNIT).

func NewDeviceCustomProperty

func NewDeviceCustomProperty() *DeviceCustomProperty

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

func NewDeviceCustomPropertyWithDefaults

func NewDeviceCustomPropertyWithDefaults() *DeviceCustomProperty

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

func (*DeviceCustomProperty) GetEnumeratedValueList

func (o *DeviceCustomProperty) GetEnumeratedValueList() []string

GetEnumeratedValueList returns the EnumeratedValueList field value if set, zero value otherwise.

func (*DeviceCustomProperty) GetEnumeratedValueListOk

func (o *DeviceCustomProperty) GetEnumeratedValueListOk() ([]string, bool)

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

func (*DeviceCustomProperty) GetPropertyId

func (o *DeviceCustomProperty) GetPropertyId() int32

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*DeviceCustomProperty) GetPropertyIdOk

func (o *DeviceCustomProperty) GetPropertyIdOk() (*int32, bool)

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

func (*DeviceCustomProperty) GetPropertyName

func (o *DeviceCustomProperty) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*DeviceCustomProperty) GetPropertyNameOk

func (o *DeviceCustomProperty) GetPropertyNameOk() (*string, bool)

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

func (*DeviceCustomProperty) GetPropertyType

func (o *DeviceCustomProperty) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*DeviceCustomProperty) GetPropertyTypeOk

func (o *DeviceCustomProperty) GetPropertyTypeOk() (*string, bool)

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

func (*DeviceCustomProperty) GetValue

func (o *DeviceCustomProperty) GetValue() string

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

func (*DeviceCustomProperty) GetValueOk

func (o *DeviceCustomProperty) 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 (*DeviceCustomProperty) HasEnumeratedValueList

func (o *DeviceCustomProperty) HasEnumeratedValueList() bool

HasEnumeratedValueList returns a boolean if a field has been set.

func (*DeviceCustomProperty) HasPropertyId

func (o *DeviceCustomProperty) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*DeviceCustomProperty) HasPropertyName

func (o *DeviceCustomProperty) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*DeviceCustomProperty) HasPropertyType

func (o *DeviceCustomProperty) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*DeviceCustomProperty) HasValue

func (o *DeviceCustomProperty) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DeviceCustomProperty) MarshalJSON

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

func (*DeviceCustomProperty) SetEnumeratedValueList

func (o *DeviceCustomProperty) SetEnumeratedValueList(v []string)

SetEnumeratedValueList gets a reference to the given []string and assigns it to the EnumeratedValueList field.

func (*DeviceCustomProperty) SetPropertyId

func (o *DeviceCustomProperty) SetPropertyId(v int32)

SetPropertyId gets a reference to the given int32 and assigns it to the PropertyId field.

func (*DeviceCustomProperty) SetPropertyName

func (o *DeviceCustomProperty) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*DeviceCustomProperty) SetPropertyType

func (o *DeviceCustomProperty) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*DeviceCustomProperty) SetValue

func (o *DeviceCustomProperty) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (DeviceCustomProperty) ToMap

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

type DeviceCustomPropertyEnumeratedValue

type DeviceCustomPropertyEnumeratedValue struct {
	CustomerId    *int32  `json:"customerId,omitempty"`
	CustomerName  *string `json:"customerName,omitempty"`
	CustomerType  *int32  `json:"customerType,omitempty"`
	PropertyId    *int32  `json:"propertyId,omitempty"`
	PropertyValue *string `json:"propertyValue,omitempty"`
}

DeviceCustomPropertyEnumeratedValue struct for DeviceCustomPropertyEnumeratedValue

func NewDeviceCustomPropertyEnumeratedValue

func NewDeviceCustomPropertyEnumeratedValue() *DeviceCustomPropertyEnumeratedValue

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

func NewDeviceCustomPropertyEnumeratedValueWithDefaults

func NewDeviceCustomPropertyEnumeratedValueWithDefaults() *DeviceCustomPropertyEnumeratedValue

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

func (*DeviceCustomPropertyEnumeratedValue) GetCustomerId

func (o *DeviceCustomPropertyEnumeratedValue) GetCustomerId() int32

GetCustomerId returns the CustomerId field value if set, zero value otherwise.

func (*DeviceCustomPropertyEnumeratedValue) GetCustomerIdOk

func (o *DeviceCustomPropertyEnumeratedValue) GetCustomerIdOk() (*int32, bool)

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

func (*DeviceCustomPropertyEnumeratedValue) GetCustomerName

func (o *DeviceCustomPropertyEnumeratedValue) GetCustomerName() string

GetCustomerName returns the CustomerName field value if set, zero value otherwise.

func (*DeviceCustomPropertyEnumeratedValue) GetCustomerNameOk

func (o *DeviceCustomPropertyEnumeratedValue) GetCustomerNameOk() (*string, bool)

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

func (*DeviceCustomPropertyEnumeratedValue) GetCustomerType

func (o *DeviceCustomPropertyEnumeratedValue) GetCustomerType() int32

GetCustomerType returns the CustomerType field value if set, zero value otherwise.

func (*DeviceCustomPropertyEnumeratedValue) GetCustomerTypeOk

func (o *DeviceCustomPropertyEnumeratedValue) GetCustomerTypeOk() (*int32, bool)

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

func (*DeviceCustomPropertyEnumeratedValue) GetPropertyId

func (o *DeviceCustomPropertyEnumeratedValue) GetPropertyId() int32

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*DeviceCustomPropertyEnumeratedValue) GetPropertyIdOk

func (o *DeviceCustomPropertyEnumeratedValue) GetPropertyIdOk() (*int32, bool)

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

func (*DeviceCustomPropertyEnumeratedValue) GetPropertyValue

func (o *DeviceCustomPropertyEnumeratedValue) GetPropertyValue() string

GetPropertyValue returns the PropertyValue field value if set, zero value otherwise.

func (*DeviceCustomPropertyEnumeratedValue) GetPropertyValueOk

func (o *DeviceCustomPropertyEnumeratedValue) GetPropertyValueOk() (*string, bool)

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

func (*DeviceCustomPropertyEnumeratedValue) HasCustomerId

func (o *DeviceCustomPropertyEnumeratedValue) HasCustomerId() bool

HasCustomerId returns a boolean if a field has been set.

func (*DeviceCustomPropertyEnumeratedValue) HasCustomerName

func (o *DeviceCustomPropertyEnumeratedValue) HasCustomerName() bool

HasCustomerName returns a boolean if a field has been set.

func (*DeviceCustomPropertyEnumeratedValue) HasCustomerType

func (o *DeviceCustomPropertyEnumeratedValue) HasCustomerType() bool

HasCustomerType returns a boolean if a field has been set.

func (*DeviceCustomPropertyEnumeratedValue) HasPropertyId

func (o *DeviceCustomPropertyEnumeratedValue) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*DeviceCustomPropertyEnumeratedValue) HasPropertyValue

func (o *DeviceCustomPropertyEnumeratedValue) HasPropertyValue() bool

HasPropertyValue returns a boolean if a field has been set.

func (DeviceCustomPropertyEnumeratedValue) MarshalJSON

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

func (*DeviceCustomPropertyEnumeratedValue) SetCustomerId

func (o *DeviceCustomPropertyEnumeratedValue) SetCustomerId(v int32)

SetCustomerId gets a reference to the given int32 and assigns it to the CustomerId field.

func (*DeviceCustomPropertyEnumeratedValue) SetCustomerName

func (o *DeviceCustomPropertyEnumeratedValue) SetCustomerName(v string)

SetCustomerName gets a reference to the given string and assigns it to the CustomerName field.

func (*DeviceCustomPropertyEnumeratedValue) SetCustomerType

func (o *DeviceCustomPropertyEnumeratedValue) SetCustomerType(v int32)

SetCustomerType gets a reference to the given int32 and assigns it to the CustomerType field.

func (*DeviceCustomPropertyEnumeratedValue) SetPropertyId

func (o *DeviceCustomPropertyEnumeratedValue) SetPropertyId(v int32)

SetPropertyId gets a reference to the given int32 and assigns it to the PropertyId field.

func (*DeviceCustomPropertyEnumeratedValue) SetPropertyValue

func (o *DeviceCustomPropertyEnumeratedValue) SetPropertyValue(v string)

SetPropertyValue gets a reference to the given string and assigns it to the PropertyValue field.

func (DeviceCustomPropertyEnumeratedValue) ToMap

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

type DeviceCustomPropertyModification

type DeviceCustomPropertyModification struct {
	// The property id.
	PropertyId *string `json:"propertyId,omitempty"`
	// The property name.
	PropertyName *string `json:"propertyName,omitempty"`
	// The property type.
	PropertyType *string `json:"propertyType,omitempty"`
	// The property value.
	Value *string `json:"value,omitempty"`
	// The possible value of the property.
	EnumeratedValueList []string `json:"enumeratedValueList,omitempty"`
}

DeviceCustomPropertyModification The custom property (DEVICE/ORGANIZATION_UNIT).

func NewDeviceCustomPropertyModification

func NewDeviceCustomPropertyModification() *DeviceCustomPropertyModification

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

func NewDeviceCustomPropertyModificationWithDefaults

func NewDeviceCustomPropertyModificationWithDefaults() *DeviceCustomPropertyModification

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

func (*DeviceCustomPropertyModification) GetEnumeratedValueList

func (o *DeviceCustomPropertyModification) GetEnumeratedValueList() []string

GetEnumeratedValueList returns the EnumeratedValueList field value if set, zero value otherwise.

func (*DeviceCustomPropertyModification) GetEnumeratedValueListOk

func (o *DeviceCustomPropertyModification) GetEnumeratedValueListOk() ([]string, bool)

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

func (*DeviceCustomPropertyModification) GetPropertyId

func (o *DeviceCustomPropertyModification) GetPropertyId() string

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*DeviceCustomPropertyModification) GetPropertyIdOk

func (o *DeviceCustomPropertyModification) GetPropertyIdOk() (*string, bool)

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

func (*DeviceCustomPropertyModification) GetPropertyName

func (o *DeviceCustomPropertyModification) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*DeviceCustomPropertyModification) GetPropertyNameOk

func (o *DeviceCustomPropertyModification) GetPropertyNameOk() (*string, bool)

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

func (*DeviceCustomPropertyModification) GetPropertyType

func (o *DeviceCustomPropertyModification) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*DeviceCustomPropertyModification) GetPropertyTypeOk

func (o *DeviceCustomPropertyModification) GetPropertyTypeOk() (*string, bool)

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

func (*DeviceCustomPropertyModification) GetValue

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

func (*DeviceCustomPropertyModification) GetValueOk

func (o *DeviceCustomPropertyModification) 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 (*DeviceCustomPropertyModification) HasEnumeratedValueList

func (o *DeviceCustomPropertyModification) HasEnumeratedValueList() bool

HasEnumeratedValueList returns a boolean if a field has been set.

func (*DeviceCustomPropertyModification) HasPropertyId

func (o *DeviceCustomPropertyModification) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*DeviceCustomPropertyModification) HasPropertyName

func (o *DeviceCustomPropertyModification) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*DeviceCustomPropertyModification) HasPropertyType

func (o *DeviceCustomPropertyModification) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*DeviceCustomPropertyModification) HasValue

func (o *DeviceCustomPropertyModification) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DeviceCustomPropertyModification) MarshalJSON

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

func (*DeviceCustomPropertyModification) SetEnumeratedValueList

func (o *DeviceCustomPropertyModification) SetEnumeratedValueList(v []string)

SetEnumeratedValueList gets a reference to the given []string and assigns it to the EnumeratedValueList field.

func (*DeviceCustomPropertyModification) SetPropertyId

func (o *DeviceCustomPropertyModification) SetPropertyId(v string)

SetPropertyId gets a reference to the given string and assigns it to the PropertyId field.

func (*DeviceCustomPropertyModification) SetPropertyName

func (o *DeviceCustomPropertyModification) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*DeviceCustomPropertyModification) SetPropertyType

func (o *DeviceCustomPropertyModification) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*DeviceCustomPropertyModification) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (DeviceCustomPropertyModification) ToMap

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

type DeviceCustomPropertyResponse

type DeviceCustomPropertyResponse struct {
	Data *DefaultDeviceCustomProperty `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

DeviceCustomPropertyResponse Response for device custom property information.

func NewDeviceCustomPropertyResponse

func NewDeviceCustomPropertyResponse() *DeviceCustomPropertyResponse

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

func NewDeviceCustomPropertyResponseWithDefaults

func NewDeviceCustomPropertyResponseWithDefaults() *DeviceCustomPropertyResponse

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

func (*DeviceCustomPropertyResponse) GetData

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

func (*DeviceCustomPropertyResponse) GetDataOk

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

func (o *DeviceCustomPropertyResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*DeviceCustomPropertyResponse) GetLinksOk

func (o *DeviceCustomPropertyResponse) GetLinksOk() (*map[string]string, 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 (*DeviceCustomPropertyResponse) HasData

func (o *DeviceCustomPropertyResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *DeviceCustomPropertyResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (DeviceCustomPropertyResponse) MarshalJSON

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

func (*DeviceCustomPropertyResponse) SetData

SetData gets a reference to the given DefaultDeviceCustomProperty and assigns it to the Data field.

func (o *DeviceCustomPropertyResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (DeviceCustomPropertyResponse) ToMap

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

type DeviceFiltersAPIService

type DeviceFiltersAPIService service

DeviceFiltersAPIService DeviceFiltersAPI service

func (*DeviceFiltersAPIService) ListFilters

ListFilters PREVIEW: Retrieve the list of filters.

Retrieves the list of filters from N-central for the logged in user.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

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

func (*DeviceFiltersAPIService) ListFiltersExecute

Execute executes the request

@return ListResponseFilter

type DevicePropertyUpdated

type DevicePropertyUpdated struct {
	// The list of warnings.
	Warnings []string `json:"_warnings,omitempty"`
}

DevicePropertyUpdated The device property update result.

func NewDevicePropertyUpdated

func NewDevicePropertyUpdated() *DevicePropertyUpdated

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

func NewDevicePropertyUpdatedWithDefaults

func NewDevicePropertyUpdatedWithDefaults() *DevicePropertyUpdated

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

func (*DevicePropertyUpdated) GetWarnings

func (o *DevicePropertyUpdated) GetWarnings() []string

GetWarnings returns the Warnings field value if set, zero value otherwise.

func (*DevicePropertyUpdated) GetWarningsOk

func (o *DevicePropertyUpdated) GetWarningsOk() ([]string, bool)

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

func (*DevicePropertyUpdated) HasWarnings

func (o *DevicePropertyUpdated) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (DevicePropertyUpdated) MarshalJSON

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

func (*DevicePropertyUpdated) SetWarnings

func (o *DevicePropertyUpdated) SetWarnings(v []string)

SetWarnings gets a reference to the given []string and assigns it to the Warnings field.

func (DevicePropertyUpdated) ToMap

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

type DeviceResponse

type DeviceResponse struct {
	Data *Device `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

DeviceResponse struct for DeviceResponse

func NewDeviceResponse

func NewDeviceResponse() *DeviceResponse

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

func NewDeviceResponseWithDefaults

func NewDeviceResponseWithDefaults() *DeviceResponse

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

func (*DeviceResponse) GetData

func (o *DeviceResponse) GetData() Device

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

func (*DeviceResponse) GetDataOk

func (o *DeviceResponse) GetDataOk() (*Device, bool)

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

func (o *DeviceResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*DeviceResponse) GetLinksOk

func (o *DeviceResponse) GetLinksOk() (*map[string]string, 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 (*DeviceResponse) HasData

func (o *DeviceResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *DeviceResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (DeviceResponse) MarshalJSON

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

func (*DeviceResponse) SetData

func (o *DeviceResponse) SetData(v Device)

SetData gets a reference to the given Device and assigns it to the Data field.

func (o *DeviceResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (DeviceResponse) ToMap

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

type DeviceServiceMonitoringStatus

type DeviceServiceMonitoringStatus struct {
	TaskId         *int32  `json:"taskId,omitempty"`
	ServiceId      *int32  `json:"serviceId,omitempty"`
	TimeToStale    *int32  `json:"timeToStale,omitempty"`
	TaskNote       *string `json:"taskNote,omitempty"`
	TaskIdent      *string `json:"taskIdent,omitempty"`
	StateStatus    *string `json:"stateStatus,omitempty"`
	LastUpdate     *string `json:"lastUpdate,omitempty"`
	LastDataId     *int32  `json:"lastDataId,omitempty"`
	CreatedOn      *string `json:"createdOn,omitempty"`
	ModuleName     *string `json:"moduleName,omitempty"`
	ServiceItemId  *int32  `json:"serviceItemId,omitempty"`
	LastScanTime   *string `json:"lastScanTime,omitempty"`
	IsManagedTask  *bool   `json:"isManagedTask,omitempty"`
	TransitionTime *string `json:"transitionTime,omitempty"`
	ApplianceId    *int32  `json:"applianceId,omitempty"`
	ApplianceName  *string `json:"applianceName,omitempty"`
}

DeviceServiceMonitoringStatus Response for Device Service Monitoring Status information.

func NewDeviceServiceMonitoringStatus

func NewDeviceServiceMonitoringStatus() *DeviceServiceMonitoringStatus

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

func NewDeviceServiceMonitoringStatusWithDefaults

func NewDeviceServiceMonitoringStatusWithDefaults() *DeviceServiceMonitoringStatus

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

func (*DeviceServiceMonitoringStatus) GetApplianceId

func (o *DeviceServiceMonitoringStatus) GetApplianceId() int32

GetApplianceId returns the ApplianceId field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetApplianceIdOk

func (o *DeviceServiceMonitoringStatus) GetApplianceIdOk() (*int32, bool)

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

func (*DeviceServiceMonitoringStatus) GetApplianceName

func (o *DeviceServiceMonitoringStatus) GetApplianceName() string

GetApplianceName returns the ApplianceName field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetApplianceNameOk

func (o *DeviceServiceMonitoringStatus) GetApplianceNameOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetCreatedOn

func (o *DeviceServiceMonitoringStatus) GetCreatedOn() string

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

func (*DeviceServiceMonitoringStatus) GetCreatedOnOk

func (o *DeviceServiceMonitoringStatus) 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 (*DeviceServiceMonitoringStatus) GetIsManagedTask

func (o *DeviceServiceMonitoringStatus) GetIsManagedTask() bool

GetIsManagedTask returns the IsManagedTask field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetIsManagedTaskOk

func (o *DeviceServiceMonitoringStatus) GetIsManagedTaskOk() (*bool, bool)

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

func (*DeviceServiceMonitoringStatus) GetLastDataId

func (o *DeviceServiceMonitoringStatus) GetLastDataId() int32

GetLastDataId returns the LastDataId field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetLastDataIdOk

func (o *DeviceServiceMonitoringStatus) GetLastDataIdOk() (*int32, bool)

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

func (*DeviceServiceMonitoringStatus) GetLastScanTime

func (o *DeviceServiceMonitoringStatus) GetLastScanTime() string

GetLastScanTime returns the LastScanTime field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetLastScanTimeOk

func (o *DeviceServiceMonitoringStatus) GetLastScanTimeOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetLastUpdate

func (o *DeviceServiceMonitoringStatus) GetLastUpdate() string

GetLastUpdate returns the LastUpdate field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetLastUpdateOk

func (o *DeviceServiceMonitoringStatus) GetLastUpdateOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetModuleName

func (o *DeviceServiceMonitoringStatus) GetModuleName() string

GetModuleName returns the ModuleName field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetModuleNameOk

func (o *DeviceServiceMonitoringStatus) GetModuleNameOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetServiceId

func (o *DeviceServiceMonitoringStatus) GetServiceId() int32

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

func (*DeviceServiceMonitoringStatus) GetServiceIdOk

func (o *DeviceServiceMonitoringStatus) GetServiceIdOk() (*int32, 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 (*DeviceServiceMonitoringStatus) GetServiceItemId

func (o *DeviceServiceMonitoringStatus) GetServiceItemId() int32

GetServiceItemId returns the ServiceItemId field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetServiceItemIdOk

func (o *DeviceServiceMonitoringStatus) GetServiceItemIdOk() (*int32, bool)

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

func (*DeviceServiceMonitoringStatus) GetStateStatus

func (o *DeviceServiceMonitoringStatus) GetStateStatus() string

GetStateStatus returns the StateStatus field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetStateStatusOk

func (o *DeviceServiceMonitoringStatus) GetStateStatusOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetTaskId

func (o *DeviceServiceMonitoringStatus) GetTaskId() int32

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetTaskIdOk

func (o *DeviceServiceMonitoringStatus) GetTaskIdOk() (*int32, bool)

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

func (*DeviceServiceMonitoringStatus) GetTaskIdent

func (o *DeviceServiceMonitoringStatus) GetTaskIdent() string

GetTaskIdent returns the TaskIdent field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetTaskIdentOk

func (o *DeviceServiceMonitoringStatus) GetTaskIdentOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetTaskNote

func (o *DeviceServiceMonitoringStatus) GetTaskNote() string

GetTaskNote returns the TaskNote field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetTaskNoteOk

func (o *DeviceServiceMonitoringStatus) GetTaskNoteOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) GetTimeToStale

func (o *DeviceServiceMonitoringStatus) GetTimeToStale() int32

GetTimeToStale returns the TimeToStale field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetTimeToStaleOk

func (o *DeviceServiceMonitoringStatus) GetTimeToStaleOk() (*int32, bool)

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

func (*DeviceServiceMonitoringStatus) GetTransitionTime

func (o *DeviceServiceMonitoringStatus) GetTransitionTime() string

GetTransitionTime returns the TransitionTime field value if set, zero value otherwise.

func (*DeviceServiceMonitoringStatus) GetTransitionTimeOk

func (o *DeviceServiceMonitoringStatus) GetTransitionTimeOk() (*string, bool)

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

func (*DeviceServiceMonitoringStatus) HasApplianceId

func (o *DeviceServiceMonitoringStatus) HasApplianceId() bool

HasApplianceId returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasApplianceName

func (o *DeviceServiceMonitoringStatus) HasApplianceName() bool

HasApplianceName returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasCreatedOn

func (o *DeviceServiceMonitoringStatus) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasIsManagedTask

func (o *DeviceServiceMonitoringStatus) HasIsManagedTask() bool

HasIsManagedTask returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasLastDataId

func (o *DeviceServiceMonitoringStatus) HasLastDataId() bool

HasLastDataId returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasLastScanTime

func (o *DeviceServiceMonitoringStatus) HasLastScanTime() bool

HasLastScanTime returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasLastUpdate

func (o *DeviceServiceMonitoringStatus) HasLastUpdate() bool

HasLastUpdate returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasModuleName

func (o *DeviceServiceMonitoringStatus) HasModuleName() bool

HasModuleName returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasServiceId

func (o *DeviceServiceMonitoringStatus) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasServiceItemId

func (o *DeviceServiceMonitoringStatus) HasServiceItemId() bool

HasServiceItemId returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasStateStatus

func (o *DeviceServiceMonitoringStatus) HasStateStatus() bool

HasStateStatus returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasTaskId

func (o *DeviceServiceMonitoringStatus) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasTaskIdent

func (o *DeviceServiceMonitoringStatus) HasTaskIdent() bool

HasTaskIdent returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasTaskNote

func (o *DeviceServiceMonitoringStatus) HasTaskNote() bool

HasTaskNote returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasTimeToStale

func (o *DeviceServiceMonitoringStatus) HasTimeToStale() bool

HasTimeToStale returns a boolean if a field has been set.

func (*DeviceServiceMonitoringStatus) HasTransitionTime

func (o *DeviceServiceMonitoringStatus) HasTransitionTime() bool

HasTransitionTime returns a boolean if a field has been set.

func (DeviceServiceMonitoringStatus) MarshalJSON

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

func (*DeviceServiceMonitoringStatus) SetApplianceId

func (o *DeviceServiceMonitoringStatus) SetApplianceId(v int32)

SetApplianceId gets a reference to the given int32 and assigns it to the ApplianceId field.

func (*DeviceServiceMonitoringStatus) SetApplianceName

func (o *DeviceServiceMonitoringStatus) SetApplianceName(v string)

SetApplianceName gets a reference to the given string and assigns it to the ApplianceName field.

func (*DeviceServiceMonitoringStatus) SetCreatedOn

func (o *DeviceServiceMonitoringStatus) SetCreatedOn(v string)

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

func (*DeviceServiceMonitoringStatus) SetIsManagedTask

func (o *DeviceServiceMonitoringStatus) SetIsManagedTask(v bool)

SetIsManagedTask gets a reference to the given bool and assigns it to the IsManagedTask field.

func (*DeviceServiceMonitoringStatus) SetLastDataId

func (o *DeviceServiceMonitoringStatus) SetLastDataId(v int32)

SetLastDataId gets a reference to the given int32 and assigns it to the LastDataId field.

func (*DeviceServiceMonitoringStatus) SetLastScanTime

func (o *DeviceServiceMonitoringStatus) SetLastScanTime(v string)

SetLastScanTime gets a reference to the given string and assigns it to the LastScanTime field.

func (*DeviceServiceMonitoringStatus) SetLastUpdate

func (o *DeviceServiceMonitoringStatus) SetLastUpdate(v string)

SetLastUpdate gets a reference to the given string and assigns it to the LastUpdate field.

func (*DeviceServiceMonitoringStatus) SetModuleName

func (o *DeviceServiceMonitoringStatus) SetModuleName(v string)

SetModuleName gets a reference to the given string and assigns it to the ModuleName field.

func (*DeviceServiceMonitoringStatus) SetServiceId

func (o *DeviceServiceMonitoringStatus) SetServiceId(v int32)

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

func (*DeviceServiceMonitoringStatus) SetServiceItemId

func (o *DeviceServiceMonitoringStatus) SetServiceItemId(v int32)

SetServiceItemId gets a reference to the given int32 and assigns it to the ServiceItemId field.

func (*DeviceServiceMonitoringStatus) SetStateStatus

func (o *DeviceServiceMonitoringStatus) SetStateStatus(v string)

SetStateStatus gets a reference to the given string and assigns it to the StateStatus field.

func (*DeviceServiceMonitoringStatus) SetTaskId

func (o *DeviceServiceMonitoringStatus) SetTaskId(v int32)

SetTaskId gets a reference to the given int32 and assigns it to the TaskId field.

func (*DeviceServiceMonitoringStatus) SetTaskIdent

func (o *DeviceServiceMonitoringStatus) SetTaskIdent(v string)

SetTaskIdent gets a reference to the given string and assigns it to the TaskIdent field.

func (*DeviceServiceMonitoringStatus) SetTaskNote

func (o *DeviceServiceMonitoringStatus) SetTaskNote(v string)

SetTaskNote gets a reference to the given string and assigns it to the TaskNote field.

func (*DeviceServiceMonitoringStatus) SetTimeToStale

func (o *DeviceServiceMonitoringStatus) SetTimeToStale(v int32)

SetTimeToStale gets a reference to the given int32 and assigns it to the TimeToStale field.

func (*DeviceServiceMonitoringStatus) SetTransitionTime

func (o *DeviceServiceMonitoringStatus) SetTransitionTime(v string)

SetTransitionTime gets a reference to the given string and assigns it to the TransitionTime field.

func (DeviceServiceMonitoringStatus) ToMap

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

type DeviceTasksAPIService

type DeviceTasksAPIService service

DeviceTasksAPIService DeviceTasksAPI service

func (*DeviceTasksAPIService) ListTasksForDevice

func (a *DeviceTasksAPIService) ListTasksForDevice(ctx context.Context, deviceId string) ApiListTasksForDeviceRequest

ListTasksForDevice Retrieve tasks for a specific device.

Retrieves a list of tasks associated with a specified device using the device ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which the tasks need to be fetched.
@return ApiListTasksForDeviceRequest

func (*DeviceTasksAPIService) ListTasksForDeviceExecute

Execute executes the request

@return ListResponseTaskStatusResponse

type DevicesAPIService

type DevicesAPIService service

DevicesAPIService DevicesAPI service

func (*DevicesAPIService) GetApplianceTaskInformationDetails

func (a *DevicesAPIService) GetApplianceTaskInformationDetails(ctx context.Context, taskId string) ApiGetApplianceTaskInformationDetailsRequest

GetApplianceTaskInformationDetails PREVIEW : Retrieves the appliance-task information.

Retrieves the appliance-task information for a given taskId.<br/><br/><b>NOTE: </b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId ID of the appliance-task for which information needs to be fetched.
@return ApiGetApplianceTaskInformationDetailsRequest

func (*DevicesAPIService) GetApplianceTaskInformationDetailsExecute

func (a *DevicesAPIService) GetApplianceTaskInformationDetailsExecute(r ApiGetApplianceTaskInformationDetailsRequest) (*ApplianceTaskInformation, *http.Response, error)

Execute executes the request

@return ApplianceTaskInformation

func (*DevicesAPIService) GetAssetInfo

func (a *DevicesAPIService) GetAssetInfo(ctx context.Context, deviceId string) ApiGetAssetInfoRequest

GetAssetInfo Retrieve Asset Information for a device by ID.

Retrieves complete asset information for a device with a specific id.<br/><br/><b>Also See:<b> <a href="#model-DeviceAssetInfoResponse">DeviceAssetInfoResponse</a>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which asset information needs to be fetched.
@return ApiGetAssetInfoRequest

func (*DevicesAPIService) GetAssetInfoExecute

Execute executes the request

@return DeviceAssetInfoResponse

func (*DevicesAPIService) GetDeviceById

func (a *DevicesAPIService) GetDeviceById(ctx context.Context, deviceId string) ApiGetDeviceByIdRequest

GetDeviceById Retrieve a device by ID.

Retrieves a device with a specific id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be fetched.
@return ApiGetDeviceByIdRequest

func (*DevicesAPIService) GetDeviceByIdExecute

Execute executes the request

@return DeviceResponse

func (*DevicesAPIService) GetDeviceStatus

func (a *DevicesAPIService) GetDeviceStatus(ctx context.Context, deviceId string) ApiGetDeviceStatusRequest

GetDeviceStatus PREVIEW : Retrieves the status of the service monitoring tasks for a given device.

Retrieves the status of the service monitoring tasks for a given device.<br/><br/><b>NOTE: </b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be fetched.
@return ApiGetDeviceStatusRequest

func (*DevicesAPIService) GetDeviceStatusExecute

Execute executes the request

@return ListResponseDeviceServiceMonitoringStatus

func (*DevicesAPIService) GetDeviceWarrantyInfo

func (a *DevicesAPIService) GetDeviceWarrantyInfo(ctx context.Context, deviceId string) ApiGetDeviceWarrantyInfoRequest

GetDeviceWarrantyInfo Retrieve a device asset lifecycle information by Device ID.

Retrieves a device asset lifecycle information with a specific id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be fetched.
@return ApiGetDeviceWarrantyInfoRequest

func (*DevicesAPIService) GetDeviceWarrantyInfoExecute

Execute executes the request

@return AssetLifecycleDetails

func (*DevicesAPIService) ListDevices

ListDevices Retrieve the list of devices.

Retrieves the list of devices from N-central for the logged in user.

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

func (*DevicesAPIService) ListDevicesByOrgUnitId

func (a *DevicesAPIService) ListDevicesByOrgUnitId(ctx context.Context, orgUnitId string) ApiListDevicesByOrgUnitIdRequest

ListDevicesByOrgUnitId PREVIEW : Retrieve the list of devices by org unit id.

Retrieves the list of devices from N-central for the logged in user. NOTE: This endpoint is in the preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which information needs to be fetched.
@return ApiListDevicesByOrgUnitIdRequest

func (*DevicesAPIService) ListDevicesByOrgUnitIdExecute

Execute executes the request

@return QueryResponseDevice

func (*DevicesAPIService) ListDevicesExecute

Execute executes the request

@return QueryResponseDevice

func (*DevicesAPIService) PatchAssetLifecycleInfo

func (a *DevicesAPIService) PatchAssetLifecycleInfo(ctx context.Context, deviceId string) ApiPatchAssetLifecycleInfoRequest

PatchAssetLifecycleInfo Modifies the Asset Lifecycle Information by Device Id.

Modifies the Asset Lifecycle Information for a device with a specific id.Please note that updateWarrantyError is read only.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be modified.
@return ApiPatchAssetLifecycleInfoRequest

func (*DevicesAPIService) PatchAssetLifecycleInfoExecute

func (a *DevicesAPIService) PatchAssetLifecycleInfoExecute(r ApiPatchAssetLifecycleInfoRequest) (*http.Response, error)

Execute executes the request

func (*DevicesAPIService) PutAssetLifecycleInfo

func (a *DevicesAPIService) PutAssetLifecycleInfo(ctx context.Context, deviceId string) ApiPutAssetLifecycleInfoRequest

PutAssetLifecycleInfo Modifies the Asset Lifecycle Information by Device Id.

Modifies the Asset Lifecycle Information for a device with a specific id.Please note that updateWarrantyError is read only.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be modified.
@return ApiPutAssetLifecycleInfoRequest

func (*DevicesAPIService) PutAssetLifecycleInfoExecute

func (a *DevicesAPIService) PutAssetLifecycleInfoExecute(r ApiPutAssetLifecycleInfoRequest) (*http.Response, error)

Execute executes the request

type DirectSupportTask

type DirectSupportTask struct {
	// The name of the task. This value must be unique.
	Name string `json:"name"`
	// The ID of the remote execution item. The item ID can be found in the N-central UI (\"Configuration\" -> \"Scheduled Tasks\" -> \"Script/software Repository\") and it must have \"Enable API\" flag \"ON\" (see in the N-central UI).
	ItemId int32 `json:"itemId"`
	// The type of the task. Supported values: AutomationPolicy, Script or MacScript.
	TaskType string `json:"taskType"`
	// The ID of the customer. The customer ID can be obtained using the <a href=\"#operations-Customers-listCustomers\">'GET /api/customers'</a> endpoint.
	CustomerId int32 `json:"customerId"`
	// The ID of the device. The device ID can be obtained using the <a href=\"#operations-Devices-getDeviceById\">'GET /api/devices'</a> endpoint.
	DeviceId   int32                   `json:"deviceId"`
	Credential ScheduledTaskCredential `json:"credential"`
	// The credential setting for the task. For more information about the fields of <a href=\"#model-ScheduledTaskParameter\">ScheduledTaskParameter</a>,     please review its schema below.
	Parameters []ScheduledTaskParameter `json:"parameters,omitempty"`
}

DirectSupportTask 'Direct support' scheduled task.

func NewDirectSupportTask

func NewDirectSupportTask(name string, itemId int32, taskType string, customerId int32, deviceId int32, credential ScheduledTaskCredential) *DirectSupportTask

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

func NewDirectSupportTaskWithDefaults

func NewDirectSupportTaskWithDefaults() *DirectSupportTask

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

func (*DirectSupportTask) GetCredential

func (o *DirectSupportTask) GetCredential() ScheduledTaskCredential

GetCredential returns the Credential field value

func (*DirectSupportTask) GetCredentialOk

func (o *DirectSupportTask) GetCredentialOk() (*ScheduledTaskCredential, bool)

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

func (*DirectSupportTask) GetCustomerId

func (o *DirectSupportTask) GetCustomerId() int32

GetCustomerId returns the CustomerId field value

func (*DirectSupportTask) GetCustomerIdOk

func (o *DirectSupportTask) GetCustomerIdOk() (*int32, bool)

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

func (*DirectSupportTask) GetDeviceId

func (o *DirectSupportTask) GetDeviceId() int32

GetDeviceId returns the DeviceId field value

func (*DirectSupportTask) GetDeviceIdOk

func (o *DirectSupportTask) GetDeviceIdOk() (*int32, bool)

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

func (*DirectSupportTask) GetItemId

func (o *DirectSupportTask) GetItemId() int32

GetItemId returns the ItemId field value

func (*DirectSupportTask) GetItemIdOk

func (o *DirectSupportTask) GetItemIdOk() (*int32, bool)

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

func (*DirectSupportTask) GetName

func (o *DirectSupportTask) GetName() string

GetName returns the Name field value

func (*DirectSupportTask) GetNameOk

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

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

func (*DirectSupportTask) GetParameters

func (o *DirectSupportTask) GetParameters() []ScheduledTaskParameter

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*DirectSupportTask) GetParametersOk

func (o *DirectSupportTask) GetParametersOk() ([]ScheduledTaskParameter, 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 (*DirectSupportTask) GetTaskType

func (o *DirectSupportTask) GetTaskType() string

GetTaskType returns the TaskType field value

func (*DirectSupportTask) GetTaskTypeOk

func (o *DirectSupportTask) GetTaskTypeOk() (*string, bool)

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

func (*DirectSupportTask) HasParameters

func (o *DirectSupportTask) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (DirectSupportTask) MarshalJSON

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

func (*DirectSupportTask) SetCredential

func (o *DirectSupportTask) SetCredential(v ScheduledTaskCredential)

SetCredential sets field value

func (*DirectSupportTask) SetCustomerId

func (o *DirectSupportTask) SetCustomerId(v int32)

SetCustomerId sets field value

func (*DirectSupportTask) SetDeviceId

func (o *DirectSupportTask) SetDeviceId(v int32)

SetDeviceId sets field value

func (*DirectSupportTask) SetItemId

func (o *DirectSupportTask) SetItemId(v int32)

SetItemId sets field value

func (*DirectSupportTask) SetName

func (o *DirectSupportTask) SetName(v string)

SetName sets field value

func (*DirectSupportTask) SetParameters

func (o *DirectSupportTask) SetParameters(v []ScheduledTaskParameter)

SetParameters gets a reference to the given []ScheduledTaskParameter and assigns it to the Parameters field.

func (*DirectSupportTask) SetTaskType

func (o *DirectSupportTask) SetTaskType(v string)

SetTaskType sets field value

func (DirectSupportTask) ToMap

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

func (*DirectSupportTask) UnmarshalJSON

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

type ErrorResponse

type ErrorResponse struct {
	Status  *int32            `json:"status,omitempty"`
	Message *string           `json:"message,omitempty"`
	Errors  []ValidationError `json:"errors,omitempty"`
}

ErrorResponse Error response

func NewErrorResponse

func NewErrorResponse() *ErrorResponse

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

func NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

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

func (*ErrorResponse) GetErrors

func (o *ErrorResponse) GetErrors() []ValidationError

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

func (*ErrorResponse) GetErrorsOk

func (o *ErrorResponse) GetErrorsOk() ([]ValidationError, bool)

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

func (*ErrorResponse) GetMessage

func (o *ErrorResponse) GetMessage() string

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

func (*ErrorResponse) GetMessageOk

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

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

func (*ErrorResponse) GetStatus

func (o *ErrorResponse) GetStatus() int32

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

func (*ErrorResponse) GetStatusOk

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

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

func (*ErrorResponse) HasErrors

func (o *ErrorResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ErrorResponse) HasMessage

func (o *ErrorResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ErrorResponse) HasStatus

func (o *ErrorResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

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

func (*ErrorResponse) SetErrors

func (o *ErrorResponse) SetErrors(v []ValidationError)

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

func (*ErrorResponse) SetMessage

func (o *ErrorResponse) SetMessage(v string)

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

func (*ErrorResponse) SetStatus

func (o *ErrorResponse) SetStatus(v int32)

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

func (ErrorResponse) ToMap

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

type Filter

type Filter struct {
	FilterId    *string `json:"filterId,omitempty"`
	FilterName  *string `json:"filterName,omitempty"`
	Description *string `json:"description,omitempty"`
}

Filter Response for list of device filters.

func NewFilter

func NewFilter() *Filter

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

func NewFilterWithDefaults

func NewFilterWithDefaults() *Filter

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

func (*Filter) GetDescription

func (o *Filter) GetDescription() string

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

func (*Filter) GetDescriptionOk

func (o *Filter) 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 (*Filter) GetFilterId

func (o *Filter) GetFilterId() string

GetFilterId returns the FilterId field value if set, zero value otherwise.

func (*Filter) GetFilterIdOk

func (o *Filter) GetFilterIdOk() (*string, bool)

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

func (*Filter) GetFilterName

func (o *Filter) GetFilterName() string

GetFilterName returns the FilterName field value if set, zero value otherwise.

func (*Filter) GetFilterNameOk

func (o *Filter) GetFilterNameOk() (*string, bool)

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

func (*Filter) HasDescription

func (o *Filter) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Filter) HasFilterId

func (o *Filter) HasFilterId() bool

HasFilterId returns a boolean if a field has been set.

func (*Filter) HasFilterName

func (o *Filter) HasFilterName() bool

HasFilterName returns a boolean if a field has been set.

func (Filter) MarshalJSON

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

func (*Filter) SetDescription

func (o *Filter) SetDescription(v string)

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

func (*Filter) SetFilterId

func (o *Filter) SetFilterId(v string)

SetFilterId gets a reference to the given string and assigns it to the FilterId field.

func (*Filter) SetFilterName

func (o *Filter) SetFilterName(v string)

SetFilterName gets a reference to the given string and assigns it to the FilterName field.

func (Filter) ToMap

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type Health

type Health struct {
	CurrentTime *time.Time `json:"currentTime,omitempty"`
}

Health Response for the server health.

func NewHealth

func NewHealth() *Health

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

func NewHealthWithDefaults

func NewHealthWithDefaults() *Health

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

func (*Health) GetCurrentTime

func (o *Health) GetCurrentTime() time.Time

GetCurrentTime returns the CurrentTime field value if set, zero value otherwise.

func (*Health) GetCurrentTimeOk

func (o *Health) GetCurrentTimeOk() (*time.Time, bool)

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

func (*Health) HasCurrentTime

func (o *Health) HasCurrentTime() bool

HasCurrentTime returns a boolean if a field has been set.

func (Health) MarshalJSON

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

func (*Health) SetCurrentTime

func (o *Health) SetCurrentTime(v time.Time)

SetCurrentTime gets a reference to the given time.Time and assigns it to the CurrentTime field.

func (Health) ToMap

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

type JobStatusesAPIService

type JobStatusesAPIService service

JobStatusesAPIService JobStatusesAPI service

func (*JobStatusesAPIService) ListJobStatuses

func (a *JobStatusesAPIService) ListJobStatuses(ctx context.Context, orgUnitId string) ApiListJobStatusesRequest

ListJobStatuses PREVIEW: Fetch job statuses

Fetch a list of job statuses for the given organization unit.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

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

func (*JobStatusesAPIService) ListJobStatusesExecute

Execute executes the request

@return ListResponse
type Links struct {
	FirstPage    *string `json:"firstPage,omitempty"`
	PreviousPage *string `json:"previousPage,omitempty"`
	NextPage     *string `json:"nextPage,omitempty"`
	LastPage     *string `json:"lastPage,omitempty"`
}

Links struct for Links

func NewLinks() *Links

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

func NewLinksWithDefaults

func NewLinksWithDefaults() *Links

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

func (*Links) GetFirstPage

func (o *Links) GetFirstPage() string

GetFirstPage returns the FirstPage field value if set, zero value otherwise.

func (*Links) GetFirstPageOk

func (o *Links) GetFirstPageOk() (*string, bool)

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

func (*Links) GetLastPage

func (o *Links) GetLastPage() string

GetLastPage returns the LastPage field value if set, zero value otherwise.

func (*Links) GetLastPageOk

func (o *Links) GetLastPageOk() (*string, bool)

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

func (*Links) GetNextPage

func (o *Links) GetNextPage() string

GetNextPage returns the NextPage field value if set, zero value otherwise.

func (*Links) GetNextPageOk

func (o *Links) GetNextPageOk() (*string, bool)

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

func (*Links) GetPreviousPage

func (o *Links) GetPreviousPage() string

GetPreviousPage returns the PreviousPage field value if set, zero value otherwise.

func (*Links) GetPreviousPageOk

func (o *Links) GetPreviousPageOk() (*string, bool)

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

func (*Links) HasFirstPage

func (o *Links) HasFirstPage() bool

HasFirstPage returns a boolean if a field has been set.

func (*Links) HasLastPage

func (o *Links) HasLastPage() bool

HasLastPage returns a boolean if a field has been set.

func (*Links) HasNextPage

func (o *Links) HasNextPage() bool

HasNextPage returns a boolean if a field has been set.

func (*Links) HasPreviousPage

func (o *Links) HasPreviousPage() bool

HasPreviousPage returns a boolean if a field has been set.

func (Links) MarshalJSON

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

func (*Links) SetFirstPage

func (o *Links) SetFirstPage(v string)

SetFirstPage gets a reference to the given string and assigns it to the FirstPage field.

func (*Links) SetLastPage

func (o *Links) SetLastPage(v string)

SetLastPage gets a reference to the given string and assigns it to the LastPage field.

func (*Links) SetNextPage

func (o *Links) SetNextPage(v string)

SetNextPage gets a reference to the given string and assigns it to the NextPage field.

func (*Links) SetPreviousPage

func (o *Links) SetPreviousPage(v string)

SetPreviousPage gets a reference to the given string and assigns it to the PreviousPage field.

func (Links) ToMap

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

type LinksResponse

type LinksResponse struct {
	Links *map[string]string `json:"_links,omitempty"`
}

LinksResponse struct for LinksResponse

func NewLinksResponse

func NewLinksResponse() *LinksResponse

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

func NewLinksResponseWithDefaults

func NewLinksResponseWithDefaults() *LinksResponse

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

func (o *LinksResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*LinksResponse) GetLinksOk

func (o *LinksResponse) GetLinksOk() (*map[string]string, 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 (o *LinksResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (LinksResponse) MarshalJSON

func (o LinksResponse) MarshalJSON() ([]byte, error)
func (o *LinksResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (LinksResponse) ToMap

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

type ListResponse

type ListResponse struct {
	Data       []map[string]interface{} `json:"data,omitempty"`
	TotalItems *int32                   `json:"totalItems,omitempty"`
}

ListResponse struct for ListResponse

func NewListResponse

func NewListResponse() *ListResponse

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

func NewListResponseWithDefaults

func NewListResponseWithDefaults() *ListResponse

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

func (*ListResponse) GetData

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

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

func (*ListResponse) GetDataOk

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

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

func (*ListResponse) GetTotalItems

func (o *ListResponse) GetTotalItems() int32

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

func (*ListResponse) GetTotalItemsOk

func (o *ListResponse) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponse) HasData

func (o *ListResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponse) HasTotalItems

func (o *ListResponse) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponse) MarshalJSON

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

func (*ListResponse) SetData

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

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

func (*ListResponse) SetTotalItems

func (o *ListResponse) SetTotalItems(v int32)

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

func (ListResponse) ToMap

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

type ListResponseCustomer

type ListResponseCustomer struct {
	Data       []Customer `json:"data,omitempty"`
	TotalItems *int32     `json:"totalItems,omitempty"`
}

ListResponseCustomer struct for ListResponseCustomer

func NewListResponseCustomer

func NewListResponseCustomer() *ListResponseCustomer

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

func NewListResponseCustomerWithDefaults

func NewListResponseCustomerWithDefaults() *ListResponseCustomer

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

func (*ListResponseCustomer) GetData

func (o *ListResponseCustomer) GetData() []Customer

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

func (*ListResponseCustomer) GetDataOk

func (o *ListResponseCustomer) GetDataOk() ([]Customer, bool)

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

func (*ListResponseCustomer) GetTotalItems

func (o *ListResponseCustomer) GetTotalItems() int32

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

func (*ListResponseCustomer) GetTotalItemsOk

func (o *ListResponseCustomer) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseCustomer) HasData

func (o *ListResponseCustomer) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponseCustomer) HasTotalItems

func (o *ListResponseCustomer) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseCustomer) MarshalJSON

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

func (*ListResponseCustomer) SetData

func (o *ListResponseCustomer) SetData(v []Customer)

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

func (*ListResponseCustomer) SetTotalItems

func (o *ListResponseCustomer) SetTotalItems(v int32)

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

func (ListResponseCustomer) ToMap

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

type ListResponseDetailsResponse

type ListResponseDetailsResponse struct {
	Data       []DetailsResponse `json:"data,omitempty"`
	TotalItems *int32            `json:"totalItems,omitempty"`
}

ListResponseDetailsResponse struct for ListResponseDetailsResponse

func NewListResponseDetailsResponse

func NewListResponseDetailsResponse() *ListResponseDetailsResponse

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

func NewListResponseDetailsResponseWithDefaults

func NewListResponseDetailsResponseWithDefaults() *ListResponseDetailsResponse

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

func (*ListResponseDetailsResponse) GetData

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

func (*ListResponseDetailsResponse) GetDataOk

func (o *ListResponseDetailsResponse) GetDataOk() ([]DetailsResponse, bool)

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

func (*ListResponseDetailsResponse) GetTotalItems

func (o *ListResponseDetailsResponse) GetTotalItems() int32

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

func (*ListResponseDetailsResponse) GetTotalItemsOk

func (o *ListResponseDetailsResponse) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseDetailsResponse) HasData

func (o *ListResponseDetailsResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponseDetailsResponse) HasTotalItems

func (o *ListResponseDetailsResponse) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseDetailsResponse) MarshalJSON

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

func (*ListResponseDetailsResponse) SetData

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

func (*ListResponseDetailsResponse) SetTotalItems

func (o *ListResponseDetailsResponse) SetTotalItems(v int32)

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

func (ListResponseDetailsResponse) ToMap

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

type ListResponseDeviceCustomProperty

type ListResponseDeviceCustomProperty struct {
	Data       []DeviceCustomProperty `json:"data,omitempty"`
	TotalItems *int32                 `json:"totalItems,omitempty"`
}

ListResponseDeviceCustomProperty struct for ListResponseDeviceCustomProperty

func NewListResponseDeviceCustomProperty

func NewListResponseDeviceCustomProperty() *ListResponseDeviceCustomProperty

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

func NewListResponseDeviceCustomPropertyWithDefaults

func NewListResponseDeviceCustomPropertyWithDefaults() *ListResponseDeviceCustomProperty

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

func (*ListResponseDeviceCustomProperty) GetData

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

func (*ListResponseDeviceCustomProperty) GetDataOk

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

func (*ListResponseDeviceCustomProperty) GetTotalItems

func (o *ListResponseDeviceCustomProperty) GetTotalItems() int32

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

func (*ListResponseDeviceCustomProperty) GetTotalItemsOk

func (o *ListResponseDeviceCustomProperty) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseDeviceCustomProperty) HasData

HasData returns a boolean if a field has been set.

func (*ListResponseDeviceCustomProperty) HasTotalItems

func (o *ListResponseDeviceCustomProperty) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseDeviceCustomProperty) MarshalJSON

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

func (*ListResponseDeviceCustomProperty) SetData

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

func (*ListResponseDeviceCustomProperty) SetTotalItems

func (o *ListResponseDeviceCustomProperty) SetTotalItems(v int32)

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

func (ListResponseDeviceCustomProperty) ToMap

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

type ListResponseDeviceServiceMonitoringStatus

type ListResponseDeviceServiceMonitoringStatus struct {
	Data       []DeviceServiceMonitoringStatus `json:"data,omitempty"`
	TotalItems *int32                          `json:"totalItems,omitempty"`
}

ListResponseDeviceServiceMonitoringStatus struct for ListResponseDeviceServiceMonitoringStatus

func NewListResponseDeviceServiceMonitoringStatus

func NewListResponseDeviceServiceMonitoringStatus() *ListResponseDeviceServiceMonitoringStatus

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

func NewListResponseDeviceServiceMonitoringStatusWithDefaults

func NewListResponseDeviceServiceMonitoringStatusWithDefaults() *ListResponseDeviceServiceMonitoringStatus

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

func (*ListResponseDeviceServiceMonitoringStatus) GetData

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

func (*ListResponseDeviceServiceMonitoringStatus) GetDataOk

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

func (*ListResponseDeviceServiceMonitoringStatus) GetTotalItems

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

func (*ListResponseDeviceServiceMonitoringStatus) GetTotalItemsOk

func (o *ListResponseDeviceServiceMonitoringStatus) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseDeviceServiceMonitoringStatus) HasData

HasData returns a boolean if a field has been set.

func (*ListResponseDeviceServiceMonitoringStatus) HasTotalItems

HasTotalItems returns a boolean if a field has been set.

func (ListResponseDeviceServiceMonitoringStatus) MarshalJSON

func (*ListResponseDeviceServiceMonitoringStatus) SetData

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

func (*ListResponseDeviceServiceMonitoringStatus) SetTotalItems

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

func (ListResponseDeviceServiceMonitoringStatus) ToMap

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

type ListResponseFilter

type ListResponseFilter struct {
	Data       []Filter `json:"data,omitempty"`
	TotalItems *int32   `json:"totalItems,omitempty"`
}

ListResponseFilter struct for ListResponseFilter

func NewListResponseFilter

func NewListResponseFilter() *ListResponseFilter

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

func NewListResponseFilterWithDefaults

func NewListResponseFilterWithDefaults() *ListResponseFilter

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

func (*ListResponseFilter) GetData

func (o *ListResponseFilter) GetData() []Filter

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

func (*ListResponseFilter) GetDataOk

func (o *ListResponseFilter) GetDataOk() ([]Filter, bool)

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

func (*ListResponseFilter) GetTotalItems

func (o *ListResponseFilter) GetTotalItems() int32

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

func (*ListResponseFilter) GetTotalItemsOk

func (o *ListResponseFilter) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseFilter) HasData

func (o *ListResponseFilter) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponseFilter) HasTotalItems

func (o *ListResponseFilter) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseFilter) MarshalJSON

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

func (*ListResponseFilter) SetData

func (o *ListResponseFilter) SetData(v []Filter)

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

func (*ListResponseFilter) SetTotalItems

func (o *ListResponseFilter) SetTotalItems(v int32)

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

func (ListResponseFilter) ToMap

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

type ListResponseMaintenanceWindowGetResponse

type ListResponseMaintenanceWindowGetResponse struct {
	Data       []MaintenanceWindowGetResponse `json:"data,omitempty"`
	TotalItems *int32                         `json:"totalItems,omitempty"`
}

ListResponseMaintenanceWindowGetResponse struct for ListResponseMaintenanceWindowGetResponse

func NewListResponseMaintenanceWindowGetResponse

func NewListResponseMaintenanceWindowGetResponse() *ListResponseMaintenanceWindowGetResponse

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

func NewListResponseMaintenanceWindowGetResponseWithDefaults

func NewListResponseMaintenanceWindowGetResponseWithDefaults() *ListResponseMaintenanceWindowGetResponse

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

func (*ListResponseMaintenanceWindowGetResponse) GetData

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

func (*ListResponseMaintenanceWindowGetResponse) GetDataOk

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

func (*ListResponseMaintenanceWindowGetResponse) GetTotalItems

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

func (*ListResponseMaintenanceWindowGetResponse) GetTotalItemsOk

func (o *ListResponseMaintenanceWindowGetResponse) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseMaintenanceWindowGetResponse) HasData

HasData returns a boolean if a field has been set.

func (*ListResponseMaintenanceWindowGetResponse) HasTotalItems

HasTotalItems returns a boolean if a field has been set.

func (ListResponseMaintenanceWindowGetResponse) MarshalJSON

func (*ListResponseMaintenanceWindowGetResponse) SetData

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

func (*ListResponseMaintenanceWindowGetResponse) SetTotalItems

func (o *ListResponseMaintenanceWindowGetResponse) SetTotalItems(v int32)

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

func (ListResponseMaintenanceWindowGetResponse) ToMap

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

type ListResponseOrganizationCustomProperty

type ListResponseOrganizationCustomProperty struct {
	Data       []OrganizationCustomProperty `json:"data,omitempty"`
	TotalItems *int32                       `json:"totalItems,omitempty"`
}

ListResponseOrganizationCustomProperty struct for ListResponseOrganizationCustomProperty

func NewListResponseOrganizationCustomProperty

func NewListResponseOrganizationCustomProperty() *ListResponseOrganizationCustomProperty

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

func NewListResponseOrganizationCustomPropertyWithDefaults

func NewListResponseOrganizationCustomPropertyWithDefaults() *ListResponseOrganizationCustomProperty

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

func (*ListResponseOrganizationCustomProperty) GetData

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

func (*ListResponseOrganizationCustomProperty) GetDataOk

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

func (*ListResponseOrganizationCustomProperty) GetTotalItems

func (o *ListResponseOrganizationCustomProperty) GetTotalItems() int32

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

func (*ListResponseOrganizationCustomProperty) GetTotalItemsOk

func (o *ListResponseOrganizationCustomProperty) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseOrganizationCustomProperty) HasData

HasData returns a boolean if a field has been set.

func (*ListResponseOrganizationCustomProperty) HasTotalItems

func (o *ListResponseOrganizationCustomProperty) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseOrganizationCustomProperty) MarshalJSON

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

func (*ListResponseOrganizationCustomProperty) SetData

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

func (*ListResponseOrganizationCustomProperty) SetTotalItems

func (o *ListResponseOrganizationCustomProperty) SetTotalItems(v int32)

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

func (ListResponseOrganizationCustomProperty) ToMap

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

type ListResponseOrganizationUnit

type ListResponseOrganizationUnit struct {
	Data       []OrganizationUnit `json:"data,omitempty"`
	TotalItems *int32             `json:"totalItems,omitempty"`
}

ListResponseOrganizationUnit struct for ListResponseOrganizationUnit

func NewListResponseOrganizationUnit

func NewListResponseOrganizationUnit() *ListResponseOrganizationUnit

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

func NewListResponseOrganizationUnitWithDefaults

func NewListResponseOrganizationUnitWithDefaults() *ListResponseOrganizationUnit

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

func (*ListResponseOrganizationUnit) GetData

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

func (*ListResponseOrganizationUnit) GetDataOk

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

func (*ListResponseOrganizationUnit) GetTotalItems

func (o *ListResponseOrganizationUnit) GetTotalItems() int32

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

func (*ListResponseOrganizationUnit) GetTotalItemsOk

func (o *ListResponseOrganizationUnit) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseOrganizationUnit) HasData

func (o *ListResponseOrganizationUnit) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponseOrganizationUnit) HasTotalItems

func (o *ListResponseOrganizationUnit) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseOrganizationUnit) MarshalJSON

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

func (*ListResponseOrganizationUnit) SetData

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

func (*ListResponseOrganizationUnit) SetTotalItems

func (o *ListResponseOrganizationUnit) SetTotalItems(v int32)

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

func (ListResponseOrganizationUnit) ToMap

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

type ListResponseServiceOrganization

type ListResponseServiceOrganization struct {
	Data       []ServiceOrganization `json:"data,omitempty"`
	TotalItems *int32                `json:"totalItems,omitempty"`
}

ListResponseServiceOrganization struct for ListResponseServiceOrganization

func NewListResponseServiceOrganization

func NewListResponseServiceOrganization() *ListResponseServiceOrganization

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

func NewListResponseServiceOrganizationWithDefaults

func NewListResponseServiceOrganizationWithDefaults() *ListResponseServiceOrganization

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

func (*ListResponseServiceOrganization) GetData

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

func (*ListResponseServiceOrganization) GetDataOk

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

func (*ListResponseServiceOrganization) GetTotalItems

func (o *ListResponseServiceOrganization) GetTotalItems() int32

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

func (*ListResponseServiceOrganization) GetTotalItemsOk

func (o *ListResponseServiceOrganization) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseServiceOrganization) HasData

HasData returns a boolean if a field has been set.

func (*ListResponseServiceOrganization) HasTotalItems

func (o *ListResponseServiceOrganization) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseServiceOrganization) MarshalJSON

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

func (*ListResponseServiceOrganization) SetData

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

func (*ListResponseServiceOrganization) SetTotalItems

func (o *ListResponseServiceOrganization) SetTotalItems(v int32)

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

func (ListResponseServiceOrganization) ToMap

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

type ListResponseSite

type ListResponseSite struct {
	Data       []Site `json:"data,omitempty"`
	TotalItems *int32 `json:"totalItems,omitempty"`
}

ListResponseSite struct for ListResponseSite

func NewListResponseSite

func NewListResponseSite() *ListResponseSite

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

func NewListResponseSiteWithDefaults

func NewListResponseSiteWithDefaults() *ListResponseSite

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

func (*ListResponseSite) GetData

func (o *ListResponseSite) GetData() []Site

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

func (*ListResponseSite) GetDataOk

func (o *ListResponseSite) GetDataOk() ([]Site, bool)

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

func (*ListResponseSite) GetTotalItems

func (o *ListResponseSite) GetTotalItems() int32

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

func (*ListResponseSite) GetTotalItemsOk

func (o *ListResponseSite) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseSite) HasData

func (o *ListResponseSite) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponseSite) HasTotalItems

func (o *ListResponseSite) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseSite) MarshalJSON

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

func (*ListResponseSite) SetData

func (o *ListResponseSite) SetData(v []Site)

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

func (*ListResponseSite) SetTotalItems

func (o *ListResponseSite) SetTotalItems(v int32)

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

func (ListResponseSite) ToMap

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

type ListResponseTaskStatusResponse

type ListResponseTaskStatusResponse struct {
	Data       []TaskStatusResponse `json:"data,omitempty"`
	TotalItems *int32               `json:"totalItems,omitempty"`
}

ListResponseTaskStatusResponse struct for ListResponseTaskStatusResponse

func NewListResponseTaskStatusResponse

func NewListResponseTaskStatusResponse() *ListResponseTaskStatusResponse

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

func NewListResponseTaskStatusResponseWithDefaults

func NewListResponseTaskStatusResponseWithDefaults() *ListResponseTaskStatusResponse

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

func (*ListResponseTaskStatusResponse) GetData

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

func (*ListResponseTaskStatusResponse) GetDataOk

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

func (*ListResponseTaskStatusResponse) GetTotalItems

func (o *ListResponseTaskStatusResponse) GetTotalItems() int32

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

func (*ListResponseTaskStatusResponse) GetTotalItemsOk

func (o *ListResponseTaskStatusResponse) GetTotalItemsOk() (*int32, bool)

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

func (*ListResponseTaskStatusResponse) HasData

func (o *ListResponseTaskStatusResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListResponseTaskStatusResponse) HasTotalItems

func (o *ListResponseTaskStatusResponse) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ListResponseTaskStatusResponse) MarshalJSON

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

func (*ListResponseTaskStatusResponse) SetData

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

func (*ListResponseTaskStatusResponse) SetTotalItems

func (o *ListResponseTaskStatusResponse) SetTotalItems(v int32)

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

func (ListResponseTaskStatusResponse) ToMap

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

type MaintenanceWindowGetResponse

type MaintenanceWindowGetResponse struct {
	ScheduleID           *int32             `json:"scheduleID,omitempty"`
	UserName             *string            `json:"userName,omitempty"`
	LastUpdated          *string            `json:"lastUpdated,omitempty"`
	ApplicableAction     []ApplicableAction `json:"applicableAction,omitempty"`
	Name                 *string            `json:"name,omitempty"`
	Type                 *string            `json:"type,omitempty"`
	Cron                 *string            `json:"cron,omitempty"`
	Duration             *int32             `json:"duration,omitempty"`
	Enabled              *bool              `json:"enabled,omitempty"`
	MaxDowntime          *int32             `json:"maxDowntime,omitempty"`
	RebootMethod         *string            `json:"rebootMethod,omitempty"`
	RebootDelay          *int32             `json:"rebootDelay,omitempty"`
	DowntimeOnAction     *bool              `json:"downtimeOnAction,omitempty"`
	UserMessageEnabled   *bool              `json:"userMessageEnabled,omitempty"`
	UserMessage          *string            `json:"userMessage,omitempty"`
	MessageSenderEnabled *bool              `json:"messageSenderEnabled,omitempty"`
	MessageSender        *string            `json:"messageSender,omitempty"`
	PreserveStateEnabled *bool              `json:"preserveStateEnabled,omitempty"`
	RuleID               *int32             `json:"ruleID,omitempty"`
	RuleName             *string            `json:"ruleName,omitempty"`
}

MaintenanceWindowGetResponse Response for list of Maintenance Windows.

func NewMaintenanceWindowGetResponse

func NewMaintenanceWindowGetResponse() *MaintenanceWindowGetResponse

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

func NewMaintenanceWindowGetResponseWithDefaults

func NewMaintenanceWindowGetResponseWithDefaults() *MaintenanceWindowGetResponse

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

func (*MaintenanceWindowGetResponse) GetApplicableAction

func (o *MaintenanceWindowGetResponse) GetApplicableAction() []ApplicableAction

GetApplicableAction returns the ApplicableAction field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetApplicableActionOk

func (o *MaintenanceWindowGetResponse) GetApplicableActionOk() ([]ApplicableAction, bool)

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

func (*MaintenanceWindowGetResponse) GetCron

func (o *MaintenanceWindowGetResponse) GetCron() string

GetCron returns the Cron field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetCronOk

func (o *MaintenanceWindowGetResponse) GetCronOk() (*string, bool)

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

func (*MaintenanceWindowGetResponse) GetDowntimeOnAction

func (o *MaintenanceWindowGetResponse) GetDowntimeOnAction() bool

GetDowntimeOnAction returns the DowntimeOnAction field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetDowntimeOnActionOk

func (o *MaintenanceWindowGetResponse) GetDowntimeOnActionOk() (*bool, bool)

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

func (*MaintenanceWindowGetResponse) GetDuration

func (o *MaintenanceWindowGetResponse) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetDurationOk

func (o *MaintenanceWindowGetResponse) GetDurationOk() (*int32, bool)

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

func (*MaintenanceWindowGetResponse) GetEnabled

func (o *MaintenanceWindowGetResponse) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetEnabledOk

func (o *MaintenanceWindowGetResponse) GetEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowGetResponse) GetLastUpdated

func (o *MaintenanceWindowGetResponse) GetLastUpdated() string

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetLastUpdatedOk

func (o *MaintenanceWindowGetResponse) GetLastUpdatedOk() (*string, 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 (*MaintenanceWindowGetResponse) GetMaxDowntime

func (o *MaintenanceWindowGetResponse) GetMaxDowntime() int32

GetMaxDowntime returns the MaxDowntime field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetMaxDowntimeOk

func (o *MaintenanceWindowGetResponse) GetMaxDowntimeOk() (*int32, bool)

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

func (*MaintenanceWindowGetResponse) GetMessageSender

func (o *MaintenanceWindowGetResponse) GetMessageSender() string

GetMessageSender returns the MessageSender field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetMessageSenderEnabled

func (o *MaintenanceWindowGetResponse) GetMessageSenderEnabled() bool

GetMessageSenderEnabled returns the MessageSenderEnabled field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetMessageSenderEnabledOk

func (o *MaintenanceWindowGetResponse) GetMessageSenderEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowGetResponse) GetMessageSenderOk

func (o *MaintenanceWindowGetResponse) GetMessageSenderOk() (*string, bool)

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

func (*MaintenanceWindowGetResponse) GetName

func (o *MaintenanceWindowGetResponse) GetName() string

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

func (*MaintenanceWindowGetResponse) GetNameOk

func (o *MaintenanceWindowGetResponse) 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 (*MaintenanceWindowGetResponse) GetPreserveStateEnabled

func (o *MaintenanceWindowGetResponse) GetPreserveStateEnabled() bool

GetPreserveStateEnabled returns the PreserveStateEnabled field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetPreserveStateEnabledOk

func (o *MaintenanceWindowGetResponse) GetPreserveStateEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowGetResponse) GetRebootDelay

func (o *MaintenanceWindowGetResponse) GetRebootDelay() int32

GetRebootDelay returns the RebootDelay field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetRebootDelayOk

func (o *MaintenanceWindowGetResponse) GetRebootDelayOk() (*int32, bool)

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

func (*MaintenanceWindowGetResponse) GetRebootMethod

func (o *MaintenanceWindowGetResponse) GetRebootMethod() string

GetRebootMethod returns the RebootMethod field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetRebootMethodOk

func (o *MaintenanceWindowGetResponse) GetRebootMethodOk() (*string, bool)

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

func (*MaintenanceWindowGetResponse) GetRuleID

func (o *MaintenanceWindowGetResponse) GetRuleID() int32

GetRuleID returns the RuleID field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetRuleIDOk

func (o *MaintenanceWindowGetResponse) GetRuleIDOk() (*int32, bool)

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

func (*MaintenanceWindowGetResponse) GetRuleName

func (o *MaintenanceWindowGetResponse) GetRuleName() string

GetRuleName returns the RuleName field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetRuleNameOk

func (o *MaintenanceWindowGetResponse) GetRuleNameOk() (*string, bool)

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

func (*MaintenanceWindowGetResponse) GetScheduleID

func (o *MaintenanceWindowGetResponse) GetScheduleID() int32

GetScheduleID returns the ScheduleID field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetScheduleIDOk

func (o *MaintenanceWindowGetResponse) GetScheduleIDOk() (*int32, bool)

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

func (*MaintenanceWindowGetResponse) GetType

func (o *MaintenanceWindowGetResponse) GetType() string

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

func (*MaintenanceWindowGetResponse) GetTypeOk

func (o *MaintenanceWindowGetResponse) 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 (*MaintenanceWindowGetResponse) GetUserMessage

func (o *MaintenanceWindowGetResponse) GetUserMessage() string

GetUserMessage returns the UserMessage field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetUserMessageEnabled

func (o *MaintenanceWindowGetResponse) GetUserMessageEnabled() bool

GetUserMessageEnabled returns the UserMessageEnabled field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetUserMessageEnabledOk

func (o *MaintenanceWindowGetResponse) GetUserMessageEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowGetResponse) GetUserMessageOk

func (o *MaintenanceWindowGetResponse) GetUserMessageOk() (*string, bool)

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

func (*MaintenanceWindowGetResponse) GetUserName

func (o *MaintenanceWindowGetResponse) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*MaintenanceWindowGetResponse) GetUserNameOk

func (o *MaintenanceWindowGetResponse) 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 (*MaintenanceWindowGetResponse) HasApplicableAction

func (o *MaintenanceWindowGetResponse) HasApplicableAction() bool

HasApplicableAction returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasCron

func (o *MaintenanceWindowGetResponse) HasCron() bool

HasCron returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasDowntimeOnAction

func (o *MaintenanceWindowGetResponse) HasDowntimeOnAction() bool

HasDowntimeOnAction returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasDuration

func (o *MaintenanceWindowGetResponse) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasEnabled

func (o *MaintenanceWindowGetResponse) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasLastUpdated

func (o *MaintenanceWindowGetResponse) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasMaxDowntime

func (o *MaintenanceWindowGetResponse) HasMaxDowntime() bool

HasMaxDowntime returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasMessageSender

func (o *MaintenanceWindowGetResponse) HasMessageSender() bool

HasMessageSender returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasMessageSenderEnabled

func (o *MaintenanceWindowGetResponse) HasMessageSenderEnabled() bool

HasMessageSenderEnabled returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasName

func (o *MaintenanceWindowGetResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasPreserveStateEnabled

func (o *MaintenanceWindowGetResponse) HasPreserveStateEnabled() bool

HasPreserveStateEnabled returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasRebootDelay

func (o *MaintenanceWindowGetResponse) HasRebootDelay() bool

HasRebootDelay returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasRebootMethod

func (o *MaintenanceWindowGetResponse) HasRebootMethod() bool

HasRebootMethod returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasRuleID

func (o *MaintenanceWindowGetResponse) HasRuleID() bool

HasRuleID returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasRuleName

func (o *MaintenanceWindowGetResponse) HasRuleName() bool

HasRuleName returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasScheduleID

func (o *MaintenanceWindowGetResponse) HasScheduleID() bool

HasScheduleID returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasType

func (o *MaintenanceWindowGetResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasUserMessage

func (o *MaintenanceWindowGetResponse) HasUserMessage() bool

HasUserMessage returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasUserMessageEnabled

func (o *MaintenanceWindowGetResponse) HasUserMessageEnabled() bool

HasUserMessageEnabled returns a boolean if a field has been set.

func (*MaintenanceWindowGetResponse) HasUserName

func (o *MaintenanceWindowGetResponse) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (MaintenanceWindowGetResponse) MarshalJSON

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

func (*MaintenanceWindowGetResponse) SetApplicableAction

func (o *MaintenanceWindowGetResponse) SetApplicableAction(v []ApplicableAction)

SetApplicableAction gets a reference to the given []ApplicableAction and assigns it to the ApplicableAction field.

func (*MaintenanceWindowGetResponse) SetCron

func (o *MaintenanceWindowGetResponse) SetCron(v string)

SetCron gets a reference to the given string and assigns it to the Cron field.

func (*MaintenanceWindowGetResponse) SetDowntimeOnAction

func (o *MaintenanceWindowGetResponse) SetDowntimeOnAction(v bool)

SetDowntimeOnAction gets a reference to the given bool and assigns it to the DowntimeOnAction field.

func (*MaintenanceWindowGetResponse) SetDuration

func (o *MaintenanceWindowGetResponse) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*MaintenanceWindowGetResponse) SetEnabled

func (o *MaintenanceWindowGetResponse) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*MaintenanceWindowGetResponse) SetLastUpdated

func (o *MaintenanceWindowGetResponse) SetLastUpdated(v string)

SetLastUpdated gets a reference to the given string and assigns it to the LastUpdated field.

func (*MaintenanceWindowGetResponse) SetMaxDowntime

func (o *MaintenanceWindowGetResponse) SetMaxDowntime(v int32)

SetMaxDowntime gets a reference to the given int32 and assigns it to the MaxDowntime field.

func (*MaintenanceWindowGetResponse) SetMessageSender

func (o *MaintenanceWindowGetResponse) SetMessageSender(v string)

SetMessageSender gets a reference to the given string and assigns it to the MessageSender field.

func (*MaintenanceWindowGetResponse) SetMessageSenderEnabled

func (o *MaintenanceWindowGetResponse) SetMessageSenderEnabled(v bool)

SetMessageSenderEnabled gets a reference to the given bool and assigns it to the MessageSenderEnabled field.

func (*MaintenanceWindowGetResponse) SetName

func (o *MaintenanceWindowGetResponse) SetName(v string)

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

func (*MaintenanceWindowGetResponse) SetPreserveStateEnabled

func (o *MaintenanceWindowGetResponse) SetPreserveStateEnabled(v bool)

SetPreserveStateEnabled gets a reference to the given bool and assigns it to the PreserveStateEnabled field.

func (*MaintenanceWindowGetResponse) SetRebootDelay

func (o *MaintenanceWindowGetResponse) SetRebootDelay(v int32)

SetRebootDelay gets a reference to the given int32 and assigns it to the RebootDelay field.

func (*MaintenanceWindowGetResponse) SetRebootMethod

func (o *MaintenanceWindowGetResponse) SetRebootMethod(v string)

SetRebootMethod gets a reference to the given string and assigns it to the RebootMethod field.

func (*MaintenanceWindowGetResponse) SetRuleID

func (o *MaintenanceWindowGetResponse) SetRuleID(v int32)

SetRuleID gets a reference to the given int32 and assigns it to the RuleID field.

func (*MaintenanceWindowGetResponse) SetRuleName

func (o *MaintenanceWindowGetResponse) SetRuleName(v string)

SetRuleName gets a reference to the given string and assigns it to the RuleName field.

func (*MaintenanceWindowGetResponse) SetScheduleID

func (o *MaintenanceWindowGetResponse) SetScheduleID(v int32)

SetScheduleID gets a reference to the given int32 and assigns it to the ScheduleID field.

func (*MaintenanceWindowGetResponse) SetType

func (o *MaintenanceWindowGetResponse) SetType(v string)

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

func (*MaintenanceWindowGetResponse) SetUserMessage

func (o *MaintenanceWindowGetResponse) SetUserMessage(v string)

SetUserMessage gets a reference to the given string and assigns it to the UserMessage field.

func (*MaintenanceWindowGetResponse) SetUserMessageEnabled

func (o *MaintenanceWindowGetResponse) SetUserMessageEnabled(v bool)

SetUserMessageEnabled gets a reference to the given bool and assigns it to the UserMessageEnabled field.

func (*MaintenanceWindowGetResponse) SetUserName

func (o *MaintenanceWindowGetResponse) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (MaintenanceWindowGetResponse) ToMap

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

type MaintenanceWindowRequest

type MaintenanceWindowRequest struct {
	// Actions Applicable To Window
	ApplicableAction []ApplicableAction `json:"applicableAction"`
	// Schedule represented as Cron
	Cron string `json:"cron"`
	// Maintenance Window should last for
	Duration int32 `json:"duration"`
	// Maintenance Window should last for
	Enabled bool `json:"enabled"`
	// Name of Maintenance Window
	Name string `json:"name"`
	// Type of Maintenance Window (only allowed type is currently 'action')
	Type string `json:"type"`
	// Place Device in Downtime During Reboot (Reboot Window)
	DowntimeOnAction *bool `json:"downtimeOnAction,omitempty"`
	// Force Device out of Downtime After (Reboot Window) - used when 'downtimeOnAction' is true
	MaxDowntime *int32 `json:"maxDowntime,omitempty"`
	// Reboot Method (Reboot Window), must be one of: ['allowUserToPostpone', 'forceUserToReboot', 'forceRebootWithoutNotification', 'onlyAcceptedReboot']
	RebootMethod *string `json:"rebootMethod,omitempty"`
	// Minutes before continuing with reboot. (Reboot Window)
	RebootDelay *int32 `json:"rebootDelay,omitempty"`
	// Display Custom Message To User (Reboot Window)
	UserMessageEnabled *bool `json:"userMessageEnabled,omitempty"`
	// Custom message to display to user when 'userMessageEnabled' is true (Reboot Window)
	UserMessage *string `json:"userMessage,omitempty"`
	// Enable Custom Message Sender (Reboot Window)
	MessageSenderEnabled *bool `json:"messageSenderEnabled,omitempty"`
	// Message from when 'messageSenderEnabled' is true (Reboot Window)
	MessageSender *string `json:"messageSender,omitempty"`
	// Preserve State of Device During Reboot (/g flag) (Reboot Window)
	PreserveStateEnabled *bool `json:"preserveStateEnabled,omitempty"`
}

MaintenanceWindowRequest Represents a single maintenance Window.

func NewMaintenanceWindowRequest

func NewMaintenanceWindowRequest(applicableAction []ApplicableAction, cron string, duration int32, enabled bool, name string, type_ string) *MaintenanceWindowRequest

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

func NewMaintenanceWindowRequestWithDefaults

func NewMaintenanceWindowRequestWithDefaults() *MaintenanceWindowRequest

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

func (*MaintenanceWindowRequest) GetApplicableAction

func (o *MaintenanceWindowRequest) GetApplicableAction() []ApplicableAction

GetApplicableAction returns the ApplicableAction field value

func (*MaintenanceWindowRequest) GetApplicableActionOk

func (o *MaintenanceWindowRequest) GetApplicableActionOk() ([]ApplicableAction, bool)

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

func (*MaintenanceWindowRequest) GetCron

func (o *MaintenanceWindowRequest) GetCron() string

GetCron returns the Cron field value

func (*MaintenanceWindowRequest) GetCronOk

func (o *MaintenanceWindowRequest) GetCronOk() (*string, bool)

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

func (*MaintenanceWindowRequest) GetDowntimeOnAction

func (o *MaintenanceWindowRequest) GetDowntimeOnAction() bool

GetDowntimeOnAction returns the DowntimeOnAction field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetDowntimeOnActionOk

func (o *MaintenanceWindowRequest) GetDowntimeOnActionOk() (*bool, bool)

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

func (*MaintenanceWindowRequest) GetDuration

func (o *MaintenanceWindowRequest) GetDuration() int32

GetDuration returns the Duration field value

func (*MaintenanceWindowRequest) GetDurationOk

func (o *MaintenanceWindowRequest) GetDurationOk() (*int32, bool)

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

func (*MaintenanceWindowRequest) GetEnabled

func (o *MaintenanceWindowRequest) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*MaintenanceWindowRequest) GetEnabledOk

func (o *MaintenanceWindowRequest) GetEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowRequest) GetMaxDowntime

func (o *MaintenanceWindowRequest) GetMaxDowntime() int32

GetMaxDowntime returns the MaxDowntime field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetMaxDowntimeOk

func (o *MaintenanceWindowRequest) GetMaxDowntimeOk() (*int32, bool)

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

func (*MaintenanceWindowRequest) GetMessageSender

func (o *MaintenanceWindowRequest) GetMessageSender() string

GetMessageSender returns the MessageSender field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetMessageSenderEnabled

func (o *MaintenanceWindowRequest) GetMessageSenderEnabled() bool

GetMessageSenderEnabled returns the MessageSenderEnabled field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetMessageSenderEnabledOk

func (o *MaintenanceWindowRequest) GetMessageSenderEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowRequest) GetMessageSenderOk

func (o *MaintenanceWindowRequest) GetMessageSenderOk() (*string, bool)

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

func (*MaintenanceWindowRequest) GetName

func (o *MaintenanceWindowRequest) GetName() string

GetName returns the Name field value

func (*MaintenanceWindowRequest) GetNameOk

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

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

func (*MaintenanceWindowRequest) GetPreserveStateEnabled

func (o *MaintenanceWindowRequest) GetPreserveStateEnabled() bool

GetPreserveStateEnabled returns the PreserveStateEnabled field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetPreserveStateEnabledOk

func (o *MaintenanceWindowRequest) GetPreserveStateEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowRequest) GetRebootDelay

func (o *MaintenanceWindowRequest) GetRebootDelay() int32

GetRebootDelay returns the RebootDelay field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetRebootDelayOk

func (o *MaintenanceWindowRequest) GetRebootDelayOk() (*int32, bool)

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

func (*MaintenanceWindowRequest) GetRebootMethod

func (o *MaintenanceWindowRequest) GetRebootMethod() string

GetRebootMethod returns the RebootMethod field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetRebootMethodOk

func (o *MaintenanceWindowRequest) GetRebootMethodOk() (*string, bool)

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

func (*MaintenanceWindowRequest) GetType

func (o *MaintenanceWindowRequest) GetType() string

GetType returns the Type field value

func (*MaintenanceWindowRequest) GetTypeOk

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

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

func (*MaintenanceWindowRequest) GetUserMessage

func (o *MaintenanceWindowRequest) GetUserMessage() string

GetUserMessage returns the UserMessage field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetUserMessageEnabled

func (o *MaintenanceWindowRequest) GetUserMessageEnabled() bool

GetUserMessageEnabled returns the UserMessageEnabled field value if set, zero value otherwise.

func (*MaintenanceWindowRequest) GetUserMessageEnabledOk

func (o *MaintenanceWindowRequest) GetUserMessageEnabledOk() (*bool, bool)

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

func (*MaintenanceWindowRequest) GetUserMessageOk

func (o *MaintenanceWindowRequest) GetUserMessageOk() (*string, bool)

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

func (*MaintenanceWindowRequest) HasDowntimeOnAction

func (o *MaintenanceWindowRequest) HasDowntimeOnAction() bool

HasDowntimeOnAction returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasMaxDowntime

func (o *MaintenanceWindowRequest) HasMaxDowntime() bool

HasMaxDowntime returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasMessageSender

func (o *MaintenanceWindowRequest) HasMessageSender() bool

HasMessageSender returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasMessageSenderEnabled

func (o *MaintenanceWindowRequest) HasMessageSenderEnabled() bool

HasMessageSenderEnabled returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasPreserveStateEnabled

func (o *MaintenanceWindowRequest) HasPreserveStateEnabled() bool

HasPreserveStateEnabled returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasRebootDelay

func (o *MaintenanceWindowRequest) HasRebootDelay() bool

HasRebootDelay returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasRebootMethod

func (o *MaintenanceWindowRequest) HasRebootMethod() bool

HasRebootMethod returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasUserMessage

func (o *MaintenanceWindowRequest) HasUserMessage() bool

HasUserMessage returns a boolean if a field has been set.

func (*MaintenanceWindowRequest) HasUserMessageEnabled

func (o *MaintenanceWindowRequest) HasUserMessageEnabled() bool

HasUserMessageEnabled returns a boolean if a field has been set.

func (MaintenanceWindowRequest) MarshalJSON

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

func (*MaintenanceWindowRequest) SetApplicableAction

func (o *MaintenanceWindowRequest) SetApplicableAction(v []ApplicableAction)

SetApplicableAction sets field value

func (*MaintenanceWindowRequest) SetCron

func (o *MaintenanceWindowRequest) SetCron(v string)

SetCron sets field value

func (*MaintenanceWindowRequest) SetDowntimeOnAction

func (o *MaintenanceWindowRequest) SetDowntimeOnAction(v bool)

SetDowntimeOnAction gets a reference to the given bool and assigns it to the DowntimeOnAction field.

func (*MaintenanceWindowRequest) SetDuration

func (o *MaintenanceWindowRequest) SetDuration(v int32)

SetDuration sets field value

func (*MaintenanceWindowRequest) SetEnabled

func (o *MaintenanceWindowRequest) SetEnabled(v bool)

SetEnabled sets field value

func (*MaintenanceWindowRequest) SetMaxDowntime

func (o *MaintenanceWindowRequest) SetMaxDowntime(v int32)

SetMaxDowntime gets a reference to the given int32 and assigns it to the MaxDowntime field.

func (*MaintenanceWindowRequest) SetMessageSender

func (o *MaintenanceWindowRequest) SetMessageSender(v string)

SetMessageSender gets a reference to the given string and assigns it to the MessageSender field.

func (*MaintenanceWindowRequest) SetMessageSenderEnabled

func (o *MaintenanceWindowRequest) SetMessageSenderEnabled(v bool)

SetMessageSenderEnabled gets a reference to the given bool and assigns it to the MessageSenderEnabled field.

func (*MaintenanceWindowRequest) SetName

func (o *MaintenanceWindowRequest) SetName(v string)

SetName sets field value

func (*MaintenanceWindowRequest) SetPreserveStateEnabled

func (o *MaintenanceWindowRequest) SetPreserveStateEnabled(v bool)

SetPreserveStateEnabled gets a reference to the given bool and assigns it to the PreserveStateEnabled field.

func (*MaintenanceWindowRequest) SetRebootDelay

func (o *MaintenanceWindowRequest) SetRebootDelay(v int32)

SetRebootDelay gets a reference to the given int32 and assigns it to the RebootDelay field.

func (*MaintenanceWindowRequest) SetRebootMethod

func (o *MaintenanceWindowRequest) SetRebootMethod(v string)

SetRebootMethod gets a reference to the given string and assigns it to the RebootMethod field.

func (*MaintenanceWindowRequest) SetType

func (o *MaintenanceWindowRequest) SetType(v string)

SetType sets field value

func (*MaintenanceWindowRequest) SetUserMessage

func (o *MaintenanceWindowRequest) SetUserMessage(v string)

SetUserMessage gets a reference to the given string and assigns it to the UserMessage field.

func (*MaintenanceWindowRequest) SetUserMessageEnabled

func (o *MaintenanceWindowRequest) SetUserMessageEnabled(v bool)

SetUserMessageEnabled gets a reference to the given bool and assigns it to the UserMessageEnabled field.

func (MaintenanceWindowRequest) ToMap

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

func (*MaintenanceWindowRequest) UnmarshalJSON

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

type MaintenanceWindowResponse

type MaintenanceWindowResponse struct {
	Success *bool `json:"success,omitempty"`
}

MaintenanceWindowResponse General Response for maintenance window action.

func NewMaintenanceWindowResponse

func NewMaintenanceWindowResponse() *MaintenanceWindowResponse

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

func NewMaintenanceWindowResponseWithDefaults

func NewMaintenanceWindowResponseWithDefaults() *MaintenanceWindowResponse

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

func (*MaintenanceWindowResponse) GetSuccess

func (o *MaintenanceWindowResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*MaintenanceWindowResponse) GetSuccessOk

func (o *MaintenanceWindowResponse) GetSuccessOk() (*bool, bool)

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

func (*MaintenanceWindowResponse) HasSuccess

func (o *MaintenanceWindowResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (MaintenanceWindowResponse) MarshalJSON

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

func (*MaintenanceWindowResponse) SetSuccess

func (o *MaintenanceWindowResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (MaintenanceWindowResponse) ToMap

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

type MaintenanceWindowsAPIService

type MaintenanceWindowsAPIService service

MaintenanceWindowsAPIService MaintenanceWindowsAPI service

func (*MaintenanceWindowsAPIService) AddMaintenanceWindowsByDeviceIds

AddMaintenanceWindowsByDeviceIds PREVIEW : Adds set of maintenance windows for a list of given devices.

Adds set of maintenance windows for a given device.<br/><br/><b>NOTE: </b>This endpoint is currently in a preview stage.<br/><br/>The provided list of maintenance windows, will be applied to every device in the list.

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

func (*MaintenanceWindowsAPIService) AddMaintenanceWindowsByDeviceIdsExecute

Execute executes the request

@return MaintenanceWindowResponse

func (*MaintenanceWindowsAPIService) DeleteMaintenanceWindowsByScheduleIds

DeleteMaintenanceWindowsByScheduleIds PREVIEW : Deletes device patch maintenance windows by given list of Schedule Ids.

Deletes patch maintenance windows by given list of Schedule Ids. Currently only supports Patch maintenance windows. And only windows created at the device level can be deleted.<br/><br/><b>NOTE: </b>This endpoint is currently in a preview stage.<br/><br/>

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

func (*MaintenanceWindowsAPIService) DeleteMaintenanceWindowsByScheduleIdsExecute

Execute executes the request

@return MaintenanceWindowResponse

func (*MaintenanceWindowsAPIService) GetMaintenanceWindowsByDeviceId

func (a *MaintenanceWindowsAPIService) GetMaintenanceWindowsByDeviceId(ctx context.Context, deviceId string) ApiGetMaintenanceWindowsByDeviceIdRequest

GetMaintenanceWindowsByDeviceId PREVIEW : Retrieves all maintenance windows for a device.

Retrieves all maintenance windows for a given device.<br/><br/><b>NOTE: </b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId ID of the device for which information needs to be fetched.
@return ApiGetMaintenanceWindowsByDeviceIdRequest

func (*MaintenanceWindowsAPIService) GetMaintenanceWindowsByDeviceIdExecute

Execute executes the request

@return ListResponseMaintenanceWindowGetResponse

type MaintenanceWindowsDeleteRequest

type MaintenanceWindowsDeleteRequest struct {
	// Schedule Ids for windows which are to be deleted
	ScheduleIds []int32 `json:"scheduleIds"`
}

MaintenanceWindowsDeleteRequest Represents a request to delete Maintenance Windows.

func NewMaintenanceWindowsDeleteRequest

func NewMaintenanceWindowsDeleteRequest(scheduleIds []int32) *MaintenanceWindowsDeleteRequest

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

func NewMaintenanceWindowsDeleteRequestWithDefaults

func NewMaintenanceWindowsDeleteRequestWithDefaults() *MaintenanceWindowsDeleteRequest

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

func (*MaintenanceWindowsDeleteRequest) GetScheduleIds

func (o *MaintenanceWindowsDeleteRequest) GetScheduleIds() []int32

GetScheduleIds returns the ScheduleIds field value

func (*MaintenanceWindowsDeleteRequest) GetScheduleIdsOk

func (o *MaintenanceWindowsDeleteRequest) GetScheduleIdsOk() ([]int32, bool)

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

func (MaintenanceWindowsDeleteRequest) MarshalJSON

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

func (*MaintenanceWindowsDeleteRequest) SetScheduleIds

func (o *MaintenanceWindowsDeleteRequest) SetScheduleIds(v []int32)

SetScheduleIds sets field value

func (MaintenanceWindowsDeleteRequest) ToMap

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

func (*MaintenanceWindowsDeleteRequest) UnmarshalJSON

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

type MaintenanceWindowsRequest

type MaintenanceWindowsRequest struct {
	DeviceIDs          []int32                    `json:"deviceIDs,omitempty"`
	MaintenanceWindows []MaintenanceWindowRequest `json:"maintenanceWindows,omitempty"`
}

MaintenanceWindowsRequest Request for creating a set of maintenance Windows to a list of devices.

func NewMaintenanceWindowsRequest

func NewMaintenanceWindowsRequest() *MaintenanceWindowsRequest

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

func NewMaintenanceWindowsRequestWithDefaults

func NewMaintenanceWindowsRequestWithDefaults() *MaintenanceWindowsRequest

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

func (*MaintenanceWindowsRequest) GetDeviceIDs

func (o *MaintenanceWindowsRequest) GetDeviceIDs() []int32

GetDeviceIDs returns the DeviceIDs field value if set, zero value otherwise.

func (*MaintenanceWindowsRequest) GetDeviceIDsOk

func (o *MaintenanceWindowsRequest) GetDeviceIDsOk() ([]int32, 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 (*MaintenanceWindowsRequest) GetMaintenanceWindows

func (o *MaintenanceWindowsRequest) GetMaintenanceWindows() []MaintenanceWindowRequest

GetMaintenanceWindows returns the MaintenanceWindows field value if set, zero value otherwise.

func (*MaintenanceWindowsRequest) GetMaintenanceWindowsOk

func (o *MaintenanceWindowsRequest) GetMaintenanceWindowsOk() ([]MaintenanceWindowRequest, bool)

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

func (*MaintenanceWindowsRequest) HasDeviceIDs

func (o *MaintenanceWindowsRequest) HasDeviceIDs() bool

HasDeviceIDs returns a boolean if a field has been set.

func (*MaintenanceWindowsRequest) HasMaintenanceWindows

func (o *MaintenanceWindowsRequest) HasMaintenanceWindows() bool

HasMaintenanceWindows returns a boolean if a field has been set.

func (MaintenanceWindowsRequest) MarshalJSON

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

func (*MaintenanceWindowsRequest) SetDeviceIDs

func (o *MaintenanceWindowsRequest) SetDeviceIDs(v []int32)

SetDeviceIDs gets a reference to the given []int32 and assigns it to the DeviceIDs field.

func (*MaintenanceWindowsRequest) SetMaintenanceWindows

func (o *MaintenanceWindowsRequest) SetMaintenanceWindows(v []MaintenanceWindowRequest)

SetMaintenanceWindows gets a reference to the given []MaintenanceWindowRequest and assigns it to the MaintenanceWindows field.

func (MaintenanceWindowsRequest) ToMap

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

type MappedNullable

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

type NullableAccessGroupDetails

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

func NewNullableAccessGroupDetails

func NewNullableAccessGroupDetails(val *AccessGroupDetails) *NullableAccessGroupDetails

func (NullableAccessGroupDetails) Get

func (NullableAccessGroupDetails) IsSet

func (v NullableAccessGroupDetails) IsSet() bool

func (NullableAccessGroupDetails) MarshalJSON

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

func (*NullableAccessGroupDetails) Set

func (*NullableAccessGroupDetails) UnmarshalJSON

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

func (*NullableAccessGroupDetails) Unset

func (v *NullableAccessGroupDetails) Unset()

type NullableAccessGroupGetResponse

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

func (NullableAccessGroupGetResponse) Get

func (NullableAccessGroupGetResponse) IsSet

func (NullableAccessGroupGetResponse) MarshalJSON

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

func (*NullableAccessGroupGetResponse) Set

func (*NullableAccessGroupGetResponse) UnmarshalJSON

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

func (*NullableAccessGroupGetResponse) Unset

func (v *NullableAccessGroupGetResponse) Unset()

type NullableAction

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

func NewNullableAction

func NewNullableAction(val *Action) *NullableAction

func (NullableAction) Get

func (v NullableAction) Get() *Action

func (NullableAction) IsSet

func (v NullableAction) IsSet() bool

func (NullableAction) MarshalJSON

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

func (*NullableAction) Set

func (v *NullableAction) Set(val *Action)

func (*NullableAction) UnmarshalJSON

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

func (*NullableAction) Unset

func (v *NullableAction) Unset()

type NullableActiveIssue

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

func NewNullableActiveIssue

func NewNullableActiveIssue(val *ActiveIssue) *NullableActiveIssue

func (NullableActiveIssue) Get

func (NullableActiveIssue) IsSet

func (v NullableActiveIssue) IsSet() bool

func (NullableActiveIssue) MarshalJSON

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

func (*NullableActiveIssue) Set

func (v *NullableActiveIssue) Set(val *ActiveIssue)

func (*NullableActiveIssue) UnmarshalJSON

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

func (*NullableActiveIssue) Unset

func (v *NullableActiveIssue) Unset()

type NullableApplianceTaskInformation

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

func (NullableApplianceTaskInformation) Get

func (NullableApplianceTaskInformation) IsSet

func (NullableApplianceTaskInformation) MarshalJSON

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

func (*NullableApplianceTaskInformation) Set

func (*NullableApplianceTaskInformation) UnmarshalJSON

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

func (*NullableApplianceTaskInformation) Unset

type NullableApplianceTaskStatusDetail

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

func (NullableApplianceTaskStatusDetail) Get

func (NullableApplianceTaskStatusDetail) IsSet

func (NullableApplianceTaskStatusDetail) MarshalJSON

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

func (*NullableApplianceTaskStatusDetail) Set

func (*NullableApplianceTaskStatusDetail) UnmarshalJSON

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

func (*NullableApplianceTaskStatusDetail) Unset

type NullableApplianceTaskThresholdBasic

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

func (NullableApplianceTaskThresholdBasic) Get

func (NullableApplianceTaskThresholdBasic) IsSet

func (NullableApplianceTaskThresholdBasic) MarshalJSON

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

func (*NullableApplianceTaskThresholdBasic) Set

func (*NullableApplianceTaskThresholdBasic) UnmarshalJSON

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

func (*NullableApplianceTaskThresholdBasic) Unset

type NullableApplicableAction

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

func NewNullableApplicableAction

func NewNullableApplicableAction(val *ApplicableAction) *NullableApplicableAction

func (NullableApplicableAction) Get

func (NullableApplicableAction) IsSet

func (v NullableApplicableAction) IsSet() bool

func (NullableApplicableAction) MarshalJSON

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

func (*NullableApplicableAction) Set

func (*NullableApplicableAction) UnmarshalJSON

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

func (*NullableApplicableAction) Unset

func (v *NullableApplicableAction) Unset()

type NullableAssetLifecycleDetails

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

func (NullableAssetLifecycleDetails) Get

func (NullableAssetLifecycleDetails) IsSet

func (NullableAssetLifecycleDetails) MarshalJSON

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

func (*NullableAssetLifecycleDetails) Set

func (*NullableAssetLifecycleDetails) UnmarshalJSON

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

func (*NullableAssetLifecycleDetails) Unset

func (v *NullableAssetLifecycleDetails) Unset()

type NullableAssetLifecyclePatchRequest

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

func (NullableAssetLifecyclePatchRequest) Get

func (NullableAssetLifecyclePatchRequest) IsSet

func (NullableAssetLifecyclePatchRequest) MarshalJSON

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

func (*NullableAssetLifecyclePatchRequest) Set

func (*NullableAssetLifecyclePatchRequest) UnmarshalJSON

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

func (*NullableAssetLifecyclePatchRequest) Unset

type NullableAssetLifecyclePutRequest

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

func (NullableAssetLifecyclePutRequest) Get

func (NullableAssetLifecyclePutRequest) IsSet

func (NullableAssetLifecyclePutRequest) MarshalJSON

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

func (*NullableAssetLifecyclePutRequest) Set

func (*NullableAssetLifecyclePutRequest) UnmarshalJSON

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

func (*NullableAssetLifecyclePutRequest) Unset

type NullableAuthRefreshResponse

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

func NewNullableAuthRefreshResponse

func NewNullableAuthRefreshResponse(val *AuthRefreshResponse) *NullableAuthRefreshResponse

func (NullableAuthRefreshResponse) Get

func (NullableAuthRefreshResponse) IsSet

func (NullableAuthRefreshResponse) MarshalJSON

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

func (*NullableAuthRefreshResponse) Set

func (*NullableAuthRefreshResponse) UnmarshalJSON

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

func (*NullableAuthRefreshResponse) Unset

func (v *NullableAuthRefreshResponse) Unset()

type NullableAuthToken

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

func NewNullableAuthToken

func NewNullableAuthToken(val *AuthToken) *NullableAuthToken

func (NullableAuthToken) Get

func (v NullableAuthToken) Get() *AuthToken

func (NullableAuthToken) IsSet

func (v NullableAuthToken) IsSet() bool

func (NullableAuthToken) MarshalJSON

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

func (*NullableAuthToken) Set

func (v *NullableAuthToken) Set(val *AuthToken)

func (*NullableAuthToken) UnmarshalJSON

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

func (*NullableAuthToken) Unset

func (v *NullableAuthToken) Unset()

type NullableAuthTokens

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

func NewNullableAuthTokens

func NewNullableAuthTokens(val *AuthTokens) *NullableAuthTokens

func (NullableAuthTokens) Get

func (v NullableAuthTokens) Get() *AuthTokens

func (NullableAuthTokens) IsSet

func (v NullableAuthTokens) IsSet() bool

func (NullableAuthTokens) MarshalJSON

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

func (*NullableAuthTokens) Set

func (v *NullableAuthTokens) Set(val *AuthTokens)

func (*NullableAuthTokens) UnmarshalJSON

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

func (*NullableAuthTokens) Unset

func (v *NullableAuthTokens) Unset()

type NullableAuthValidateResponse

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

func NewNullableAuthValidateResponse

func NewNullableAuthValidateResponse(val *AuthValidateResponse) *NullableAuthValidateResponse

func (NullableAuthValidateResponse) Get

func (NullableAuthValidateResponse) IsSet

func (NullableAuthValidateResponse) MarshalJSON

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

func (*NullableAuthValidateResponse) Set

func (*NullableAuthValidateResponse) UnmarshalJSON

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

func (*NullableAuthValidateResponse) Unset

func (v *NullableAuthValidateResponse) Unset()

type NullableAuthenticateResponse

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

func NewNullableAuthenticateResponse

func NewNullableAuthenticateResponse(val *AuthenticateResponse) *NullableAuthenticateResponse

func (NullableAuthenticateResponse) Get

func (NullableAuthenticateResponse) IsSet

func (NullableAuthenticateResponse) MarshalJSON

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

func (*NullableAuthenticateResponse) Set

func (*NullableAuthenticateResponse) UnmarshalJSON

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

func (*NullableAuthenticateResponse) Unset

func (v *NullableAuthenticateResponse) 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 NullableCreateUserRoleRequest

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

func (NullableCreateUserRoleRequest) Get

func (NullableCreateUserRoleRequest) IsSet

func (NullableCreateUserRoleRequest) MarshalJSON

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

func (*NullableCreateUserRoleRequest) Set

func (*NullableCreateUserRoleRequest) UnmarshalJSON

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

func (*NullableCreateUserRoleRequest) Unset

func (v *NullableCreateUserRoleRequest) Unset()

type NullableCreateUserRoleResponse

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

func (NullableCreateUserRoleResponse) Get

func (NullableCreateUserRoleResponse) IsSet

func (NullableCreateUserRoleResponse) MarshalJSON

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

func (*NullableCreateUserRoleResponse) Set

func (*NullableCreateUserRoleResponse) UnmarshalJSON

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

func (*NullableCreateUserRoleResponse) Unset

func (v *NullableCreateUserRoleResponse) Unset()

type NullableCustomPsaTicketGetResponse

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

func (NullableCustomPsaTicketGetResponse) Get

func (NullableCustomPsaTicketGetResponse) IsSet

func (NullableCustomPsaTicketGetResponse) MarshalJSON

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

func (*NullableCustomPsaTicketGetResponse) Set

func (*NullableCustomPsaTicketGetResponse) UnmarshalJSON

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

func (*NullableCustomPsaTicketGetResponse) Unset

type NullableCustomPsaTicketInfo

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

func NewNullableCustomPsaTicketInfo

func NewNullableCustomPsaTicketInfo(val *CustomPsaTicketInfo) *NullableCustomPsaTicketInfo

func (NullableCustomPsaTicketInfo) Get

func (NullableCustomPsaTicketInfo) IsSet

func (NullableCustomPsaTicketInfo) MarshalJSON

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

func (*NullableCustomPsaTicketInfo) Set

func (*NullableCustomPsaTicketInfo) UnmarshalJSON

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

func (*NullableCustomPsaTicketInfo) Unset

func (v *NullableCustomPsaTicketInfo) Unset()

type NullableCustomer

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

func NewNullableCustomer

func NewNullableCustomer(val *Customer) *NullableCustomer

func (NullableCustomer) Get

func (v NullableCustomer) Get() *Customer

func (NullableCustomer) IsSet

func (v NullableCustomer) IsSet() bool

func (NullableCustomer) MarshalJSON

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

func (*NullableCustomer) Set

func (v *NullableCustomer) Set(val *Customer)

func (*NullableCustomer) UnmarshalJSON

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

func (*NullableCustomer) Unset

func (v *NullableCustomer) Unset()

type NullableCustomerCreation

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

func NewNullableCustomerCreation

func NewNullableCustomerCreation(val *CustomerCreation) *NullableCustomerCreation

func (NullableCustomerCreation) Get

func (NullableCustomerCreation) IsSet

func (v NullableCustomerCreation) IsSet() bool

func (NullableCustomerCreation) MarshalJSON

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

func (*NullableCustomerCreation) Set

func (*NullableCustomerCreation) UnmarshalJSON

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

func (*NullableCustomerCreation) Unset

func (v *NullableCustomerCreation) Unset()

type NullableData

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

func NewNullableData

func NewNullableData(val *Data) *NullableData

func (NullableData) Get

func (v NullableData) Get() *Data

func (NullableData) IsSet

func (v NullableData) IsSet() bool

func (NullableData) MarshalJSON

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

func (*NullableData) Set

func (v *NullableData) Set(val *Data)

func (*NullableData) UnmarshalJSON

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

func (*NullableData) Unset

func (v *NullableData) Unset()

type NullableDefaultCustomProperty

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

func (NullableDefaultCustomProperty) Get

func (NullableDefaultCustomProperty) IsSet

func (NullableDefaultCustomProperty) MarshalJSON

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

func (*NullableDefaultCustomProperty) Set

func (*NullableDefaultCustomProperty) UnmarshalJSON

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

func (*NullableDefaultCustomProperty) Unset

func (v *NullableDefaultCustomProperty) Unset()

type NullableDefaultCustomPropertyModifyRequest

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

func (NullableDefaultCustomPropertyModifyRequest) Get

func (NullableDefaultCustomPropertyModifyRequest) IsSet

func (NullableDefaultCustomPropertyModifyRequest) MarshalJSON

func (*NullableDefaultCustomPropertyModifyRequest) Set

func (*NullableDefaultCustomPropertyModifyRequest) UnmarshalJSON

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

func (*NullableDefaultCustomPropertyModifyRequest) Unset

type NullableDefaultDeviceCustomProperty

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

func (NullableDefaultDeviceCustomProperty) Get

func (NullableDefaultDeviceCustomProperty) IsSet

func (NullableDefaultDeviceCustomProperty) MarshalJSON

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

func (*NullableDefaultDeviceCustomProperty) Set

func (*NullableDefaultDeviceCustomProperty) UnmarshalJSON

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

func (*NullableDefaultDeviceCustomProperty) Unset

type NullableDetailsResponse

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

func NewNullableDetailsResponse

func NewNullableDetailsResponse(val *DetailsResponse) *NullableDetailsResponse

func (NullableDetailsResponse) Get

func (NullableDetailsResponse) IsSet

func (v NullableDetailsResponse) IsSet() bool

func (NullableDetailsResponse) MarshalJSON

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

func (*NullableDetailsResponse) Set

func (*NullableDetailsResponse) UnmarshalJSON

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

func (*NullableDetailsResponse) Unset

func (v *NullableDetailsResponse) 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 NullableDeviceAccessGroupCreateRequest

type NullableDeviceAccessGroupCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeviceAccessGroupCreateRequest) Get

func (NullableDeviceAccessGroupCreateRequest) IsSet

func (NullableDeviceAccessGroupCreateRequest) MarshalJSON

func (v NullableDeviceAccessGroupCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableDeviceAccessGroupCreateRequest) Set

func (*NullableDeviceAccessGroupCreateRequest) UnmarshalJSON

func (v *NullableDeviceAccessGroupCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableDeviceAccessGroupCreateRequest) Unset

type NullableDeviceAssetInfoResponse

type NullableDeviceAssetInfoResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeviceAssetInfoResponse) Get

func (NullableDeviceAssetInfoResponse) IsSet

func (NullableDeviceAssetInfoResponse) MarshalJSON

func (v NullableDeviceAssetInfoResponse) MarshalJSON() ([]byte, error)

func (*NullableDeviceAssetInfoResponse) Set

func (*NullableDeviceAssetInfoResponse) UnmarshalJSON

func (v *NullableDeviceAssetInfoResponse) UnmarshalJSON(src []byte) error

func (*NullableDeviceAssetInfoResponse) Unset

type NullableDeviceCustomProperty

type NullableDeviceCustomProperty struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceCustomProperty

func NewNullableDeviceCustomProperty(val *DeviceCustomProperty) *NullableDeviceCustomProperty

func (NullableDeviceCustomProperty) Get

func (NullableDeviceCustomProperty) IsSet

func (NullableDeviceCustomProperty) MarshalJSON

func (v NullableDeviceCustomProperty) MarshalJSON() ([]byte, error)

func (*NullableDeviceCustomProperty) Set

func (*NullableDeviceCustomProperty) UnmarshalJSON

func (v *NullableDeviceCustomProperty) UnmarshalJSON(src []byte) error

func (*NullableDeviceCustomProperty) Unset

func (v *NullableDeviceCustomProperty) Unset()

type NullableDeviceCustomPropertyEnumeratedValue

type NullableDeviceCustomPropertyEnumeratedValue struct {
	// contains filtered or unexported fields
}

func (NullableDeviceCustomPropertyEnumeratedValue) Get

func (NullableDeviceCustomPropertyEnumeratedValue) IsSet

func (NullableDeviceCustomPropertyEnumeratedValue) MarshalJSON

func (*NullableDeviceCustomPropertyEnumeratedValue) Set

func (*NullableDeviceCustomPropertyEnumeratedValue) UnmarshalJSON

func (v *NullableDeviceCustomPropertyEnumeratedValue) UnmarshalJSON(src []byte) error

func (*NullableDeviceCustomPropertyEnumeratedValue) Unset

type NullableDeviceCustomPropertyModification

type NullableDeviceCustomPropertyModification struct {
	// contains filtered or unexported fields
}

func (NullableDeviceCustomPropertyModification) Get

func (NullableDeviceCustomPropertyModification) IsSet

func (NullableDeviceCustomPropertyModification) MarshalJSON

func (*NullableDeviceCustomPropertyModification) Set

func (*NullableDeviceCustomPropertyModification) UnmarshalJSON

func (v *NullableDeviceCustomPropertyModification) UnmarshalJSON(src []byte) error

func (*NullableDeviceCustomPropertyModification) Unset

type NullableDeviceCustomPropertyResponse

type NullableDeviceCustomPropertyResponse struct {
	// contains filtered or unexported fields
}

func (NullableDeviceCustomPropertyResponse) Get

func (NullableDeviceCustomPropertyResponse) IsSet

func (NullableDeviceCustomPropertyResponse) MarshalJSON

func (v NullableDeviceCustomPropertyResponse) MarshalJSON() ([]byte, error)

func (*NullableDeviceCustomPropertyResponse) Set

func (*NullableDeviceCustomPropertyResponse) UnmarshalJSON

func (v *NullableDeviceCustomPropertyResponse) UnmarshalJSON(src []byte) error

func (*NullableDeviceCustomPropertyResponse) Unset

type NullableDevicePropertyUpdated

type NullableDevicePropertyUpdated struct {
	// contains filtered or unexported fields
}

func (NullableDevicePropertyUpdated) Get

func (NullableDevicePropertyUpdated) IsSet

func (NullableDevicePropertyUpdated) MarshalJSON

func (v NullableDevicePropertyUpdated) MarshalJSON() ([]byte, error)

func (*NullableDevicePropertyUpdated) Set

func (*NullableDevicePropertyUpdated) UnmarshalJSON

func (v *NullableDevicePropertyUpdated) UnmarshalJSON(src []byte) error

func (*NullableDevicePropertyUpdated) Unset

func (v *NullableDevicePropertyUpdated) Unset()

type NullableDeviceResponse

type NullableDeviceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDeviceResponse

func NewNullableDeviceResponse(val *DeviceResponse) *NullableDeviceResponse

func (NullableDeviceResponse) Get

func (NullableDeviceResponse) IsSet

func (v NullableDeviceResponse) IsSet() bool

func (NullableDeviceResponse) MarshalJSON

func (v NullableDeviceResponse) MarshalJSON() ([]byte, error)

func (*NullableDeviceResponse) Set

func (*NullableDeviceResponse) UnmarshalJSON

func (v *NullableDeviceResponse) UnmarshalJSON(src []byte) error

func (*NullableDeviceResponse) Unset

func (v *NullableDeviceResponse) Unset()

type NullableDeviceServiceMonitoringStatus

type NullableDeviceServiceMonitoringStatus struct {
	// contains filtered or unexported fields
}

func (NullableDeviceServiceMonitoringStatus) Get

func (NullableDeviceServiceMonitoringStatus) IsSet

func (NullableDeviceServiceMonitoringStatus) MarshalJSON

func (v NullableDeviceServiceMonitoringStatus) MarshalJSON() ([]byte, error)

func (*NullableDeviceServiceMonitoringStatus) Set

func (*NullableDeviceServiceMonitoringStatus) UnmarshalJSON

func (v *NullableDeviceServiceMonitoringStatus) UnmarshalJSON(src []byte) error

func (*NullableDeviceServiceMonitoringStatus) Unset

type NullableDirectSupportTask

type NullableDirectSupportTask struct {
	// contains filtered or unexported fields
}

func NewNullableDirectSupportTask

func NewNullableDirectSupportTask(val *DirectSupportTask) *NullableDirectSupportTask

func (NullableDirectSupportTask) Get

func (NullableDirectSupportTask) IsSet

func (v NullableDirectSupportTask) IsSet() bool

func (NullableDirectSupportTask) MarshalJSON

func (v NullableDirectSupportTask) MarshalJSON() ([]byte, error)

func (*NullableDirectSupportTask) Set

func (*NullableDirectSupportTask) UnmarshalJSON

func (v *NullableDirectSupportTask) UnmarshalJSON(src []byte) error

func (*NullableDirectSupportTask) Unset

func (v *NullableDirectSupportTask) Unset()

type NullableErrorResponse

type NullableErrorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

func (v NullableErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) Unset()

type NullableFilter

type NullableFilter struct {
	// contains filtered or unexported fields
}

func NewNullableFilter

func NewNullableFilter(val *Filter) *NullableFilter

func (NullableFilter) Get

func (v NullableFilter) Get() *Filter

func (NullableFilter) IsSet

func (v NullableFilter) IsSet() bool

func (NullableFilter) MarshalJSON

func (v NullableFilter) MarshalJSON() ([]byte, error)

func (*NullableFilter) Set

func (v *NullableFilter) Set(val *Filter)

func (*NullableFilter) UnmarshalJSON

func (v *NullableFilter) UnmarshalJSON(src []byte) error

func (*NullableFilter) Unset

func (v *NullableFilter) 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 NullableHealth

type NullableHealth struct {
	// contains filtered or unexported fields
}

func NewNullableHealth

func NewNullableHealth(val *Health) *NullableHealth

func (NullableHealth) Get

func (v NullableHealth) Get() *Health

func (NullableHealth) IsSet

func (v NullableHealth) IsSet() bool

func (NullableHealth) MarshalJSON

func (v NullableHealth) MarshalJSON() ([]byte, error)

func (*NullableHealth) Set

func (v *NullableHealth) Set(val *Health)

func (*NullableHealth) UnmarshalJSON

func (v *NullableHealth) UnmarshalJSON(src []byte) error

func (*NullableHealth) Unset

func (v *NullableHealth) 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 NullableLinks struct {
	// contains filtered or unexported fields
}
func NewNullableLinks(val *Links) *NullableLinks

func (NullableLinks) Get

func (v NullableLinks) Get() *Links

func (NullableLinks) IsSet

func (v NullableLinks) IsSet() bool

func (NullableLinks) MarshalJSON

func (v NullableLinks) MarshalJSON() ([]byte, error)

func (*NullableLinks) Set

func (v *NullableLinks) Set(val *Links)

func (*NullableLinks) UnmarshalJSON

func (v *NullableLinks) UnmarshalJSON(src []byte) error

func (*NullableLinks) Unset

func (v *NullableLinks) Unset()

type NullableLinksResponse

type NullableLinksResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLinksResponse

func NewNullableLinksResponse(val *LinksResponse) *NullableLinksResponse

func (NullableLinksResponse) Get

func (NullableLinksResponse) IsSet

func (v NullableLinksResponse) IsSet() bool

func (NullableLinksResponse) MarshalJSON

func (v NullableLinksResponse) MarshalJSON() ([]byte, error)

func (*NullableLinksResponse) Set

func (v *NullableLinksResponse) Set(val *LinksResponse)

func (*NullableLinksResponse) UnmarshalJSON

func (v *NullableLinksResponse) UnmarshalJSON(src []byte) error

func (*NullableLinksResponse) Unset

func (v *NullableLinksResponse) Unset()

type NullableListResponse

type NullableListResponse struct {
	// contains filtered or unexported fields
}

func NewNullableListResponse

func NewNullableListResponse(val *ListResponse) *NullableListResponse

func (NullableListResponse) Get

func (NullableListResponse) IsSet

func (v NullableListResponse) IsSet() bool

func (NullableListResponse) MarshalJSON

func (v NullableListResponse) MarshalJSON() ([]byte, error)

func (*NullableListResponse) Set

func (v *NullableListResponse) Set(val *ListResponse)

func (*NullableListResponse) UnmarshalJSON

func (v *NullableListResponse) UnmarshalJSON(src []byte) error

func (*NullableListResponse) Unset

func (v *NullableListResponse) Unset()

type NullableListResponseCustomer

type NullableListResponseCustomer struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseCustomer

func NewNullableListResponseCustomer(val *ListResponseCustomer) *NullableListResponseCustomer

func (NullableListResponseCustomer) Get

func (NullableListResponseCustomer) IsSet

func (NullableListResponseCustomer) MarshalJSON

func (v NullableListResponseCustomer) MarshalJSON() ([]byte, error)

func (*NullableListResponseCustomer) Set

func (*NullableListResponseCustomer) UnmarshalJSON

func (v *NullableListResponseCustomer) UnmarshalJSON(src []byte) error

func (*NullableListResponseCustomer) Unset

func (v *NullableListResponseCustomer) Unset()

type NullableListResponseDetailsResponse

type NullableListResponseDetailsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListResponseDetailsResponse) Get

func (NullableListResponseDetailsResponse) IsSet

func (NullableListResponseDetailsResponse) MarshalJSON

func (v NullableListResponseDetailsResponse) MarshalJSON() ([]byte, error)

func (*NullableListResponseDetailsResponse) Set

func (*NullableListResponseDetailsResponse) UnmarshalJSON

func (v *NullableListResponseDetailsResponse) UnmarshalJSON(src []byte) error

func (*NullableListResponseDetailsResponse) Unset

type NullableListResponseDeviceCustomProperty

type NullableListResponseDeviceCustomProperty struct {
	// contains filtered or unexported fields
}

func (NullableListResponseDeviceCustomProperty) Get

func (NullableListResponseDeviceCustomProperty) IsSet

func (NullableListResponseDeviceCustomProperty) MarshalJSON

func (*NullableListResponseDeviceCustomProperty) Set

func (*NullableListResponseDeviceCustomProperty) UnmarshalJSON

func (v *NullableListResponseDeviceCustomProperty) UnmarshalJSON(src []byte) error

func (*NullableListResponseDeviceCustomProperty) Unset

type NullableListResponseDeviceServiceMonitoringStatus

type NullableListResponseDeviceServiceMonitoringStatus struct {
	// contains filtered or unexported fields
}

func (NullableListResponseDeviceServiceMonitoringStatus) Get

func (NullableListResponseDeviceServiceMonitoringStatus) IsSet

func (NullableListResponseDeviceServiceMonitoringStatus) MarshalJSON

func (*NullableListResponseDeviceServiceMonitoringStatus) Set

func (*NullableListResponseDeviceServiceMonitoringStatus) UnmarshalJSON

func (*NullableListResponseDeviceServiceMonitoringStatus) Unset

type NullableListResponseFilter

type NullableListResponseFilter struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseFilter

func NewNullableListResponseFilter(val *ListResponseFilter) *NullableListResponseFilter

func (NullableListResponseFilter) Get

func (NullableListResponseFilter) IsSet

func (v NullableListResponseFilter) IsSet() bool

func (NullableListResponseFilter) MarshalJSON

func (v NullableListResponseFilter) MarshalJSON() ([]byte, error)

func (*NullableListResponseFilter) Set

func (*NullableListResponseFilter) UnmarshalJSON

func (v *NullableListResponseFilter) UnmarshalJSON(src []byte) error

func (*NullableListResponseFilter) Unset

func (v *NullableListResponseFilter) Unset()

type NullableListResponseMaintenanceWindowGetResponse

type NullableListResponseMaintenanceWindowGetResponse struct {
	// contains filtered or unexported fields
}

func (NullableListResponseMaintenanceWindowGetResponse) Get

func (NullableListResponseMaintenanceWindowGetResponse) IsSet

func (NullableListResponseMaintenanceWindowGetResponse) MarshalJSON

func (*NullableListResponseMaintenanceWindowGetResponse) Set

func (*NullableListResponseMaintenanceWindowGetResponse) UnmarshalJSON

func (*NullableListResponseMaintenanceWindowGetResponse) Unset

type NullableListResponseOrganizationCustomProperty

type NullableListResponseOrganizationCustomProperty struct {
	// contains filtered or unexported fields
}

func (NullableListResponseOrganizationCustomProperty) Get

func (NullableListResponseOrganizationCustomProperty) IsSet

func (NullableListResponseOrganizationCustomProperty) MarshalJSON

func (*NullableListResponseOrganizationCustomProperty) Set

func (*NullableListResponseOrganizationCustomProperty) UnmarshalJSON

func (*NullableListResponseOrganizationCustomProperty) Unset

type NullableListResponseOrganizationUnit

type NullableListResponseOrganizationUnit struct {
	// contains filtered or unexported fields
}

func (NullableListResponseOrganizationUnit) Get

func (NullableListResponseOrganizationUnit) IsSet

func (NullableListResponseOrganizationUnit) MarshalJSON

func (v NullableListResponseOrganizationUnit) MarshalJSON() ([]byte, error)

func (*NullableListResponseOrganizationUnit) Set

func (*NullableListResponseOrganizationUnit) UnmarshalJSON

func (v *NullableListResponseOrganizationUnit) UnmarshalJSON(src []byte) error

func (*NullableListResponseOrganizationUnit) Unset

type NullableListResponseServiceOrganization

type NullableListResponseServiceOrganization struct {
	// contains filtered or unexported fields
}

func (NullableListResponseServiceOrganization) Get

func (NullableListResponseServiceOrganization) IsSet

func (NullableListResponseServiceOrganization) MarshalJSON

func (v NullableListResponseServiceOrganization) MarshalJSON() ([]byte, error)

func (*NullableListResponseServiceOrganization) Set

func (*NullableListResponseServiceOrganization) UnmarshalJSON

func (v *NullableListResponseServiceOrganization) UnmarshalJSON(src []byte) error

func (*NullableListResponseServiceOrganization) Unset

type NullableListResponseSite

type NullableListResponseSite struct {
	// contains filtered or unexported fields
}

func NewNullableListResponseSite

func NewNullableListResponseSite(val *ListResponseSite) *NullableListResponseSite

func (NullableListResponseSite) Get

func (NullableListResponseSite) IsSet

func (v NullableListResponseSite) IsSet() bool

func (NullableListResponseSite) MarshalJSON

func (v NullableListResponseSite) MarshalJSON() ([]byte, error)

func (*NullableListResponseSite) Set

func (*NullableListResponseSite) UnmarshalJSON

func (v *NullableListResponseSite) UnmarshalJSON(src []byte) error

func (*NullableListResponseSite) Unset

func (v *NullableListResponseSite) Unset()

type NullableListResponseTaskStatusResponse

type NullableListResponseTaskStatusResponse struct {
	// contains filtered or unexported fields
}

func (NullableListResponseTaskStatusResponse) Get

func (NullableListResponseTaskStatusResponse) IsSet

func (NullableListResponseTaskStatusResponse) MarshalJSON

func (v NullableListResponseTaskStatusResponse) MarshalJSON() ([]byte, error)

func (*NullableListResponseTaskStatusResponse) Set

func (*NullableListResponseTaskStatusResponse) UnmarshalJSON

func (v *NullableListResponseTaskStatusResponse) UnmarshalJSON(src []byte) error

func (*NullableListResponseTaskStatusResponse) Unset

type NullableMaintenanceWindowGetResponse

type NullableMaintenanceWindowGetResponse struct {
	// contains filtered or unexported fields
}

func (NullableMaintenanceWindowGetResponse) Get

func (NullableMaintenanceWindowGetResponse) IsSet

func (NullableMaintenanceWindowGetResponse) MarshalJSON

func (v NullableMaintenanceWindowGetResponse) MarshalJSON() ([]byte, error)

func (*NullableMaintenanceWindowGetResponse) Set

func (*NullableMaintenanceWindowGetResponse) UnmarshalJSON

func (v *NullableMaintenanceWindowGetResponse) UnmarshalJSON(src []byte) error

func (*NullableMaintenanceWindowGetResponse) Unset

type NullableMaintenanceWindowRequest

type NullableMaintenanceWindowRequest struct {
	// contains filtered or unexported fields
}

func (NullableMaintenanceWindowRequest) Get

func (NullableMaintenanceWindowRequest) IsSet

func (NullableMaintenanceWindowRequest) MarshalJSON

func (v NullableMaintenanceWindowRequest) MarshalJSON() ([]byte, error)

func (*NullableMaintenanceWindowRequest) Set

func (*NullableMaintenanceWindowRequest) UnmarshalJSON

func (v *NullableMaintenanceWindowRequest) UnmarshalJSON(src []byte) error

func (*NullableMaintenanceWindowRequest) Unset

type NullableMaintenanceWindowResponse

type NullableMaintenanceWindowResponse struct {
	// contains filtered or unexported fields
}

func (NullableMaintenanceWindowResponse) Get

func (NullableMaintenanceWindowResponse) IsSet

func (NullableMaintenanceWindowResponse) MarshalJSON

func (v NullableMaintenanceWindowResponse) MarshalJSON() ([]byte, error)

func (*NullableMaintenanceWindowResponse) Set

func (*NullableMaintenanceWindowResponse) UnmarshalJSON

func (v *NullableMaintenanceWindowResponse) UnmarshalJSON(src []byte) error

func (*NullableMaintenanceWindowResponse) Unset

type NullableMaintenanceWindowsDeleteRequest

type NullableMaintenanceWindowsDeleteRequest struct {
	// contains filtered or unexported fields
}

func (NullableMaintenanceWindowsDeleteRequest) Get

func (NullableMaintenanceWindowsDeleteRequest) IsSet

func (NullableMaintenanceWindowsDeleteRequest) MarshalJSON

func (v NullableMaintenanceWindowsDeleteRequest) MarshalJSON() ([]byte, error)

func (*NullableMaintenanceWindowsDeleteRequest) Set

func (*NullableMaintenanceWindowsDeleteRequest) UnmarshalJSON

func (v *NullableMaintenanceWindowsDeleteRequest) UnmarshalJSON(src []byte) error

func (*NullableMaintenanceWindowsDeleteRequest) Unset

type NullableMaintenanceWindowsRequest

type NullableMaintenanceWindowsRequest struct {
	// contains filtered or unexported fields
}

func (NullableMaintenanceWindowsRequest) Get

func (NullableMaintenanceWindowsRequest) IsSet

func (NullableMaintenanceWindowsRequest) MarshalJSON

func (v NullableMaintenanceWindowsRequest) MarshalJSON() ([]byte, error)

func (*NullableMaintenanceWindowsRequest) Set

func (*NullableMaintenanceWindowsRequest) UnmarshalJSON

func (v *NullableMaintenanceWindowsRequest) UnmarshalJSON(src []byte) error

func (*NullableMaintenanceWindowsRequest) Unset

type NullableOrgUnitCustomPropertyModification

type NullableOrgUnitCustomPropertyModification struct {
	// contains filtered or unexported fields
}

func (NullableOrgUnitCustomPropertyModification) Get

func (NullableOrgUnitCustomPropertyModification) IsSet

func (NullableOrgUnitCustomPropertyModification) MarshalJSON

func (*NullableOrgUnitCustomPropertyModification) Set

func (*NullableOrgUnitCustomPropertyModification) UnmarshalJSON

func (v *NullableOrgUnitCustomPropertyModification) UnmarshalJSON(src []byte) error

func (*NullableOrgUnitCustomPropertyModification) Unset

type NullableOrgUnitTypeAccessGroupCreateRequest

type NullableOrgUnitTypeAccessGroupCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableOrgUnitTypeAccessGroupCreateRequest) Get

func (NullableOrgUnitTypeAccessGroupCreateRequest) IsSet

func (NullableOrgUnitTypeAccessGroupCreateRequest) MarshalJSON

func (*NullableOrgUnitTypeAccessGroupCreateRequest) Set

func (*NullableOrgUnitTypeAccessGroupCreateRequest) UnmarshalJSON

func (v *NullableOrgUnitTypeAccessGroupCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableOrgUnitTypeAccessGroupCreateRequest) Unset

type NullableOrganizationCustomProperty

type NullableOrganizationCustomProperty struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationCustomProperty) Get

func (NullableOrganizationCustomProperty) IsSet

func (NullableOrganizationCustomProperty) MarshalJSON

func (v NullableOrganizationCustomProperty) MarshalJSON() ([]byte, error)

func (*NullableOrganizationCustomProperty) Set

func (*NullableOrganizationCustomProperty) UnmarshalJSON

func (v *NullableOrganizationCustomProperty) UnmarshalJSON(src []byte) error

func (*NullableOrganizationCustomProperty) Unset

type NullableOrganizationPropertyUpdated

type NullableOrganizationPropertyUpdated struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationPropertyUpdated) Get

func (NullableOrganizationPropertyUpdated) IsSet

func (NullableOrganizationPropertyUpdated) MarshalJSON

func (v NullableOrganizationPropertyUpdated) MarshalJSON() ([]byte, error)

func (*NullableOrganizationPropertyUpdated) Set

func (*NullableOrganizationPropertyUpdated) UnmarshalJSON

func (v *NullableOrganizationPropertyUpdated) UnmarshalJSON(src []byte) error

func (*NullableOrganizationPropertyUpdated) Unset

type NullableOrganizationUnit

type NullableOrganizationUnit struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationUnit

func NewNullableOrganizationUnit(val *OrganizationUnit) *NullableOrganizationUnit

func (NullableOrganizationUnit) Get

func (NullableOrganizationUnit) IsSet

func (v NullableOrganizationUnit) IsSet() bool

func (NullableOrganizationUnit) MarshalJSON

func (v NullableOrganizationUnit) MarshalJSON() ([]byte, error)

func (*NullableOrganizationUnit) Set

func (*NullableOrganizationUnit) UnmarshalJSON

func (v *NullableOrganizationUnit) UnmarshalJSON(src []byte) error

func (*NullableOrganizationUnit) Unset

func (v *NullableOrganizationUnit) Unset()

type NullablePsaCredentialRequest

type NullablePsaCredentialRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePsaCredentialRequest

func NewNullablePsaCredentialRequest(val *PsaCredentialRequest) *NullablePsaCredentialRequest

func (NullablePsaCredentialRequest) Get

func (NullablePsaCredentialRequest) IsSet

func (NullablePsaCredentialRequest) MarshalJSON

func (v NullablePsaCredentialRequest) MarshalJSON() ([]byte, error)

func (*NullablePsaCredentialRequest) Set

func (*NullablePsaCredentialRequest) UnmarshalJSON

func (v *NullablePsaCredentialRequest) UnmarshalJSON(src []byte) error

func (*NullablePsaCredentialRequest) Unset

func (v *NullablePsaCredentialRequest) Unset()

type NullableQueryResponse

type NullableQueryResponse struct {
	// contains filtered or unexported fields
}

func NewNullableQueryResponse

func NewNullableQueryResponse(val *QueryResponse) *NullableQueryResponse

func (NullableQueryResponse) Get

func (NullableQueryResponse) IsSet

func (v NullableQueryResponse) IsSet() bool

func (NullableQueryResponse) MarshalJSON

func (v NullableQueryResponse) MarshalJSON() ([]byte, error)

func (*NullableQueryResponse) Set

func (v *NullableQueryResponse) Set(val *QueryResponse)

func (*NullableQueryResponse) UnmarshalJSON

func (v *NullableQueryResponse) UnmarshalJSON(src []byte) error

func (*NullableQueryResponse) Unset

func (v *NullableQueryResponse) Unset()

type NullableQueryResponseActiveIssue

type NullableQueryResponseActiveIssue struct {
	// contains filtered or unexported fields
}

func (NullableQueryResponseActiveIssue) Get

func (NullableQueryResponseActiveIssue) IsSet

func (NullableQueryResponseActiveIssue) MarshalJSON

func (v NullableQueryResponseActiveIssue) MarshalJSON() ([]byte, error)

func (*NullableQueryResponseActiveIssue) Set

func (*NullableQueryResponseActiveIssue) UnmarshalJSON

func (v *NullableQueryResponseActiveIssue) UnmarshalJSON(src []byte) error

func (*NullableQueryResponseActiveIssue) Unset

type NullableQueryResponseDevice

type NullableQueryResponseDevice struct {
	// contains filtered or unexported fields
}

func NewNullableQueryResponseDevice

func NewNullableQueryResponseDevice(val *QueryResponseDevice) *NullableQueryResponseDevice

func (NullableQueryResponseDevice) Get

func (NullableQueryResponseDevice) IsSet

func (NullableQueryResponseDevice) MarshalJSON

func (v NullableQueryResponseDevice) MarshalJSON() ([]byte, error)

func (*NullableQueryResponseDevice) Set

func (*NullableQueryResponseDevice) UnmarshalJSON

func (v *NullableQueryResponseDevice) UnmarshalJSON(src []byte) error

func (*NullableQueryResponseDevice) Unset

func (v *NullableQueryResponseDevice) Unset()

type NullableQueryResponseUser

type NullableQueryResponseUser struct {
	// contains filtered or unexported fields
}

func NewNullableQueryResponseUser

func NewNullableQueryResponseUser(val *QueryResponseUser) *NullableQueryResponseUser

func (NullableQueryResponseUser) Get

func (NullableQueryResponseUser) IsSet

func (v NullableQueryResponseUser) IsSet() bool

func (NullableQueryResponseUser) MarshalJSON

func (v NullableQueryResponseUser) MarshalJSON() ([]byte, error)

func (*NullableQueryResponseUser) Set

func (*NullableQueryResponseUser) UnmarshalJSON

func (v *NullableQueryResponseUser) UnmarshalJSON(src []byte) error

func (*NullableQueryResponseUser) Unset

func (v *NullableQueryResponseUser) Unset()

type NullableQueryResponseUserRole

type NullableQueryResponseUserRole struct {
	// contains filtered or unexported fields
}

func (NullableQueryResponseUserRole) Get

func (NullableQueryResponseUserRole) IsSet

func (NullableQueryResponseUserRole) MarshalJSON

func (v NullableQueryResponseUserRole) MarshalJSON() ([]byte, error)

func (*NullableQueryResponseUserRole) Set

func (*NullableQueryResponseUserRole) UnmarshalJSON

func (v *NullableQueryResponseUserRole) UnmarshalJSON(src []byte) error

func (*NullableQueryResponseUserRole) Unset

func (v *NullableQueryResponseUserRole) Unset()

type NullableRegistrationToken

type NullableRegistrationToken struct {
	// contains filtered or unexported fields
}

func NewNullableRegistrationToken

func NewNullableRegistrationToken(val *RegistrationToken) *NullableRegistrationToken

func (NullableRegistrationToken) Get

func (NullableRegistrationToken) IsSet

func (v NullableRegistrationToken) IsSet() bool

func (NullableRegistrationToken) MarshalJSON

func (v NullableRegistrationToken) MarshalJSON() ([]byte, error)

func (*NullableRegistrationToken) Set

func (*NullableRegistrationToken) UnmarshalJSON

func (v *NullableRegistrationToken) UnmarshalJSON(src []byte) error

func (*NullableRegistrationToken) Unset

func (v *NullableRegistrationToken) Unset()

type NullableRegistrationTokenGetResponse

type NullableRegistrationTokenGetResponse struct {
	// contains filtered or unexported fields
}

func (NullableRegistrationTokenGetResponse) Get

func (NullableRegistrationTokenGetResponse) IsSet

func (NullableRegistrationTokenGetResponse) MarshalJSON

func (v NullableRegistrationTokenGetResponse) MarshalJSON() ([]byte, error)

func (*NullableRegistrationTokenGetResponse) Set

func (*NullableRegistrationTokenGetResponse) UnmarshalJSON

func (v *NullableRegistrationTokenGetResponse) UnmarshalJSON(src []byte) error

func (*NullableRegistrationTokenGetResponse) Unset

type NullableScheduledTaskAggregatedStatusResponse

type NullableScheduledTaskAggregatedStatusResponse struct {
	// contains filtered or unexported fields
}

func (NullableScheduledTaskAggregatedStatusResponse) Get

func (NullableScheduledTaskAggregatedStatusResponse) IsSet

func (NullableScheduledTaskAggregatedStatusResponse) MarshalJSON

func (*NullableScheduledTaskAggregatedStatusResponse) Set

func (*NullableScheduledTaskAggregatedStatusResponse) UnmarshalJSON

func (*NullableScheduledTaskAggregatedStatusResponse) Unset

type NullableScheduledTaskCreateResponse

type NullableScheduledTaskCreateResponse struct {
	// contains filtered or unexported fields
}

func (NullableScheduledTaskCreateResponse) Get

func (NullableScheduledTaskCreateResponse) IsSet

func (NullableScheduledTaskCreateResponse) MarshalJSON

func (v NullableScheduledTaskCreateResponse) MarshalJSON() ([]byte, error)

func (*NullableScheduledTaskCreateResponse) Set

func (*NullableScheduledTaskCreateResponse) UnmarshalJSON

func (v *NullableScheduledTaskCreateResponse) UnmarshalJSON(src []byte) error

func (*NullableScheduledTaskCreateResponse) Unset

type NullableScheduledTaskCredential

type NullableScheduledTaskCredential struct {
	// contains filtered or unexported fields
}

func (NullableScheduledTaskCredential) Get

func (NullableScheduledTaskCredential) IsSet

func (NullableScheduledTaskCredential) MarshalJSON

func (v NullableScheduledTaskCredential) MarshalJSON() ([]byte, error)

func (*NullableScheduledTaskCredential) Set

func (*NullableScheduledTaskCredential) UnmarshalJSON

func (v *NullableScheduledTaskCredential) UnmarshalJSON(src []byte) error

func (*NullableScheduledTaskCredential) Unset

type NullableScheduledTaskInfoResponse

type NullableScheduledTaskInfoResponse struct {
	// contains filtered or unexported fields
}

func (NullableScheduledTaskInfoResponse) Get

func (NullableScheduledTaskInfoResponse) IsSet

func (NullableScheduledTaskInfoResponse) MarshalJSON

func (v NullableScheduledTaskInfoResponse) MarshalJSON() ([]byte, error)

func (*NullableScheduledTaskInfoResponse) Set

func (*NullableScheduledTaskInfoResponse) UnmarshalJSON

func (v *NullableScheduledTaskInfoResponse) UnmarshalJSON(src []byte) error

func (*NullableScheduledTaskInfoResponse) Unset

type NullableScheduledTaskParameter

type NullableScheduledTaskParameter struct {
	// contains filtered or unexported fields
}

func (NullableScheduledTaskParameter) Get

func (NullableScheduledTaskParameter) IsSet

func (NullableScheduledTaskParameter) MarshalJSON

func (v NullableScheduledTaskParameter) MarshalJSON() ([]byte, error)

func (*NullableScheduledTaskParameter) Set

func (*NullableScheduledTaskParameter) UnmarshalJSON

func (v *NullableScheduledTaskParameter) UnmarshalJSON(src []byte) error

func (*NullableScheduledTaskParameter) Unset

func (v *NullableScheduledTaskParameter) Unset()

type NullableServiceOrganization

type NullableServiceOrganization struct {
	// contains filtered or unexported fields
}

func NewNullableServiceOrganization

func NewNullableServiceOrganization(val *ServiceOrganization) *NullableServiceOrganization

func (NullableServiceOrganization) Get

func (NullableServiceOrganization) IsSet

func (NullableServiceOrganization) MarshalJSON

func (v NullableServiceOrganization) MarshalJSON() ([]byte, error)

func (*NullableServiceOrganization) Set

func (*NullableServiceOrganization) UnmarshalJSON

func (v *NullableServiceOrganization) UnmarshalJSON(src []byte) error

func (*NullableServiceOrganization) Unset

func (v *NullableServiceOrganization) Unset()

type NullableServiceOrganizationCreated

type NullableServiceOrganizationCreated struct {
	// contains filtered or unexported fields
}

func (NullableServiceOrganizationCreated) Get

func (NullableServiceOrganizationCreated) IsSet

func (NullableServiceOrganizationCreated) MarshalJSON

func (v NullableServiceOrganizationCreated) MarshalJSON() ([]byte, error)

func (*NullableServiceOrganizationCreated) Set

func (*NullableServiceOrganizationCreated) UnmarshalJSON

func (v *NullableServiceOrganizationCreated) UnmarshalJSON(src []byte) error

func (*NullableServiceOrganizationCreated) Unset

type NullableServiceOrganizationCreation

type NullableServiceOrganizationCreation struct {
	// contains filtered or unexported fields
}

func (NullableServiceOrganizationCreation) Get

func (NullableServiceOrganizationCreation) IsSet

func (NullableServiceOrganizationCreation) MarshalJSON

func (v NullableServiceOrganizationCreation) MarshalJSON() ([]byte, error)

func (*NullableServiceOrganizationCreation) Set

func (*NullableServiceOrganizationCreation) UnmarshalJSON

func (v *NullableServiceOrganizationCreation) UnmarshalJSON(src []byte) error

func (*NullableServiceOrganizationCreation) 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 NullableSiteCreated

type NullableSiteCreated struct {
	// contains filtered or unexported fields
}

func NewNullableSiteCreated

func NewNullableSiteCreated(val *SiteCreated) *NullableSiteCreated

func (NullableSiteCreated) Get

func (NullableSiteCreated) IsSet

func (v NullableSiteCreated) IsSet() bool

func (NullableSiteCreated) MarshalJSON

func (v NullableSiteCreated) MarshalJSON() ([]byte, error)

func (*NullableSiteCreated) Set

func (v *NullableSiteCreated) Set(val *SiteCreated)

func (*NullableSiteCreated) UnmarshalJSON

func (v *NullableSiteCreated) UnmarshalJSON(src []byte) error

func (*NullableSiteCreated) Unset

func (v *NullableSiteCreated) Unset()

type NullableSiteCreation

type NullableSiteCreation struct {
	// contains filtered or unexported fields
}

func NewNullableSiteCreation

func NewNullableSiteCreation(val *SiteCreation) *NullableSiteCreation

func (NullableSiteCreation) Get

func (NullableSiteCreation) IsSet

func (v NullableSiteCreation) IsSet() bool

func (NullableSiteCreation) MarshalJSON

func (v NullableSiteCreation) MarshalJSON() ([]byte, error)

func (*NullableSiteCreation) Set

func (v *NullableSiteCreation) Set(val *SiteCreation)

func (*NullableSiteCreation) UnmarshalJSON

func (v *NullableSiteCreation) UnmarshalJSON(src []byte) error

func (*NullableSiteCreation) Unset

func (v *NullableSiteCreation) Unset()

type NullableStandardPsaCredentialsValidateGetResponse

type NullableStandardPsaCredentialsValidateGetResponse struct {
	// contains filtered or unexported fields
}

func (NullableStandardPsaCredentialsValidateGetResponse) Get

func (NullableStandardPsaCredentialsValidateGetResponse) IsSet

func (NullableStandardPsaCredentialsValidateGetResponse) MarshalJSON

func (*NullableStandardPsaCredentialsValidateGetResponse) Set

func (*NullableStandardPsaCredentialsValidateGetResponse) UnmarshalJSON

func (*NullableStandardPsaCredentialsValidateGetResponse) 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 NullableTaskAggregatedStatus

type NullableTaskAggregatedStatus struct {
	// contains filtered or unexported fields
}

func NewNullableTaskAggregatedStatus

func NewNullableTaskAggregatedStatus(val *TaskAggregatedStatus) *NullableTaskAggregatedStatus

func (NullableTaskAggregatedStatus) Get

func (NullableTaskAggregatedStatus) IsSet

func (NullableTaskAggregatedStatus) MarshalJSON

func (v NullableTaskAggregatedStatus) MarshalJSON() ([]byte, error)

func (*NullableTaskAggregatedStatus) Set

func (*NullableTaskAggregatedStatus) UnmarshalJSON

func (v *NullableTaskAggregatedStatus) UnmarshalJSON(src []byte) error

func (*NullableTaskAggregatedStatus) Unset

func (v *NullableTaskAggregatedStatus) Unset()

type NullableTaskCreate

type NullableTaskCreate struct {
	// contains filtered or unexported fields
}

func NewNullableTaskCreate

func NewNullableTaskCreate(val *TaskCreate) *NullableTaskCreate

func (NullableTaskCreate) Get

func (v NullableTaskCreate) Get() *TaskCreate

func (NullableTaskCreate) IsSet

func (v NullableTaskCreate) IsSet() bool

func (NullableTaskCreate) MarshalJSON

func (v NullableTaskCreate) MarshalJSON() ([]byte, error)

func (*NullableTaskCreate) Set

func (v *NullableTaskCreate) Set(val *TaskCreate)

func (*NullableTaskCreate) UnmarshalJSON

func (v *NullableTaskCreate) UnmarshalJSON(src []byte) error

func (*NullableTaskCreate) Unset

func (v *NullableTaskCreate) Unset()

type NullableTaskInfo

type NullableTaskInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTaskInfo

func NewNullableTaskInfo(val *TaskInfo) *NullableTaskInfo

func (NullableTaskInfo) Get

func (v NullableTaskInfo) Get() *TaskInfo

func (NullableTaskInfo) IsSet

func (v NullableTaskInfo) IsSet() bool

func (NullableTaskInfo) MarshalJSON

func (v NullableTaskInfo) MarshalJSON() ([]byte, error)

func (*NullableTaskInfo) Set

func (v *NullableTaskInfo) Set(val *TaskInfo)

func (*NullableTaskInfo) UnmarshalJSON

func (v *NullableTaskInfo) UnmarshalJSON(src []byte) error

func (*NullableTaskInfo) Unset

func (v *NullableTaskInfo) Unset()

type NullableTaskStatusResponse

type NullableTaskStatusResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTaskStatusResponse

func NewNullableTaskStatusResponse(val *TaskStatusResponse) *NullableTaskStatusResponse

func (NullableTaskStatusResponse) Get

func (NullableTaskStatusResponse) IsSet

func (v NullableTaskStatusResponse) IsSet() bool

func (NullableTaskStatusResponse) MarshalJSON

func (v NullableTaskStatusResponse) MarshalJSON() ([]byte, error)

func (*NullableTaskStatusResponse) Set

func (*NullableTaskStatusResponse) UnmarshalJSON

func (v *NullableTaskStatusResponse) UnmarshalJSON(src []byte) error

func (*NullableTaskStatusResponse) Unset

func (v *NullableTaskStatusResponse) 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 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 NullableUserRole

type NullableUserRole struct {
	// contains filtered or unexported fields
}

func NewNullableUserRole

func NewNullableUserRole(val *UserRole) *NullableUserRole

func (NullableUserRole) Get

func (v NullableUserRole) Get() *UserRole

func (NullableUserRole) IsSet

func (v NullableUserRole) IsSet() bool

func (NullableUserRole) MarshalJSON

func (v NullableUserRole) MarshalJSON() ([]byte, error)

func (*NullableUserRole) Set

func (v *NullableUserRole) Set(val *UserRole)

func (*NullableUserRole) UnmarshalJSON

func (v *NullableUserRole) UnmarshalJSON(src []byte) error

func (*NullableUserRole) Unset

func (v *NullableUserRole) Unset()

type NullableUserRoleDetails

type NullableUserRoleDetails struct {
	// contains filtered or unexported fields
}

func NewNullableUserRoleDetails

func NewNullableUserRoleDetails(val *UserRoleDetails) *NullableUserRoleDetails

func (NullableUserRoleDetails) Get

func (NullableUserRoleDetails) IsSet

func (v NullableUserRoleDetails) IsSet() bool

func (NullableUserRoleDetails) MarshalJSON

func (v NullableUserRoleDetails) MarshalJSON() ([]byte, error)

func (*NullableUserRoleDetails) Set

func (*NullableUserRoleDetails) UnmarshalJSON

func (v *NullableUserRoleDetails) UnmarshalJSON(src []byte) error

func (*NullableUserRoleDetails) Unset

func (v *NullableUserRoleDetails) Unset()

type NullableUserRoleDetailsResponse

type NullableUserRoleDetailsResponse struct {
	// contains filtered or unexported fields
}

func (NullableUserRoleDetailsResponse) Get

func (NullableUserRoleDetailsResponse) IsSet

func (NullableUserRoleDetailsResponse) MarshalJSON

func (v NullableUserRoleDetailsResponse) MarshalJSON() ([]byte, error)

func (*NullableUserRoleDetailsResponse) Set

func (*NullableUserRoleDetailsResponse) UnmarshalJSON

func (v *NullableUserRoleDetailsResponse) UnmarshalJSON(src []byte) error

func (*NullableUserRoleDetailsResponse) Unset

type NullableValidationError

type NullableValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableValidationError

func NewNullableValidationError(val *ValidationError) *NullableValidationError

func (NullableValidationError) Get

func (NullableValidationError) IsSet

func (v NullableValidationError) IsSet() bool

func (NullableValidationError) MarshalJSON

func (v NullableValidationError) MarshalJSON() ([]byte, error)

func (*NullableValidationError) Set

func (*NullableValidationError) UnmarshalJSON

func (v *NullableValidationError) UnmarshalJSON(src []byte) error

func (*NullableValidationError) Unset

func (v *NullableValidationError) Unset()

type NullableVersionInfoAuthenticatedRequest

type NullableVersionInfoAuthenticatedRequest struct {
	// contains filtered or unexported fields
}

func (NullableVersionInfoAuthenticatedRequest) Get

func (NullableVersionInfoAuthenticatedRequest) IsSet

func (NullableVersionInfoAuthenticatedRequest) MarshalJSON

func (v NullableVersionInfoAuthenticatedRequest) MarshalJSON() ([]byte, error)

func (*NullableVersionInfoAuthenticatedRequest) Set

func (*NullableVersionInfoAuthenticatedRequest) UnmarshalJSON

func (v *NullableVersionInfoAuthenticatedRequest) UnmarshalJSON(src []byte) error

func (*NullableVersionInfoAuthenticatedRequest) Unset

type NullableVersionInfoResponse

type NullableVersionInfoResponse struct {
	// contains filtered or unexported fields
}

func NewNullableVersionInfoResponse

func NewNullableVersionInfoResponse(val *VersionInfoResponse) *NullableVersionInfoResponse

func (NullableVersionInfoResponse) Get

func (NullableVersionInfoResponse) IsSet

func (NullableVersionInfoResponse) MarshalJSON

func (v NullableVersionInfoResponse) MarshalJSON() ([]byte, error)

func (*NullableVersionInfoResponse) Set

func (*NullableVersionInfoResponse) UnmarshalJSON

func (v *NullableVersionInfoResponse) UnmarshalJSON(src []byte) error

func (*NullableVersionInfoResponse) Unset

func (v *NullableVersionInfoResponse) Unset()

type OrgUnitCustomPropertyModification

type OrgUnitCustomPropertyModification struct {
	// The property id.
	PropertyId *string `json:"propertyId,omitempty"`
	// The property name.
	PropertyName *string `json:"propertyName,omitempty"`
	// The property type.
	PropertyType *string `json:"propertyType,omitempty"`
	// The property value.
	Value *string `json:"value,omitempty"`
	// The possible value of the property.
	EnumeratedValueList []string `json:"enumeratedValueList,omitempty"`
}

OrgUnitCustomPropertyModification The custom property (DEVICE/ORGANIZATION_UNIT).

func NewOrgUnitCustomPropertyModification

func NewOrgUnitCustomPropertyModification() *OrgUnitCustomPropertyModification

NewOrgUnitCustomPropertyModification instantiates a new OrgUnitCustomPropertyModification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgUnitCustomPropertyModificationWithDefaults

func NewOrgUnitCustomPropertyModificationWithDefaults() *OrgUnitCustomPropertyModification

NewOrgUnitCustomPropertyModificationWithDefaults instantiates a new OrgUnitCustomPropertyModification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgUnitCustomPropertyModification) GetEnumeratedValueList

func (o *OrgUnitCustomPropertyModification) GetEnumeratedValueList() []string

GetEnumeratedValueList returns the EnumeratedValueList field value if set, zero value otherwise.

func (*OrgUnitCustomPropertyModification) GetEnumeratedValueListOk

func (o *OrgUnitCustomPropertyModification) GetEnumeratedValueListOk() ([]string, bool)

GetEnumeratedValueListOk returns a tuple with the EnumeratedValueList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitCustomPropertyModification) GetPropertyId

func (o *OrgUnitCustomPropertyModification) GetPropertyId() string

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*OrgUnitCustomPropertyModification) GetPropertyIdOk

func (o *OrgUnitCustomPropertyModification) GetPropertyIdOk() (*string, bool)

GetPropertyIdOk returns a tuple with the PropertyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitCustomPropertyModification) GetPropertyName

func (o *OrgUnitCustomPropertyModification) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*OrgUnitCustomPropertyModification) GetPropertyNameOk

func (o *OrgUnitCustomPropertyModification) GetPropertyNameOk() (*string, bool)

GetPropertyNameOk returns a tuple with the PropertyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitCustomPropertyModification) GetPropertyType

func (o *OrgUnitCustomPropertyModification) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*OrgUnitCustomPropertyModification) GetPropertyTypeOk

func (o *OrgUnitCustomPropertyModification) GetPropertyTypeOk() (*string, bool)

GetPropertyTypeOk returns a tuple with the PropertyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitCustomPropertyModification) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*OrgUnitCustomPropertyModification) GetValueOk

func (o *OrgUnitCustomPropertyModification) 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 (*OrgUnitCustomPropertyModification) HasEnumeratedValueList

func (o *OrgUnitCustomPropertyModification) HasEnumeratedValueList() bool

HasEnumeratedValueList returns a boolean if a field has been set.

func (*OrgUnitCustomPropertyModification) HasPropertyId

func (o *OrgUnitCustomPropertyModification) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*OrgUnitCustomPropertyModification) HasPropertyName

func (o *OrgUnitCustomPropertyModification) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*OrgUnitCustomPropertyModification) HasPropertyType

func (o *OrgUnitCustomPropertyModification) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*OrgUnitCustomPropertyModification) HasValue

HasValue returns a boolean if a field has been set.

func (OrgUnitCustomPropertyModification) MarshalJSON

func (o OrgUnitCustomPropertyModification) MarshalJSON() ([]byte, error)

func (*OrgUnitCustomPropertyModification) SetEnumeratedValueList

func (o *OrgUnitCustomPropertyModification) SetEnumeratedValueList(v []string)

SetEnumeratedValueList gets a reference to the given []string and assigns it to the EnumeratedValueList field.

func (*OrgUnitCustomPropertyModification) SetPropertyId

func (o *OrgUnitCustomPropertyModification) SetPropertyId(v string)

SetPropertyId gets a reference to the given string and assigns it to the PropertyId field.

func (*OrgUnitCustomPropertyModification) SetPropertyName

func (o *OrgUnitCustomPropertyModification) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*OrgUnitCustomPropertyModification) SetPropertyType

func (o *OrgUnitCustomPropertyModification) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*OrgUnitCustomPropertyModification) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (OrgUnitCustomPropertyModification) ToMap

func (o OrgUnitCustomPropertyModification) ToMap() (map[string]interface{}, error)

type OrgUnitTypeAccessGroupCreateRequest

type OrgUnitTypeAccessGroupCreateRequest struct {
	// Name of the access group.
	GroupName string `json:"groupName"`
	// Description of the access group.
	GroupDescription string `json:"groupDescription"`
	// List of orgUnit IDs to attach to the access group.
	OrgUnitIds []string `json:"orgUnitIds,omitempty"`
	// List of user IDs to be associated with the access group.
	UserIds []string `json:"userIds,omitempty"`
	// Flag indicating whether new org units should be automatically included. Default or invalid: false
	AutoIncludeNewOrgUnits *string `json:"autoIncludeNewOrgUnits,omitempty"`
}

OrgUnitTypeAccessGroupCreateRequest Request for creating an org unit type access group.

func NewOrgUnitTypeAccessGroupCreateRequest

func NewOrgUnitTypeAccessGroupCreateRequest(groupName string, groupDescription string) *OrgUnitTypeAccessGroupCreateRequest

NewOrgUnitTypeAccessGroupCreateRequest instantiates a new OrgUnitTypeAccessGroupCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgUnitTypeAccessGroupCreateRequestWithDefaults

func NewOrgUnitTypeAccessGroupCreateRequestWithDefaults() *OrgUnitTypeAccessGroupCreateRequest

NewOrgUnitTypeAccessGroupCreateRequestWithDefaults instantiates a new OrgUnitTypeAccessGroupCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgUnitTypeAccessGroupCreateRequest) GetAutoIncludeNewOrgUnits

func (o *OrgUnitTypeAccessGroupCreateRequest) GetAutoIncludeNewOrgUnits() string

GetAutoIncludeNewOrgUnits returns the AutoIncludeNewOrgUnits field value if set, zero value otherwise.

func (*OrgUnitTypeAccessGroupCreateRequest) GetAutoIncludeNewOrgUnitsOk

func (o *OrgUnitTypeAccessGroupCreateRequest) GetAutoIncludeNewOrgUnitsOk() (*string, bool)

GetAutoIncludeNewOrgUnitsOk returns a tuple with the AutoIncludeNewOrgUnits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) GetGroupDescription

func (o *OrgUnitTypeAccessGroupCreateRequest) GetGroupDescription() string

GetGroupDescription returns the GroupDescription field value

func (*OrgUnitTypeAccessGroupCreateRequest) GetGroupDescriptionOk

func (o *OrgUnitTypeAccessGroupCreateRequest) GetGroupDescriptionOk() (*string, bool)

GetGroupDescriptionOk returns a tuple with the GroupDescription field value and a boolean to check if the value has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) GetGroupName

func (o *OrgUnitTypeAccessGroupCreateRequest) GetGroupName() string

GetGroupName returns the GroupName field value

func (*OrgUnitTypeAccessGroupCreateRequest) GetGroupNameOk

func (o *OrgUnitTypeAccessGroupCreateRequest) GetGroupNameOk() (*string, bool)

GetGroupNameOk returns a tuple with the GroupName field value and a boolean to check if the value has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) GetOrgUnitIds

func (o *OrgUnitTypeAccessGroupCreateRequest) GetOrgUnitIds() []string

GetOrgUnitIds returns the OrgUnitIds field value if set, zero value otherwise.

func (*OrgUnitTypeAccessGroupCreateRequest) GetOrgUnitIdsOk

func (o *OrgUnitTypeAccessGroupCreateRequest) GetOrgUnitIdsOk() ([]string, bool)

GetOrgUnitIdsOk returns a tuple with the OrgUnitIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) GetUserIds

func (o *OrgUnitTypeAccessGroupCreateRequest) GetUserIds() []string

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*OrgUnitTypeAccessGroupCreateRequest) GetUserIdsOk

func (o *OrgUnitTypeAccessGroupCreateRequest) GetUserIdsOk() ([]string, bool)

GetUserIdsOk returns a tuple with the UserIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) HasAutoIncludeNewOrgUnits

func (o *OrgUnitTypeAccessGroupCreateRequest) HasAutoIncludeNewOrgUnits() bool

HasAutoIncludeNewOrgUnits returns a boolean if a field has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) HasOrgUnitIds

func (o *OrgUnitTypeAccessGroupCreateRequest) HasOrgUnitIds() bool

HasOrgUnitIds returns a boolean if a field has been set.

func (*OrgUnitTypeAccessGroupCreateRequest) HasUserIds

func (o *OrgUnitTypeAccessGroupCreateRequest) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (OrgUnitTypeAccessGroupCreateRequest) MarshalJSON

func (o OrgUnitTypeAccessGroupCreateRequest) MarshalJSON() ([]byte, error)

func (*OrgUnitTypeAccessGroupCreateRequest) SetAutoIncludeNewOrgUnits

func (o *OrgUnitTypeAccessGroupCreateRequest) SetAutoIncludeNewOrgUnits(v string)

SetAutoIncludeNewOrgUnits gets a reference to the given string and assigns it to the AutoIncludeNewOrgUnits field.

func (*OrgUnitTypeAccessGroupCreateRequest) SetGroupDescription

func (o *OrgUnitTypeAccessGroupCreateRequest) SetGroupDescription(v string)

SetGroupDescription sets field value

func (*OrgUnitTypeAccessGroupCreateRequest) SetGroupName

func (o *OrgUnitTypeAccessGroupCreateRequest) SetGroupName(v string)

SetGroupName sets field value

func (*OrgUnitTypeAccessGroupCreateRequest) SetOrgUnitIds

func (o *OrgUnitTypeAccessGroupCreateRequest) SetOrgUnitIds(v []string)

SetOrgUnitIds gets a reference to the given []string and assigns it to the OrgUnitIds field.

func (*OrgUnitTypeAccessGroupCreateRequest) SetUserIds

func (o *OrgUnitTypeAccessGroupCreateRequest) SetUserIds(v []string)

SetUserIds gets a reference to the given []string and assigns it to the UserIds field.

func (OrgUnitTypeAccessGroupCreateRequest) ToMap

func (o OrgUnitTypeAccessGroupCreateRequest) ToMap() (map[string]interface{}, error)

func (*OrgUnitTypeAccessGroupCreateRequest) UnmarshalJSON

func (o *OrgUnitTypeAccessGroupCreateRequest) UnmarshalJSON(data []byte) (err error)

type OrganizationCustomProperty

type OrganizationCustomProperty struct {
	// The property id.
	PropertyId *int32 `json:"propertyId,omitempty"`
	// The property name.
	PropertyName *string `json:"propertyName,omitempty"`
	// The property type.
	PropertyType *string `json:"propertyType,omitempty"`
	// The property value.
	Value *string `json:"value,omitempty"`
	// The possible values of the property.
	EnumeratedValueList []string `json:"enumeratedValueList,omitempty"`
}

OrganizationCustomProperty The custom property (DEVICE/ORGANIZATION_UNIT).

func NewOrganizationCustomProperty

func NewOrganizationCustomProperty() *OrganizationCustomProperty

NewOrganizationCustomProperty instantiates a new OrganizationCustomProperty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationCustomPropertyWithDefaults

func NewOrganizationCustomPropertyWithDefaults() *OrganizationCustomProperty

NewOrganizationCustomPropertyWithDefaults instantiates a new OrganizationCustomProperty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationCustomProperty) GetEnumeratedValueList

func (o *OrganizationCustomProperty) GetEnumeratedValueList() []string

GetEnumeratedValueList returns the EnumeratedValueList field value if set, zero value otherwise.

func (*OrganizationCustomProperty) GetEnumeratedValueListOk

func (o *OrganizationCustomProperty) GetEnumeratedValueListOk() ([]string, bool)

GetEnumeratedValueListOk returns a tuple with the EnumeratedValueList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationCustomProperty) GetPropertyId

func (o *OrganizationCustomProperty) GetPropertyId() int32

GetPropertyId returns the PropertyId field value if set, zero value otherwise.

func (*OrganizationCustomProperty) GetPropertyIdOk

func (o *OrganizationCustomProperty) GetPropertyIdOk() (*int32, bool)

GetPropertyIdOk returns a tuple with the PropertyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationCustomProperty) GetPropertyName

func (o *OrganizationCustomProperty) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise.

func (*OrganizationCustomProperty) GetPropertyNameOk

func (o *OrganizationCustomProperty) GetPropertyNameOk() (*string, bool)

GetPropertyNameOk returns a tuple with the PropertyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationCustomProperty) GetPropertyType

func (o *OrganizationCustomProperty) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*OrganizationCustomProperty) GetPropertyTypeOk

func (o *OrganizationCustomProperty) GetPropertyTypeOk() (*string, bool)

GetPropertyTypeOk returns a tuple with the PropertyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationCustomProperty) GetValue

func (o *OrganizationCustomProperty) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*OrganizationCustomProperty) GetValueOk

func (o *OrganizationCustomProperty) 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 (*OrganizationCustomProperty) HasEnumeratedValueList

func (o *OrganizationCustomProperty) HasEnumeratedValueList() bool

HasEnumeratedValueList returns a boolean if a field has been set.

func (*OrganizationCustomProperty) HasPropertyId

func (o *OrganizationCustomProperty) HasPropertyId() bool

HasPropertyId returns a boolean if a field has been set.

func (*OrganizationCustomProperty) HasPropertyName

func (o *OrganizationCustomProperty) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*OrganizationCustomProperty) HasPropertyType

func (o *OrganizationCustomProperty) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*OrganizationCustomProperty) HasValue

func (o *OrganizationCustomProperty) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OrganizationCustomProperty) MarshalJSON

func (o OrganizationCustomProperty) MarshalJSON() ([]byte, error)

func (*OrganizationCustomProperty) SetEnumeratedValueList

func (o *OrganizationCustomProperty) SetEnumeratedValueList(v []string)

SetEnumeratedValueList gets a reference to the given []string and assigns it to the EnumeratedValueList field.

func (*OrganizationCustomProperty) SetPropertyId

func (o *OrganizationCustomProperty) SetPropertyId(v int32)

SetPropertyId gets a reference to the given int32 and assigns it to the PropertyId field.

func (*OrganizationCustomProperty) SetPropertyName

func (o *OrganizationCustomProperty) SetPropertyName(v string)

SetPropertyName gets a reference to the given string and assigns it to the PropertyName field.

func (*OrganizationCustomProperty) SetPropertyType

func (o *OrganizationCustomProperty) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*OrganizationCustomProperty) SetValue

func (o *OrganizationCustomProperty) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (OrganizationCustomProperty) ToMap

func (o OrganizationCustomProperty) ToMap() (map[string]interface{}, error)

type OrganizationPropertyUpdated

type OrganizationPropertyUpdated struct {
	// The list of warnings.
	Warnings []string `json:"_warnings,omitempty"`
}

OrganizationPropertyUpdated The organization property update result.

func NewOrganizationPropertyUpdated

func NewOrganizationPropertyUpdated() *OrganizationPropertyUpdated

NewOrganizationPropertyUpdated instantiates a new OrganizationPropertyUpdated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationPropertyUpdatedWithDefaults

func NewOrganizationPropertyUpdatedWithDefaults() *OrganizationPropertyUpdated

NewOrganizationPropertyUpdatedWithDefaults instantiates a new OrganizationPropertyUpdated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationPropertyUpdated) GetWarnings

func (o *OrganizationPropertyUpdated) GetWarnings() []string

GetWarnings returns the Warnings field value if set, zero value otherwise.

func (*OrganizationPropertyUpdated) GetWarningsOk

func (o *OrganizationPropertyUpdated) GetWarningsOk() ([]string, bool)

GetWarningsOk returns a tuple with the Warnings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationPropertyUpdated) HasWarnings

func (o *OrganizationPropertyUpdated) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (OrganizationPropertyUpdated) MarshalJSON

func (o OrganizationPropertyUpdated) MarshalJSON() ([]byte, error)

func (*OrganizationPropertyUpdated) SetWarnings

func (o *OrganizationPropertyUpdated) SetWarnings(v []string)

SetWarnings gets a reference to the given []string and assigns it to the Warnings field.

func (OrganizationPropertyUpdated) ToMap

func (o OrganizationPropertyUpdated) ToMap() (map[string]interface{}, error)

type OrganizationUnit

type OrganizationUnit struct {
	// The ID of the organization unit.
	OrgUnitId *string `json:"orgUnitId,omitempty"`
	// The name of the organization unit.
	OrgUnitName *string `json:"orgUnitName,omitempty"`
	// The type of the organization unit (SYSTEM, SO, CUSTOMER or SITE).
	OrgUnitType *string `json:"orgUnitType,omitempty"`
	// The ID of the parent organization unit.
	ParentId *string `json:"parentId,omitempty"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// The external ID 2 of the organization unit.
	ExternalId2 *string `json:"externalId2,omitempty"`
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode *string `json:"postalCode,omitempty"`
}

OrganizationUnit Data object for organization unit.

func NewOrganizationUnit

func NewOrganizationUnit(contactFirstName string, contactLastName string) *OrganizationUnit

NewOrganizationUnit instantiates a new OrganizationUnit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationUnitWithDefaults

func NewOrganizationUnitWithDefaults() *OrganizationUnit

NewOrganizationUnitWithDefaults instantiates a new OrganizationUnit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationUnit) GetCity

func (o *OrganizationUnit) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*OrganizationUnit) GetCityOk

func (o *OrganizationUnit) 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 (*OrganizationUnit) GetContactDepartment

func (o *OrganizationUnit) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*OrganizationUnit) GetContactDepartmentOk

func (o *OrganizationUnit) GetContactDepartmentOk() (*string, bool)

GetContactDepartmentOk returns a tuple with the ContactDepartment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetContactEmail

func (o *OrganizationUnit) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*OrganizationUnit) GetContactEmailOk

func (o *OrganizationUnit) GetContactEmailOk() (*string, bool)

GetContactEmailOk returns a tuple with the ContactEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetContactFirstName

func (o *OrganizationUnit) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*OrganizationUnit) GetContactFirstNameOk

func (o *OrganizationUnit) GetContactFirstNameOk() (*string, bool)

GetContactFirstNameOk returns a tuple with the ContactFirstName field value and a boolean to check if the value has been set.

func (*OrganizationUnit) GetContactLastName

func (o *OrganizationUnit) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*OrganizationUnit) GetContactLastNameOk

func (o *OrganizationUnit) GetContactLastNameOk() (*string, bool)

GetContactLastNameOk returns a tuple with the ContactLastName field value and a boolean to check if the value has been set.

func (*OrganizationUnit) GetContactPhone

func (o *OrganizationUnit) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*OrganizationUnit) GetContactPhoneExt

func (o *OrganizationUnit) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*OrganizationUnit) GetContactPhoneExtOk

func (o *OrganizationUnit) GetContactPhoneExtOk() (*string, bool)

GetContactPhoneExtOk returns a tuple with the ContactPhoneExt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetContactPhoneOk

func (o *OrganizationUnit) GetContactPhoneOk() (*string, bool)

GetContactPhoneOk returns a tuple with the ContactPhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetContactTitle

func (o *OrganizationUnit) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*OrganizationUnit) GetContactTitleOk

func (o *OrganizationUnit) GetContactTitleOk() (*string, bool)

GetContactTitleOk returns a tuple with the ContactTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetCountry

func (o *OrganizationUnit) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*OrganizationUnit) GetCountryOk

func (o *OrganizationUnit) 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 (*OrganizationUnit) GetExternalId

func (o *OrganizationUnit) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*OrganizationUnit) GetExternalId2

func (o *OrganizationUnit) GetExternalId2() string

GetExternalId2 returns the ExternalId2 field value if set, zero value otherwise.

func (*OrganizationUnit) GetExternalId2Ok

func (o *OrganizationUnit) GetExternalId2Ok() (*string, bool)

GetExternalId2Ok returns a tuple with the ExternalId2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetExternalIdOk

func (o *OrganizationUnit) 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 (*OrganizationUnit) GetOrgUnitId

func (o *OrganizationUnit) GetOrgUnitId() string

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*OrganizationUnit) GetOrgUnitIdOk

func (o *OrganizationUnit) GetOrgUnitIdOk() (*string, bool)

GetOrgUnitIdOk returns a tuple with the OrgUnitId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetOrgUnitName

func (o *OrganizationUnit) GetOrgUnitName() string

GetOrgUnitName returns the OrgUnitName field value if set, zero value otherwise.

func (*OrganizationUnit) GetOrgUnitNameOk

func (o *OrganizationUnit) GetOrgUnitNameOk() (*string, bool)

GetOrgUnitNameOk returns a tuple with the OrgUnitName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetOrgUnitType

func (o *OrganizationUnit) GetOrgUnitType() string

GetOrgUnitType returns the OrgUnitType field value if set, zero value otherwise.

func (*OrganizationUnit) GetOrgUnitTypeOk

func (o *OrganizationUnit) GetOrgUnitTypeOk() (*string, bool)

GetOrgUnitTypeOk returns a tuple with the OrgUnitType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetParentId

func (o *OrganizationUnit) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*OrganizationUnit) GetParentIdOk

func (o *OrganizationUnit) 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 (*OrganizationUnit) GetPhone

func (o *OrganizationUnit) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*OrganizationUnit) GetPhoneOk

func (o *OrganizationUnit) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetPostalCode

func (o *OrganizationUnit) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*OrganizationUnit) GetPostalCodeOk

func (o *OrganizationUnit) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetStateProv

func (o *OrganizationUnit) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*OrganizationUnit) GetStateProvOk

func (o *OrganizationUnit) GetStateProvOk() (*string, bool)

GetStateProvOk returns a tuple with the StateProv field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetStreet1

func (o *OrganizationUnit) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*OrganizationUnit) GetStreet1Ok

func (o *OrganizationUnit) GetStreet1Ok() (*string, bool)

GetStreet1Ok returns a tuple with the Street1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) GetStreet2

func (o *OrganizationUnit) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*OrganizationUnit) GetStreet2Ok

func (o *OrganizationUnit) GetStreet2Ok() (*string, bool)

GetStreet2Ok returns a tuple with the Street2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationUnit) HasCity

func (o *OrganizationUnit) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*OrganizationUnit) HasContactDepartment

func (o *OrganizationUnit) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*OrganizationUnit) HasContactEmail

func (o *OrganizationUnit) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*OrganizationUnit) HasContactPhone

func (o *OrganizationUnit) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*OrganizationUnit) HasContactPhoneExt

func (o *OrganizationUnit) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*OrganizationUnit) HasContactTitle

func (o *OrganizationUnit) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*OrganizationUnit) HasCountry

func (o *OrganizationUnit) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*OrganizationUnit) HasExternalId

func (o *OrganizationUnit) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*OrganizationUnit) HasExternalId2

func (o *OrganizationUnit) HasExternalId2() bool

HasExternalId2 returns a boolean if a field has been set.

func (*OrganizationUnit) HasOrgUnitId

func (o *OrganizationUnit) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*OrganizationUnit) HasOrgUnitName

func (o *OrganizationUnit) HasOrgUnitName() bool

HasOrgUnitName returns a boolean if a field has been set.

func (*OrganizationUnit) HasOrgUnitType

func (o *OrganizationUnit) HasOrgUnitType() bool

HasOrgUnitType returns a boolean if a field has been set.

func (*OrganizationUnit) HasParentId

func (o *OrganizationUnit) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*OrganizationUnit) HasPhone

func (o *OrganizationUnit) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*OrganizationUnit) HasPostalCode

func (o *OrganizationUnit) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*OrganizationUnit) HasStateProv

func (o *OrganizationUnit) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*OrganizationUnit) HasStreet1

func (o *OrganizationUnit) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*OrganizationUnit) HasStreet2

func (o *OrganizationUnit) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (OrganizationUnit) MarshalJSON

func (o OrganizationUnit) MarshalJSON() ([]byte, error)

func (*OrganizationUnit) SetCity

func (o *OrganizationUnit) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*OrganizationUnit) SetContactDepartment

func (o *OrganizationUnit) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*OrganizationUnit) SetContactEmail

func (o *OrganizationUnit) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*OrganizationUnit) SetContactFirstName

func (o *OrganizationUnit) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*OrganizationUnit) SetContactLastName

func (o *OrganizationUnit) SetContactLastName(v string)

SetContactLastName sets field value

func (*OrganizationUnit) SetContactPhone

func (o *OrganizationUnit) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*OrganizationUnit) SetContactPhoneExt

func (o *OrganizationUnit) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*OrganizationUnit) SetContactTitle

func (o *OrganizationUnit) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*OrganizationUnit) SetCountry

func (o *OrganizationUnit) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*OrganizationUnit) SetExternalId

func (o *OrganizationUnit) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*OrganizationUnit) SetExternalId2

func (o *OrganizationUnit) SetExternalId2(v string)

SetExternalId2 gets a reference to the given string and assigns it to the ExternalId2 field.

func (*OrganizationUnit) SetOrgUnitId

func (o *OrganizationUnit) SetOrgUnitId(v string)

SetOrgUnitId gets a reference to the given string and assigns it to the OrgUnitId field.

func (*OrganizationUnit) SetOrgUnitName

func (o *OrganizationUnit) SetOrgUnitName(v string)

SetOrgUnitName gets a reference to the given string and assigns it to the OrgUnitName field.

func (*OrganizationUnit) SetOrgUnitType

func (o *OrganizationUnit) SetOrgUnitType(v string)

SetOrgUnitType gets a reference to the given string and assigns it to the OrgUnitType field.

func (*OrganizationUnit) SetParentId

func (o *OrganizationUnit) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*OrganizationUnit) SetPhone

func (o *OrganizationUnit) SetPhone(v string)

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (*OrganizationUnit) SetPostalCode

func (o *OrganizationUnit) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*OrganizationUnit) SetStateProv

func (o *OrganizationUnit) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*OrganizationUnit) SetStreet1

func (o *OrganizationUnit) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*OrganizationUnit) SetStreet2

func (o *OrganizationUnit) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (OrganizationUnit) ToMap

func (o OrganizationUnit) ToMap() (map[string]interface{}, error)

func (*OrganizationUnit) UnmarshalJSON

func (o *OrganizationUnit) UnmarshalJSON(data []byte) (err error)

type OrganizationUnitsAPIService

type OrganizationUnitsAPIService service

OrganizationUnitsAPIService OrganizationUnitsAPI service

func (*OrganizationUnitsAPIService) CreateCustomer

CreateCustomer PREVIEW: Creates a customer.

Creates a new customer with the specified details.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param soId
@return ApiCreateCustomerRequest

func (*OrganizationUnitsAPIService) CreateCustomerExecute

Execute executes the request

@return CustomerCreation

func (*OrganizationUnitsAPIService) CreateServiceOrganization

CreateServiceOrganization PREVIEW: Creates a new service organization (SO).

Creates a new service organization with the specified details.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateServiceOrganizationRequest

func (*OrganizationUnitsAPIService) CreateServiceOrganizationExecute

Execute executes the request

@return ServiceOrganizationCreated

func (*OrganizationUnitsAPIService) CreateSite

CreateSite PREVIEW: Creates a site.

Creates a new site with the specified details.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId
@return ApiCreateSiteRequest

func (*OrganizationUnitsAPIService) CreateSiteExecute

Execute executes the request

@return SiteCreated

func (*OrganizationUnitsAPIService) GetCustomer

func (a *OrganizationUnitsAPIService) GetCustomer(ctx context.Context, customerId int32) ApiGetCustomerRequest

GetCustomer PREVIEW: Retrieve a customer.

Returns a customer.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId The ID of the a customer.
@return ApiGetCustomerRequest

func (*OrganizationUnitsAPIService) GetCustomerExecute

Execute executes the request

@return Customer

func (*OrganizationUnitsAPIService) GetOrganizationUnit

func (a *OrganizationUnitsAPIService) GetOrganizationUnit(ctx context.Context, orgUnitId int32) ApiGetOrganizationUnitRequest

GetOrganizationUnit PREVIEW: Retrieve an organization unit.

Returns an organization unit.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId The ID of the organization unit.
@return ApiGetOrganizationUnitRequest

func (*OrganizationUnitsAPIService) GetOrganizationUnitExecute

Execute executes the request

@return OrganizationUnit

func (*OrganizationUnitsAPIService) GetServiceOrganization

GetServiceOrganization PREVIEW: Retrieve a service organization.

Returns a service organization.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param soId The ID of the a service organization.
@return ApiGetServiceOrganizationRequest

func (*OrganizationUnitsAPIService) GetServiceOrganizationExecute

Execute executes the request

@return ServiceOrganization

func (*OrganizationUnitsAPIService) GetSite

GetSite PREVIEW: Retrieve a site.

Returns a site.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param siteId The ID of the a site.
@return ApiGetSiteRequest

func (*OrganizationUnitsAPIService) GetSiteExecute

Execute executes the request

@return Site

func (*OrganizationUnitsAPIService) ListCustomers

ListCustomers PREVIEW: Retrieve a list of all customers under a service organization.

Returns a list of all customers under a service organization.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param soId The ID of the a service organization.
@return ApiListCustomersRequest

func (*OrganizationUnitsAPIService) ListCustomers1

ListCustomers1 Retrieve a list of all customers.

Returns a list of all customers.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCustomers1Request

func (*OrganizationUnitsAPIService) ListCustomers1Execute

Execute executes the request

@return ListResponseCustomer

func (*OrganizationUnitsAPIService) ListCustomersExecute

Execute executes the request

@return ListResponseCustomer

func (*OrganizationUnitsAPIService) ListOrganizationUnitChildren

func (a *OrganizationUnitsAPIService) ListOrganizationUnitChildren(ctx context.Context, orgUnitId int32) ApiListOrganizationUnitChildrenRequest

ListOrganizationUnitChildren PREVIEW: Retrieve a list of all organization units children.

Returns a list of all organization units under the specific organization unit.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId PREVIEW: The ID of the parent organization unit.If specified, only the children of the specified organization unit are retrieved.Leave empty or unset to retrieve the unfiltered list.
@return ApiListOrganizationUnitChildrenRequest

func (*OrganizationUnitsAPIService) ListOrganizationUnitChildrenExecute

Execute executes the request

@return ListResponseOrganizationUnit

func (*OrganizationUnitsAPIService) ListOrganizationUnits

ListOrganizationUnits Retrieve a list of all organization units.

Returns a list of all organization units.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOrganizationUnitsRequest

func (*OrganizationUnitsAPIService) ListOrganizationUnitsExecute

Execute executes the request

@return ListResponseOrganizationUnit

func (*OrganizationUnitsAPIService) ListServiceOrganizations

ListServiceOrganizations Retrieve a list of all service organizations.

Returns a list of all service organizations.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListServiceOrganizationsRequest

func (*OrganizationUnitsAPIService) ListServiceOrganizationsExecute

Execute executes the request

@return ListResponseServiceOrganization

func (*OrganizationUnitsAPIService) ListSites

ListSites Retrieve a list of all sites.

Returns a list of all sites.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListSitesRequest

func (*OrganizationUnitsAPIService) ListSites1

func (a *OrganizationUnitsAPIService) ListSites1(ctx context.Context, customerId int32) ApiListSites1Request

ListSites1 PREVIEW: Retrieve a list of sites under a customer.

Returns a list of all sites under a customer.<br/><br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId The ID of the a customer.
@return ApiListSites1Request

func (*OrganizationUnitsAPIService) ListSites1Execute

Execute executes the request

@return ListResponseSite

func (*OrganizationUnitsAPIService) ListSitesExecute

Execute executes the request

@return ListResponseSite

type PSAAPIService

type PSAAPIService service

PSAAPIService PSAAPI service

func (*PSAAPIService) CustomPsaRoot

func (a *PSAAPIService) CustomPsaRoot(ctx context.Context) ApiCustomPsaRootRequest

CustomPsaRoot PREVIEW: List the custom psa related links.

<b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomPsaRootRequest

func (*PSAAPIService) CustomPsaRootExecute

func (a *PSAAPIService) CustomPsaRootExecute(r ApiCustomPsaRootRequest) (*LinksResponse, *http.Response, error)

Execute executes the request

@return LinksResponse

func (*PSAAPIService) CustomPsaTicketsRoot

func (a *PSAAPIService) CustomPsaTicketsRoot(ctx context.Context) ApiCustomPsaTicketsRootRequest

CustomPsaTicketsRoot PREVIEW: List the custom psa tickets related links.

<b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomPsaTicketsRootRequest

func (*PSAAPIService) CustomPsaTicketsRootExecute

func (a *PSAAPIService) CustomPsaTicketsRootExecute(r ApiCustomPsaTicketsRootRequest) (*LinksResponse, *http.Response, error)

Execute executes the request

@return LinksResponse

func (*PSAAPIService) GetCustomTicketInfo

func (a *PSAAPIService) GetCustomTicketInfo(ctx context.Context, customPsaTicketId string) ApiGetCustomTicketInfoRequest

GetCustomTicketInfo PREVIEW: Retrieve detailed information for a specific Custom PSA Ticket by ID.

Retrieves detailed information for a specific Custom PSA Ticket. The endpoint is exclusive to CUSTOM PSA Integrations, NOT for ConnectWise, AutoTask, TigerPaw or other managed PSAs.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customPsaTicketId The unique identifier of the Custom PSA ticket to retrieve.
@return ApiGetCustomTicketInfoRequest

func (*PSAAPIService) GetCustomTicketInfoExecute

Execute executes the request

@return CustomPsaTicketGetResponse

func (*PSAAPIService) StandardPsaRoot

func (a *PSAAPIService) StandardPsaRoot(ctx context.Context) ApiStandardPsaRootRequest

StandardPsaRoot PREVIEW: List the standard psa related links.

<b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStandardPsaRootRequest

func (*PSAAPIService) StandardPsaRootExecute

func (a *PSAAPIService) StandardPsaRootExecute(r ApiStandardPsaRootRequest) (*LinksResponse, *http.Response, error)

Execute executes the request

@return LinksResponse

func (*PSAAPIService) ValidatePsaCredentials

func (a *PSAAPIService) ValidatePsaCredentials(ctx context.Context, psaType string) ApiValidatePsaCredentialsRequest

ValidatePsaCredentials PREVIEW: Validate Standard PSA Credentials.

Validates the credentials for the standard PSA system and returns a response indicating the validity. The only supported standard PSA integration to use with this endpoint is 3 (Tigerpaw)<br/><b>NOTE:</b> This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param psaType The type of the PSA system for which credentials are being validated.
@return ApiValidatePsaCredentialsRequest

func (*PSAAPIService) ValidatePsaCredentialsExecute

Execute executes the request

@return StandardPsaCredentialsValidateGetResponse

type PsaCredentialRequest

type PsaCredentialRequest struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

PsaCredentialRequest Representation of PSA credentials.

func NewPsaCredentialRequest

func NewPsaCredentialRequest() *PsaCredentialRequest

NewPsaCredentialRequest instantiates a new PsaCredentialRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPsaCredentialRequestWithDefaults

func NewPsaCredentialRequestWithDefaults() *PsaCredentialRequest

NewPsaCredentialRequestWithDefaults instantiates a new PsaCredentialRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PsaCredentialRequest) GetPassword

func (o *PsaCredentialRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*PsaCredentialRequest) GetPasswordOk

func (o *PsaCredentialRequest) 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 (*PsaCredentialRequest) GetUsername

func (o *PsaCredentialRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*PsaCredentialRequest) GetUsernameOk

func (o *PsaCredentialRequest) 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 (*PsaCredentialRequest) HasPassword

func (o *PsaCredentialRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*PsaCredentialRequest) HasUsername

func (o *PsaCredentialRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (PsaCredentialRequest) MarshalJSON

func (o PsaCredentialRequest) MarshalJSON() ([]byte, error)

func (*PsaCredentialRequest) SetPassword

func (o *PsaCredentialRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*PsaCredentialRequest) SetUsername

func (o *PsaCredentialRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (PsaCredentialRequest) ToMap

func (o PsaCredentialRequest) ToMap() (map[string]interface{}, error)

type QueryResponse

type QueryResponse struct {
	Data       []map[string]interface{} `json:"data,omitempty"`
	PageNumber *int32                   `json:"pageNumber,omitempty"`
	PageSize   *int32                   `json:"pageSize,omitempty"`
	ItemCount  *int32                   `json:"itemCount,omitempty"`
	TotalItems *int32                   `json:"totalItems,omitempty"`
	TotalPages *int32                   `json:"totalPages,omitempty"`
	Links      Links                    `json:"_links"`
	Warning    *string                  `json:"_warning,omitempty"`
}

QueryResponse struct for QueryResponse

func NewQueryResponse

func NewQueryResponse(links Links) *QueryResponse

NewQueryResponse instantiates a new QueryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQueryResponseWithDefaults

func NewQueryResponseWithDefaults() *QueryResponse

NewQueryResponseWithDefaults instantiates a new QueryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QueryResponse) GetData

func (o *QueryResponse) GetData() []map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*QueryResponse) GetDataOk

func (o *QueryResponse) GetDataOk() ([]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponse) GetItemCount

func (o *QueryResponse) GetItemCount() int32

GetItemCount returns the ItemCount field value if set, zero value otherwise.

func (*QueryResponse) GetItemCountOk

func (o *QueryResponse) GetItemCountOk() (*int32, bool)

GetItemCountOk returns a tuple with the ItemCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *QueryResponse) GetLinks() Links

GetLinks returns the Links field value

func (*QueryResponse) GetLinksOk

func (o *QueryResponse) GetLinksOk() (*Links, bool)

GetLinksOk returns a tuple with the Links field value and a boolean to check if the value has been set.

func (*QueryResponse) GetPageNumber

func (o *QueryResponse) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

func (*QueryResponse) GetPageNumberOk

func (o *QueryResponse) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponse) GetPageSize

func (o *QueryResponse) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QueryResponse) GetPageSizeOk

func (o *QueryResponse) 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 (*QueryResponse) GetTotalItems

func (o *QueryResponse) GetTotalItems() int32

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*QueryResponse) GetTotalItemsOk

func (o *QueryResponse) GetTotalItemsOk() (*int32, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponse) GetTotalPages

func (o *QueryResponse) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*QueryResponse) GetTotalPagesOk

func (o *QueryResponse) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponse) GetWarning

func (o *QueryResponse) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise.

func (*QueryResponse) GetWarningOk

func (o *QueryResponse) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponse) HasData

func (o *QueryResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*QueryResponse) HasItemCount

func (o *QueryResponse) HasItemCount() bool

HasItemCount returns a boolean if a field has been set.

func (*QueryResponse) HasPageNumber

func (o *QueryResponse) HasPageNumber() bool

HasPageNumber returns a boolean if a field has been set.

func (*QueryResponse) HasPageSize

func (o *QueryResponse) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QueryResponse) HasTotalItems

func (o *QueryResponse) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (*QueryResponse) HasTotalPages

func (o *QueryResponse) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*QueryResponse) HasWarning

func (o *QueryResponse) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (QueryResponse) MarshalJSON

func (o QueryResponse) MarshalJSON() ([]byte, error)

func (*QueryResponse) SetData

func (o *QueryResponse) SetData(v []map[string]interface{})

SetData gets a reference to the given []map[string]interface{} and assigns it to the Data field.

func (*QueryResponse) SetItemCount

func (o *QueryResponse) SetItemCount(v int32)

SetItemCount gets a reference to the given int32 and assigns it to the ItemCount field.

func (o *QueryResponse) SetLinks(v Links)

SetLinks sets field value

func (*QueryResponse) SetPageNumber

func (o *QueryResponse) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*QueryResponse) SetPageSize

func (o *QueryResponse) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QueryResponse) SetTotalItems

func (o *QueryResponse) SetTotalItems(v int32)

SetTotalItems gets a reference to the given int32 and assigns it to the TotalItems field.

func (*QueryResponse) SetTotalPages

func (o *QueryResponse) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (*QueryResponse) SetWarning

func (o *QueryResponse) SetWarning(v string)

SetWarning gets a reference to the given string and assigns it to the Warning field.

func (QueryResponse) ToMap

func (o QueryResponse) ToMap() (map[string]interface{}, error)

func (*QueryResponse) UnmarshalJSON

func (o *QueryResponse) UnmarshalJSON(data []byte) (err error)

type QueryResponseActiveIssue

type QueryResponseActiveIssue struct {
	Data       []ActiveIssue `json:"data,omitempty"`
	PageNumber *int32        `json:"pageNumber,omitempty"`
	PageSize   *int32        `json:"pageSize,omitempty"`
	ItemCount  *int32        `json:"itemCount,omitempty"`
	TotalItems *int32        `json:"totalItems,omitempty"`
	TotalPages *int32        `json:"totalPages,omitempty"`
	Links      Links         `json:"_links"`
	Warning    *string       `json:"_warning,omitempty"`
}

QueryResponseActiveIssue struct for QueryResponseActiveIssue

func NewQueryResponseActiveIssue

func NewQueryResponseActiveIssue(links Links) *QueryResponseActiveIssue

NewQueryResponseActiveIssue instantiates a new QueryResponseActiveIssue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQueryResponseActiveIssueWithDefaults

func NewQueryResponseActiveIssueWithDefaults() *QueryResponseActiveIssue

NewQueryResponseActiveIssueWithDefaults instantiates a new QueryResponseActiveIssue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QueryResponseActiveIssue) GetData

func (o *QueryResponseActiveIssue) GetData() []ActiveIssue

GetData returns the Data field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetDataOk

func (o *QueryResponseActiveIssue) GetDataOk() ([]ActiveIssue, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseActiveIssue) GetItemCount

func (o *QueryResponseActiveIssue) GetItemCount() int32

GetItemCount returns the ItemCount field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetItemCountOk

func (o *QueryResponseActiveIssue) GetItemCountOk() (*int32, bool)

GetItemCountOk returns a tuple with the ItemCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *QueryResponseActiveIssue) GetLinks() Links

GetLinks returns the Links field value

func (*QueryResponseActiveIssue) GetLinksOk

func (o *QueryResponseActiveIssue) GetLinksOk() (*Links, bool)

GetLinksOk returns a tuple with the Links field value and a boolean to check if the value has been set.

func (*QueryResponseActiveIssue) GetPageNumber

func (o *QueryResponseActiveIssue) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetPageNumberOk

func (o *QueryResponseActiveIssue) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseActiveIssue) GetPageSize

func (o *QueryResponseActiveIssue) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetPageSizeOk

func (o *QueryResponseActiveIssue) 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 (*QueryResponseActiveIssue) GetTotalItems

func (o *QueryResponseActiveIssue) GetTotalItems() int32

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetTotalItemsOk

func (o *QueryResponseActiveIssue) GetTotalItemsOk() (*int32, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseActiveIssue) GetTotalPages

func (o *QueryResponseActiveIssue) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetTotalPagesOk

func (o *QueryResponseActiveIssue) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseActiveIssue) GetWarning

func (o *QueryResponseActiveIssue) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise.

func (*QueryResponseActiveIssue) GetWarningOk

func (o *QueryResponseActiveIssue) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseActiveIssue) HasData

func (o *QueryResponseActiveIssue) HasData() bool

HasData returns a boolean if a field has been set.

func (*QueryResponseActiveIssue) HasItemCount

func (o *QueryResponseActiveIssue) HasItemCount() bool

HasItemCount returns a boolean if a field has been set.

func (*QueryResponseActiveIssue) HasPageNumber

func (o *QueryResponseActiveIssue) HasPageNumber() bool

HasPageNumber returns a boolean if a field has been set.

func (*QueryResponseActiveIssue) HasPageSize

func (o *QueryResponseActiveIssue) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QueryResponseActiveIssue) HasTotalItems

func (o *QueryResponseActiveIssue) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (*QueryResponseActiveIssue) HasTotalPages

func (o *QueryResponseActiveIssue) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*QueryResponseActiveIssue) HasWarning

func (o *QueryResponseActiveIssue) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (QueryResponseActiveIssue) MarshalJSON

func (o QueryResponseActiveIssue) MarshalJSON() ([]byte, error)

func (*QueryResponseActiveIssue) SetData

func (o *QueryResponseActiveIssue) SetData(v []ActiveIssue)

SetData gets a reference to the given []ActiveIssue and assigns it to the Data field.

func (*QueryResponseActiveIssue) SetItemCount

func (o *QueryResponseActiveIssue) SetItemCount(v int32)

SetItemCount gets a reference to the given int32 and assigns it to the ItemCount field.

func (o *QueryResponseActiveIssue) SetLinks(v Links)

SetLinks sets field value

func (*QueryResponseActiveIssue) SetPageNumber

func (o *QueryResponseActiveIssue) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*QueryResponseActiveIssue) SetPageSize

func (o *QueryResponseActiveIssue) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QueryResponseActiveIssue) SetTotalItems

func (o *QueryResponseActiveIssue) SetTotalItems(v int32)

SetTotalItems gets a reference to the given int32 and assigns it to the TotalItems field.

func (*QueryResponseActiveIssue) SetTotalPages

func (o *QueryResponseActiveIssue) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (*QueryResponseActiveIssue) SetWarning

func (o *QueryResponseActiveIssue) SetWarning(v string)

SetWarning gets a reference to the given string and assigns it to the Warning field.

func (QueryResponseActiveIssue) ToMap

func (o QueryResponseActiveIssue) ToMap() (map[string]interface{}, error)

func (*QueryResponseActiveIssue) UnmarshalJSON

func (o *QueryResponseActiveIssue) UnmarshalJSON(data []byte) (err error)

type QueryResponseDevice

type QueryResponseDevice struct {
	Data       []Device `json:"data,omitempty"`
	PageNumber *int32   `json:"pageNumber,omitempty"`
	PageSize   *int32   `json:"pageSize,omitempty"`
	ItemCount  *int32   `json:"itemCount,omitempty"`
	TotalItems *int32   `json:"totalItems,omitempty"`
	TotalPages *int32   `json:"totalPages,omitempty"`
	Links      Links    `json:"_links"`
	Warning    *string  `json:"_warning,omitempty"`
}

QueryResponseDevice struct for QueryResponseDevice

func NewQueryResponseDevice

func NewQueryResponseDevice(links Links) *QueryResponseDevice

NewQueryResponseDevice instantiates a new QueryResponseDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQueryResponseDeviceWithDefaults

func NewQueryResponseDeviceWithDefaults() *QueryResponseDevice

NewQueryResponseDeviceWithDefaults instantiates a new QueryResponseDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QueryResponseDevice) GetData

func (o *QueryResponseDevice) GetData() []Device

GetData returns the Data field value if set, zero value otherwise.

func (*QueryResponseDevice) GetDataOk

func (o *QueryResponseDevice) GetDataOk() ([]Device, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseDevice) GetItemCount

func (o *QueryResponseDevice) GetItemCount() int32

GetItemCount returns the ItemCount field value if set, zero value otherwise.

func (*QueryResponseDevice) GetItemCountOk

func (o *QueryResponseDevice) GetItemCountOk() (*int32, bool)

GetItemCountOk returns a tuple with the ItemCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *QueryResponseDevice) GetLinks() Links

GetLinks returns the Links field value

func (*QueryResponseDevice) GetLinksOk

func (o *QueryResponseDevice) GetLinksOk() (*Links, bool)

GetLinksOk returns a tuple with the Links field value and a boolean to check if the value has been set.

func (*QueryResponseDevice) GetPageNumber

func (o *QueryResponseDevice) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

func (*QueryResponseDevice) GetPageNumberOk

func (o *QueryResponseDevice) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseDevice) GetPageSize

func (o *QueryResponseDevice) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QueryResponseDevice) GetPageSizeOk

func (o *QueryResponseDevice) 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 (*QueryResponseDevice) GetTotalItems

func (o *QueryResponseDevice) GetTotalItems() int32

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*QueryResponseDevice) GetTotalItemsOk

func (o *QueryResponseDevice) GetTotalItemsOk() (*int32, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseDevice) GetTotalPages

func (o *QueryResponseDevice) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*QueryResponseDevice) GetTotalPagesOk

func (o *QueryResponseDevice) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseDevice) GetWarning

func (o *QueryResponseDevice) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise.

func (*QueryResponseDevice) GetWarningOk

func (o *QueryResponseDevice) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseDevice) HasData

func (o *QueryResponseDevice) HasData() bool

HasData returns a boolean if a field has been set.

func (*QueryResponseDevice) HasItemCount

func (o *QueryResponseDevice) HasItemCount() bool

HasItemCount returns a boolean if a field has been set.

func (*QueryResponseDevice) HasPageNumber

func (o *QueryResponseDevice) HasPageNumber() bool

HasPageNumber returns a boolean if a field has been set.

func (*QueryResponseDevice) HasPageSize

func (o *QueryResponseDevice) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QueryResponseDevice) HasTotalItems

func (o *QueryResponseDevice) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (*QueryResponseDevice) HasTotalPages

func (o *QueryResponseDevice) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*QueryResponseDevice) HasWarning

func (o *QueryResponseDevice) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (QueryResponseDevice) MarshalJSON

func (o QueryResponseDevice) MarshalJSON() ([]byte, error)

func (*QueryResponseDevice) SetData

func (o *QueryResponseDevice) SetData(v []Device)

SetData gets a reference to the given []Device and assigns it to the Data field.

func (*QueryResponseDevice) SetItemCount

func (o *QueryResponseDevice) SetItemCount(v int32)

SetItemCount gets a reference to the given int32 and assigns it to the ItemCount field.

func (o *QueryResponseDevice) SetLinks(v Links)

SetLinks sets field value

func (*QueryResponseDevice) SetPageNumber

func (o *QueryResponseDevice) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*QueryResponseDevice) SetPageSize

func (o *QueryResponseDevice) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QueryResponseDevice) SetTotalItems

func (o *QueryResponseDevice) SetTotalItems(v int32)

SetTotalItems gets a reference to the given int32 and assigns it to the TotalItems field.

func (*QueryResponseDevice) SetTotalPages

func (o *QueryResponseDevice) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (*QueryResponseDevice) SetWarning

func (o *QueryResponseDevice) SetWarning(v string)

SetWarning gets a reference to the given string and assigns it to the Warning field.

func (QueryResponseDevice) ToMap

func (o QueryResponseDevice) ToMap() (map[string]interface{}, error)

func (*QueryResponseDevice) UnmarshalJSON

func (o *QueryResponseDevice) UnmarshalJSON(data []byte) (err error)

type QueryResponseUser

type QueryResponseUser struct {
	Data       []User  `json:"data,omitempty"`
	PageNumber *int32  `json:"pageNumber,omitempty"`
	PageSize   *int32  `json:"pageSize,omitempty"`
	ItemCount  *int32  `json:"itemCount,omitempty"`
	TotalItems *int32  `json:"totalItems,omitempty"`
	TotalPages *int32  `json:"totalPages,omitempty"`
	Links      Links   `json:"_links"`
	Warning    *string `json:"_warning,omitempty"`
}

QueryResponseUser struct for QueryResponseUser

func NewQueryResponseUser

func NewQueryResponseUser(links Links) *QueryResponseUser

NewQueryResponseUser instantiates a new QueryResponseUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQueryResponseUserWithDefaults

func NewQueryResponseUserWithDefaults() *QueryResponseUser

NewQueryResponseUserWithDefaults instantiates a new QueryResponseUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QueryResponseUser) GetData

func (o *QueryResponseUser) GetData() []User

GetData returns the Data field value if set, zero value otherwise.

func (*QueryResponseUser) GetDataOk

func (o *QueryResponseUser) GetDataOk() ([]User, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUser) GetItemCount

func (o *QueryResponseUser) GetItemCount() int32

GetItemCount returns the ItemCount field value if set, zero value otherwise.

func (*QueryResponseUser) GetItemCountOk

func (o *QueryResponseUser) GetItemCountOk() (*int32, bool)

GetItemCountOk returns a tuple with the ItemCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *QueryResponseUser) GetLinks() Links

GetLinks returns the Links field value

func (*QueryResponseUser) GetLinksOk

func (o *QueryResponseUser) GetLinksOk() (*Links, bool)

GetLinksOk returns a tuple with the Links field value and a boolean to check if the value has been set.

func (*QueryResponseUser) GetPageNumber

func (o *QueryResponseUser) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

func (*QueryResponseUser) GetPageNumberOk

func (o *QueryResponseUser) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUser) GetPageSize

func (o *QueryResponseUser) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QueryResponseUser) GetPageSizeOk

func (o *QueryResponseUser) 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 (*QueryResponseUser) GetTotalItems

func (o *QueryResponseUser) GetTotalItems() int32

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*QueryResponseUser) GetTotalItemsOk

func (o *QueryResponseUser) GetTotalItemsOk() (*int32, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUser) GetTotalPages

func (o *QueryResponseUser) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*QueryResponseUser) GetTotalPagesOk

func (o *QueryResponseUser) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUser) GetWarning

func (o *QueryResponseUser) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise.

func (*QueryResponseUser) GetWarningOk

func (o *QueryResponseUser) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUser) HasData

func (o *QueryResponseUser) HasData() bool

HasData returns a boolean if a field has been set.

func (*QueryResponseUser) HasItemCount

func (o *QueryResponseUser) HasItemCount() bool

HasItemCount returns a boolean if a field has been set.

func (*QueryResponseUser) HasPageNumber

func (o *QueryResponseUser) HasPageNumber() bool

HasPageNumber returns a boolean if a field has been set.

func (*QueryResponseUser) HasPageSize

func (o *QueryResponseUser) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QueryResponseUser) HasTotalItems

func (o *QueryResponseUser) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (*QueryResponseUser) HasTotalPages

func (o *QueryResponseUser) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*QueryResponseUser) HasWarning

func (o *QueryResponseUser) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (QueryResponseUser) MarshalJSON

func (o QueryResponseUser) MarshalJSON() ([]byte, error)

func (*QueryResponseUser) SetData

func (o *QueryResponseUser) SetData(v []User)

SetData gets a reference to the given []User and assigns it to the Data field.

func (*QueryResponseUser) SetItemCount

func (o *QueryResponseUser) SetItemCount(v int32)

SetItemCount gets a reference to the given int32 and assigns it to the ItemCount field.

func (o *QueryResponseUser) SetLinks(v Links)

SetLinks sets field value

func (*QueryResponseUser) SetPageNumber

func (o *QueryResponseUser) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*QueryResponseUser) SetPageSize

func (o *QueryResponseUser) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QueryResponseUser) SetTotalItems

func (o *QueryResponseUser) SetTotalItems(v int32)

SetTotalItems gets a reference to the given int32 and assigns it to the TotalItems field.

func (*QueryResponseUser) SetTotalPages

func (o *QueryResponseUser) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (*QueryResponseUser) SetWarning

func (o *QueryResponseUser) SetWarning(v string)

SetWarning gets a reference to the given string and assigns it to the Warning field.

func (QueryResponseUser) ToMap

func (o QueryResponseUser) ToMap() (map[string]interface{}, error)

func (*QueryResponseUser) UnmarshalJSON

func (o *QueryResponseUser) UnmarshalJSON(data []byte) (err error)

type QueryResponseUserRole

type QueryResponseUserRole struct {
	Data       []UserRole `json:"data,omitempty"`
	PageNumber *int32     `json:"pageNumber,omitempty"`
	PageSize   *int32     `json:"pageSize,omitempty"`
	ItemCount  *int32     `json:"itemCount,omitempty"`
	TotalItems *int32     `json:"totalItems,omitempty"`
	TotalPages *int32     `json:"totalPages,omitempty"`
	Links      Links      `json:"_links"`
	Warning    *string    `json:"_warning,omitempty"`
}

QueryResponseUserRole struct for QueryResponseUserRole

func NewQueryResponseUserRole

func NewQueryResponseUserRole(links Links) *QueryResponseUserRole

NewQueryResponseUserRole instantiates a new QueryResponseUserRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQueryResponseUserRoleWithDefaults

func NewQueryResponseUserRoleWithDefaults() *QueryResponseUserRole

NewQueryResponseUserRoleWithDefaults instantiates a new QueryResponseUserRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QueryResponseUserRole) GetData

func (o *QueryResponseUserRole) GetData() []UserRole

GetData returns the Data field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetDataOk

func (o *QueryResponseUserRole) GetDataOk() ([]UserRole, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUserRole) GetItemCount

func (o *QueryResponseUserRole) GetItemCount() int32

GetItemCount returns the ItemCount field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetItemCountOk

func (o *QueryResponseUserRole) GetItemCountOk() (*int32, bool)

GetItemCountOk returns a tuple with the ItemCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *QueryResponseUserRole) GetLinks() Links

GetLinks returns the Links field value

func (*QueryResponseUserRole) GetLinksOk

func (o *QueryResponseUserRole) GetLinksOk() (*Links, bool)

GetLinksOk returns a tuple with the Links field value and a boolean to check if the value has been set.

func (*QueryResponseUserRole) GetPageNumber

func (o *QueryResponseUserRole) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetPageNumberOk

func (o *QueryResponseUserRole) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUserRole) GetPageSize

func (o *QueryResponseUserRole) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetPageSizeOk

func (o *QueryResponseUserRole) 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 (*QueryResponseUserRole) GetTotalItems

func (o *QueryResponseUserRole) GetTotalItems() int32

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetTotalItemsOk

func (o *QueryResponseUserRole) GetTotalItemsOk() (*int32, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUserRole) GetTotalPages

func (o *QueryResponseUserRole) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetTotalPagesOk

func (o *QueryResponseUserRole) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUserRole) GetWarning

func (o *QueryResponseUserRole) GetWarning() string

GetWarning returns the Warning field value if set, zero value otherwise.

func (*QueryResponseUserRole) GetWarningOk

func (o *QueryResponseUserRole) GetWarningOk() (*string, bool)

GetWarningOk returns a tuple with the Warning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QueryResponseUserRole) HasData

func (o *QueryResponseUserRole) HasData() bool

HasData returns a boolean if a field has been set.

func (*QueryResponseUserRole) HasItemCount

func (o *QueryResponseUserRole) HasItemCount() bool

HasItemCount returns a boolean if a field has been set.

func (*QueryResponseUserRole) HasPageNumber

func (o *QueryResponseUserRole) HasPageNumber() bool

HasPageNumber returns a boolean if a field has been set.

func (*QueryResponseUserRole) HasPageSize

func (o *QueryResponseUserRole) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QueryResponseUserRole) HasTotalItems

func (o *QueryResponseUserRole) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (*QueryResponseUserRole) HasTotalPages

func (o *QueryResponseUserRole) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*QueryResponseUserRole) HasWarning

func (o *QueryResponseUserRole) HasWarning() bool

HasWarning returns a boolean if a field has been set.

func (QueryResponseUserRole) MarshalJSON

func (o QueryResponseUserRole) MarshalJSON() ([]byte, error)

func (*QueryResponseUserRole) SetData

func (o *QueryResponseUserRole) SetData(v []UserRole)

SetData gets a reference to the given []UserRole and assigns it to the Data field.

func (*QueryResponseUserRole) SetItemCount

func (o *QueryResponseUserRole) SetItemCount(v int32)

SetItemCount gets a reference to the given int32 and assigns it to the ItemCount field.

func (o *QueryResponseUserRole) SetLinks(v Links)

SetLinks sets field value

func (*QueryResponseUserRole) SetPageNumber

func (o *QueryResponseUserRole) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*QueryResponseUserRole) SetPageSize

func (o *QueryResponseUserRole) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QueryResponseUserRole) SetTotalItems

func (o *QueryResponseUserRole) SetTotalItems(v int32)

SetTotalItems gets a reference to the given int32 and assigns it to the TotalItems field.

func (*QueryResponseUserRole) SetTotalPages

func (o *QueryResponseUserRole) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (*QueryResponseUserRole) SetWarning

func (o *QueryResponseUserRole) SetWarning(v string)

SetWarning gets a reference to the given string and assigns it to the Warning field.

func (QueryResponseUserRole) ToMap

func (o QueryResponseUserRole) ToMap() (map[string]interface{}, error)

func (*QueryResponseUserRole) UnmarshalJSON

func (o *QueryResponseUserRole) UnmarshalJSON(data []byte) (err error)

type RegistrationToken

type RegistrationToken struct {
	// The registration-token date.
	RegistrationToken *string `json:"registrationToken,omitempty"`
	// The registration-token expiry date.
	RegistrationTokenExpiryDate *string `json:"registrationTokenExpiryDate,omitempty"`
}

RegistrationToken Represents the response for a registration token (GET endpoint).

func NewRegistrationToken

func NewRegistrationToken() *RegistrationToken

NewRegistrationToken instantiates a new RegistrationToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegistrationTokenWithDefaults

func NewRegistrationTokenWithDefaults() *RegistrationToken

NewRegistrationTokenWithDefaults instantiates a new RegistrationToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegistrationToken) GetRegistrationToken

func (o *RegistrationToken) GetRegistrationToken() string

GetRegistrationToken returns the RegistrationToken field value if set, zero value otherwise.

func (*RegistrationToken) GetRegistrationTokenExpiryDate

func (o *RegistrationToken) GetRegistrationTokenExpiryDate() string

GetRegistrationTokenExpiryDate returns the RegistrationTokenExpiryDate field value if set, zero value otherwise.

func (*RegistrationToken) GetRegistrationTokenExpiryDateOk

func (o *RegistrationToken) GetRegistrationTokenExpiryDateOk() (*string, bool)

GetRegistrationTokenExpiryDateOk returns a tuple with the RegistrationTokenExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationToken) GetRegistrationTokenOk

func (o *RegistrationToken) GetRegistrationTokenOk() (*string, bool)

GetRegistrationTokenOk returns a tuple with the RegistrationToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationToken) HasRegistrationToken

func (o *RegistrationToken) HasRegistrationToken() bool

HasRegistrationToken returns a boolean if a field has been set.

func (*RegistrationToken) HasRegistrationTokenExpiryDate

func (o *RegistrationToken) HasRegistrationTokenExpiryDate() bool

HasRegistrationTokenExpiryDate returns a boolean if a field has been set.

func (RegistrationToken) MarshalJSON

func (o RegistrationToken) MarshalJSON() ([]byte, error)

func (*RegistrationToken) SetRegistrationToken

func (o *RegistrationToken) SetRegistrationToken(v string)

SetRegistrationToken gets a reference to the given string and assigns it to the RegistrationToken field.

func (*RegistrationToken) SetRegistrationTokenExpiryDate

func (o *RegistrationToken) SetRegistrationTokenExpiryDate(v string)

SetRegistrationTokenExpiryDate gets a reference to the given string and assigns it to the RegistrationTokenExpiryDate field.

func (RegistrationToken) ToMap

func (o RegistrationToken) ToMap() (map[string]interface{}, error)

type RegistrationTokenGetResponse

type RegistrationTokenGetResponse struct {
	Data *RegistrationToken `json:"data,omitempty"`
}

RegistrationTokenGetResponse struct for RegistrationTokenGetResponse

func NewRegistrationTokenGetResponse

func NewRegistrationTokenGetResponse() *RegistrationTokenGetResponse

NewRegistrationTokenGetResponse instantiates a new RegistrationTokenGetResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegistrationTokenGetResponseWithDefaults

func NewRegistrationTokenGetResponseWithDefaults() *RegistrationTokenGetResponse

NewRegistrationTokenGetResponseWithDefaults instantiates a new RegistrationTokenGetResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegistrationTokenGetResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*RegistrationTokenGetResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationTokenGetResponse) HasData

func (o *RegistrationTokenGetResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (RegistrationTokenGetResponse) MarshalJSON

func (o RegistrationTokenGetResponse) MarshalJSON() ([]byte, error)

func (*RegistrationTokenGetResponse) SetData

SetData gets a reference to the given RegistrationToken and assigns it to the Data field.

func (RegistrationTokenGetResponse) ToMap

func (o RegistrationTokenGetResponse) ToMap() (map[string]interface{}, error)

type RegistrationTokensAPIService

type RegistrationTokensAPIService service

RegistrationTokensAPIService RegistrationTokensAPI service

func (*RegistrationTokensAPIService) GetCustomerRegistrationToken

func (a *RegistrationTokensAPIService) GetCustomerRegistrationToken(ctx context.Context, customerId int32) ApiGetCustomerRegistrationTokenRequest

GetCustomerRegistrationToken PREVIEW: Retrieve a customer registration token.

Returns a customer registration token.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param customerId The ID of the a customer.
@return ApiGetCustomerRegistrationTokenRequest

func (*RegistrationTokensAPIService) GetCustomerRegistrationTokenExecute

Execute executes the request

@return RegistrationTokenGetResponse

func (*RegistrationTokensAPIService) GetOrganizationUnitRegistrationToken

func (a *RegistrationTokensAPIService) GetOrganizationUnitRegistrationToken(ctx context.Context, orgUnitId int32) ApiGetOrganizationUnitRegistrationTokenRequest

GetOrganizationUnitRegistrationToken PREVIEW: Retrieve a organization unit registration token.

Returns a organization unit registration token.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId The ID of the a organization unit.
@return ApiGetOrganizationUnitRegistrationTokenRequest

func (*RegistrationTokensAPIService) GetOrganizationUnitRegistrationTokenExecute

Execute executes the request

@return RegistrationTokenGetResponse

func (*RegistrationTokensAPIService) GetSiteRegistrationToken

GetSiteRegistrationToken PREVIEW: Retrieve a site registration token.

Returns a site registration token.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param siteId
@return ApiGetSiteRegistrationTokenRequest

func (*RegistrationTokensAPIService) GetSiteRegistrationTokenExecute

Execute executes the request

@return RegistrationTokenGetResponse

type ScheduledTaskAggregatedStatusResponse

type ScheduledTaskAggregatedStatusResponse struct {
	Data *TaskAggregatedStatus `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

ScheduledTaskAggregatedStatusResponse Aggregated status response.

func NewScheduledTaskAggregatedStatusResponse

func NewScheduledTaskAggregatedStatusResponse() *ScheduledTaskAggregatedStatusResponse

NewScheduledTaskAggregatedStatusResponse instantiates a new ScheduledTaskAggregatedStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScheduledTaskAggregatedStatusResponseWithDefaults

func NewScheduledTaskAggregatedStatusResponseWithDefaults() *ScheduledTaskAggregatedStatusResponse

NewScheduledTaskAggregatedStatusResponseWithDefaults instantiates a new ScheduledTaskAggregatedStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScheduledTaskAggregatedStatusResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ScheduledTaskAggregatedStatusResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

GetLinks returns the Links field value if set, zero value otherwise.

func (*ScheduledTaskAggregatedStatusResponse) GetLinksOk

func (o *ScheduledTaskAggregatedStatusResponse) GetLinksOk() (*map[string]string, 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 (*ScheduledTaskAggregatedStatusResponse) HasData

HasData returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (ScheduledTaskAggregatedStatusResponse) MarshalJSON

func (o ScheduledTaskAggregatedStatusResponse) MarshalJSON() ([]byte, error)

func (*ScheduledTaskAggregatedStatusResponse) SetData

SetData gets a reference to the given TaskAggregatedStatus and assigns it to the Data field.

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (ScheduledTaskAggregatedStatusResponse) ToMap

func (o ScheduledTaskAggregatedStatusResponse) ToMap() (map[string]interface{}, error)

type ScheduledTaskCreateResponse

type ScheduledTaskCreateResponse struct {
	Data *TaskCreate `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

ScheduledTaskCreateResponse Response for a task-creation request

func NewScheduledTaskCreateResponse

func NewScheduledTaskCreateResponse() *ScheduledTaskCreateResponse

NewScheduledTaskCreateResponse instantiates a new ScheduledTaskCreateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScheduledTaskCreateResponseWithDefaults

func NewScheduledTaskCreateResponseWithDefaults() *ScheduledTaskCreateResponse

NewScheduledTaskCreateResponseWithDefaults instantiates a new ScheduledTaskCreateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScheduledTaskCreateResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ScheduledTaskCreateResponse) GetDataOk

func (o *ScheduledTaskCreateResponse) GetDataOk() (*TaskCreate, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ScheduledTaskCreateResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*ScheduledTaskCreateResponse) GetLinksOk

func (o *ScheduledTaskCreateResponse) GetLinksOk() (*map[string]string, 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 (*ScheduledTaskCreateResponse) HasData

func (o *ScheduledTaskCreateResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *ScheduledTaskCreateResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (ScheduledTaskCreateResponse) MarshalJSON

func (o ScheduledTaskCreateResponse) MarshalJSON() ([]byte, error)

func (*ScheduledTaskCreateResponse) SetData

SetData gets a reference to the given TaskCreate and assigns it to the Data field.

func (o *ScheduledTaskCreateResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (ScheduledTaskCreateResponse) ToMap

func (o ScheduledTaskCreateResponse) ToMap() (map[string]interface{}, error)

type ScheduledTaskCredential

type ScheduledTaskCredential struct {
	// The credential type. Supported values: LocalSystem, DeviceCredentials and CustomCredentials.
	Type string `json:"type"`
	// The username (used with 'CustomCredentials' type).
	Username *string `json:"username,omitempty"`
	// The password (used with 'CustomCredentials' type).
	Password *string `json:"password,omitempty"`
}

ScheduledTaskCredential Credentials for a remote execution task.

func NewScheduledTaskCredential

func NewScheduledTaskCredential(type_ string) *ScheduledTaskCredential

NewScheduledTaskCredential instantiates a new ScheduledTaskCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScheduledTaskCredentialWithDefaults

func NewScheduledTaskCredentialWithDefaults() *ScheduledTaskCredential

NewScheduledTaskCredentialWithDefaults instantiates a new ScheduledTaskCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScheduledTaskCredential) GetPassword

func (o *ScheduledTaskCredential) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ScheduledTaskCredential) GetPasswordOk

func (o *ScheduledTaskCredential) 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 (*ScheduledTaskCredential) GetType

func (o *ScheduledTaskCredential) GetType() string

GetType returns the Type field value

func (*ScheduledTaskCredential) GetTypeOk

func (o *ScheduledTaskCredential) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ScheduledTaskCredential) GetUsername

func (o *ScheduledTaskCredential) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ScheduledTaskCredential) GetUsernameOk

func (o *ScheduledTaskCredential) 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 (*ScheduledTaskCredential) HasPassword

func (o *ScheduledTaskCredential) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ScheduledTaskCredential) HasUsername

func (o *ScheduledTaskCredential) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ScheduledTaskCredential) MarshalJSON

func (o ScheduledTaskCredential) MarshalJSON() ([]byte, error)

func (*ScheduledTaskCredential) SetPassword

func (o *ScheduledTaskCredential) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ScheduledTaskCredential) SetType

func (o *ScheduledTaskCredential) SetType(v string)

SetType sets field value

func (*ScheduledTaskCredential) SetUsername

func (o *ScheduledTaskCredential) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ScheduledTaskCredential) ToMap

func (o ScheduledTaskCredential) ToMap() (map[string]interface{}, error)

func (*ScheduledTaskCredential) UnmarshalJSON

func (o *ScheduledTaskCredential) UnmarshalJSON(data []byte) (err error)

type ScheduledTaskInfoResponse

type ScheduledTaskInfoResponse struct {
	Data *TaskInfo `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

ScheduledTaskInfoResponse Task information response.

func NewScheduledTaskInfoResponse

func NewScheduledTaskInfoResponse() *ScheduledTaskInfoResponse

NewScheduledTaskInfoResponse instantiates a new ScheduledTaskInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScheduledTaskInfoResponseWithDefaults

func NewScheduledTaskInfoResponseWithDefaults() *ScheduledTaskInfoResponse

NewScheduledTaskInfoResponseWithDefaults instantiates a new ScheduledTaskInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScheduledTaskInfoResponse) GetData

func (o *ScheduledTaskInfoResponse) GetData() TaskInfo

GetData returns the Data field value if set, zero value otherwise.

func (*ScheduledTaskInfoResponse) GetDataOk

func (o *ScheduledTaskInfoResponse) GetDataOk() (*TaskInfo, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ScheduledTaskInfoResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*ScheduledTaskInfoResponse) GetLinksOk

func (o *ScheduledTaskInfoResponse) GetLinksOk() (*map[string]string, 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 (*ScheduledTaskInfoResponse) HasData

func (o *ScheduledTaskInfoResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *ScheduledTaskInfoResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (ScheduledTaskInfoResponse) MarshalJSON

func (o ScheduledTaskInfoResponse) MarshalJSON() ([]byte, error)

func (*ScheduledTaskInfoResponse) SetData

func (o *ScheduledTaskInfoResponse) SetData(v TaskInfo)

SetData gets a reference to the given TaskInfo and assigns it to the Data field.

func (o *ScheduledTaskInfoResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (ScheduledTaskInfoResponse) ToMap

func (o ScheduledTaskInfoResponse) ToMap() (map[string]interface{}, error)

type ScheduledTaskParameter

type ScheduledTaskParameter struct {
	// The parameter name. The value must not be empty.
	Name string `json:"name"`
	// The parameter value.
	Value *string `json:"value,omitempty"`
	// The parameter name. The value must not be empty.
	Description string `json:"description"`
	// The parameter type. Supported values: string, integer, boolean, text, dword.
	Type string `json:"type"`
}

ScheduledTaskParameter Input Parameters of the task to be executed, whether it is an Automation Policy, a script, a MAC script, etc. Parameters for an automation policy are defined according to the script repository item associated with a given scheduled task. For a script or a MAC script, the whole command line can be specified using the parameter \"CommandLine\".

func NewScheduledTaskParameter

func NewScheduledTaskParameter(name string, description string, type_ string) *ScheduledTaskParameter

NewScheduledTaskParameter instantiates a new ScheduledTaskParameter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScheduledTaskParameterWithDefaults

func NewScheduledTaskParameterWithDefaults() *ScheduledTaskParameter

NewScheduledTaskParameterWithDefaults instantiates a new ScheduledTaskParameter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScheduledTaskParameter) GetDescription

func (o *ScheduledTaskParameter) GetDescription() string

GetDescription returns the Description field value

func (*ScheduledTaskParameter) GetDescriptionOk

func (o *ScheduledTaskParameter) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*ScheduledTaskParameter) GetName

func (o *ScheduledTaskParameter) GetName() string

GetName returns the Name field value

func (*ScheduledTaskParameter) GetNameOk

func (o *ScheduledTaskParameter) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ScheduledTaskParameter) GetType

func (o *ScheduledTaskParameter) GetType() string

GetType returns the Type field value

func (*ScheduledTaskParameter) GetTypeOk

func (o *ScheduledTaskParameter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ScheduledTaskParameter) GetValue

func (o *ScheduledTaskParameter) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ScheduledTaskParameter) GetValueOk

func (o *ScheduledTaskParameter) 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 (*ScheduledTaskParameter) HasValue

func (o *ScheduledTaskParameter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ScheduledTaskParameter) MarshalJSON

func (o ScheduledTaskParameter) MarshalJSON() ([]byte, error)

func (*ScheduledTaskParameter) SetDescription

func (o *ScheduledTaskParameter) SetDescription(v string)

SetDescription sets field value

func (*ScheduledTaskParameter) SetName

func (o *ScheduledTaskParameter) SetName(v string)

SetName sets field value

func (*ScheduledTaskParameter) SetType

func (o *ScheduledTaskParameter) SetType(v string)

SetType sets field value

func (*ScheduledTaskParameter) SetValue

func (o *ScheduledTaskParameter) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ScheduledTaskParameter) ToMap

func (o ScheduledTaskParameter) ToMap() (map[string]interface{}, error)

func (*ScheduledTaskParameter) UnmarshalJSON

func (o *ScheduledTaskParameter) UnmarshalJSON(data []byte) (err error)

type ScheduledTasksAPIService

type ScheduledTasksAPIService service

ScheduledTasksAPIService ScheduledTasksAPI service

func (*ScheduledTasksAPIService) CreateRemoteExecutionTaskDirect

CreateRemoteExecutionTaskDirect Create a direct-support schedule task.

Create a direct-support schedule task against a specific device. As a direct-support schedule task, the task will be executed immediately against a single device. For more information about the request payload, please review below the schema of the relevant data type:

   <a href="#model-DirectSupportTask">DirectSupportTask</a>,
   <a href="#model-ScheduledTaskCredential">ScheduledTaskCredential</a>, and
   <a href="#model-ScheduledTaskParameter">ScheduledTaskParameter</a>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRemoteExecutionTaskDirectRequest

func (*ScheduledTasksAPIService) CreateRemoteExecutionTaskDirectExecute

Execute executes the request

@return ScheduledTaskCreateResponse

func (*ScheduledTasksAPIService) GetTask

GetTask Retrieves general information for a given task.

Retrieves general information for a given task using the task ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId ID of the task for which information is to be retrieved.
@return ApiGetTaskRequest

func (*ScheduledTasksAPIService) GetTaskExecute

Execute executes the request

@return ScheduledTaskInfoResponse

func (*ScheduledTasksAPIService) GetTaskStatus

GetTaskStatus Retrieves aggregated status for a given task.

Retrieves the aggregated status associated with a given task using the task ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId ID of the task for which aggregated status needs to be fetched.
@return ApiGetTaskStatusRequest

func (*ScheduledTasksAPIService) GetTaskStatusExecute

Execute executes the request

@return ScheduledTaskAggregatedStatusResponse

func (*ScheduledTasksAPIService) ListTaskStatusDetails

func (a *ScheduledTasksAPIService) ListTaskStatusDetails(ctx context.Context, taskId string) ApiListTaskStatusDetailsRequest

ListTaskStatusDetails Retrieves detailed status per device for a given task.

Retrieve a list of detailed statuses for each device associated with the given task using the task ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId ID of the task for which detailed status needs to be fetched.
@return ApiListTaskStatusDetailsRequest

func (*ScheduledTasksAPIService) ListTaskStatusDetailsExecute

Execute executes the request

@return ListResponseDetailsResponse

func (*ScheduledTasksAPIService) TaskRoot

TaskRoot List the task-related links.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTaskRootRequest

func (*ScheduledTasksAPIService) TaskRootExecute

Execute executes the request

@return LinksResponse

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 ServiceOrganization

type ServiceOrganization struct {
	// The ID of the organization unit.
	SoId *string `json:"soId,omitempty"`
	// The name of the organization unit.
	SoName *string `json:"soName,omitempty"`
	// The type of the organization unit (SYSTEM, SO, CUSTOMER or SITE).
	OrgUnitType *string `json:"orgUnitType,omitempty"`
	// The ID of the parent organization unit.
	ParentId *string `json:"parentId,omitempty"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// The external ID 2 of the organization unit.
	ExternalId2 *string `json:"externalId2,omitempty"`
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode   *string `json:"postalCode,omitempty"`
	IsSystem     *bool   `json:"isSystem,omitempty"`
	IsServiceOrg *bool   `json:"isServiceOrg,omitempty"`
}

ServiceOrganization Data object for service organization.

func NewServiceOrganization

func NewServiceOrganization(contactFirstName string, contactLastName string) *ServiceOrganization

NewServiceOrganization instantiates a new ServiceOrganization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceOrganizationWithDefaults

func NewServiceOrganizationWithDefaults() *ServiceOrganization

NewServiceOrganizationWithDefaults instantiates a new ServiceOrganization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceOrganization) GetCity

func (o *ServiceOrganization) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*ServiceOrganization) GetCityOk

func (o *ServiceOrganization) 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 (*ServiceOrganization) GetContactDepartment

func (o *ServiceOrganization) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*ServiceOrganization) GetContactDepartmentOk

func (o *ServiceOrganization) GetContactDepartmentOk() (*string, bool)

GetContactDepartmentOk returns a tuple with the ContactDepartment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetContactEmail

func (o *ServiceOrganization) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*ServiceOrganization) GetContactEmailOk

func (o *ServiceOrganization) GetContactEmailOk() (*string, bool)

GetContactEmailOk returns a tuple with the ContactEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetContactFirstName

func (o *ServiceOrganization) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*ServiceOrganization) GetContactFirstNameOk

func (o *ServiceOrganization) GetContactFirstNameOk() (*string, bool)

GetContactFirstNameOk returns a tuple with the ContactFirstName field value and a boolean to check if the value has been set.

func (*ServiceOrganization) GetContactLastName

func (o *ServiceOrganization) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*ServiceOrganization) GetContactLastNameOk

func (o *ServiceOrganization) GetContactLastNameOk() (*string, bool)

GetContactLastNameOk returns a tuple with the ContactLastName field value and a boolean to check if the value has been set.

func (*ServiceOrganization) GetContactPhone

func (o *ServiceOrganization) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*ServiceOrganization) GetContactPhoneExt

func (o *ServiceOrganization) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*ServiceOrganization) GetContactPhoneExtOk

func (o *ServiceOrganization) GetContactPhoneExtOk() (*string, bool)

GetContactPhoneExtOk returns a tuple with the ContactPhoneExt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetContactPhoneOk

func (o *ServiceOrganization) GetContactPhoneOk() (*string, bool)

GetContactPhoneOk returns a tuple with the ContactPhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetContactTitle

func (o *ServiceOrganization) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*ServiceOrganization) GetContactTitleOk

func (o *ServiceOrganization) GetContactTitleOk() (*string, bool)

GetContactTitleOk returns a tuple with the ContactTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetCountry

func (o *ServiceOrganization) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*ServiceOrganization) GetCountryOk

func (o *ServiceOrganization) 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 (*ServiceOrganization) GetExternalId

func (o *ServiceOrganization) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServiceOrganization) GetExternalId2

func (o *ServiceOrganization) GetExternalId2() string

GetExternalId2 returns the ExternalId2 field value if set, zero value otherwise.

func (*ServiceOrganization) GetExternalId2Ok

func (o *ServiceOrganization) GetExternalId2Ok() (*string, bool)

GetExternalId2Ok returns a tuple with the ExternalId2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetExternalIdOk

func (o *ServiceOrganization) 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 (*ServiceOrganization) GetIsServiceOrg

func (o *ServiceOrganization) GetIsServiceOrg() bool

GetIsServiceOrg returns the IsServiceOrg field value if set, zero value otherwise.

func (*ServiceOrganization) GetIsServiceOrgOk

func (o *ServiceOrganization) GetIsServiceOrgOk() (*bool, bool)

GetIsServiceOrgOk returns a tuple with the IsServiceOrg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetIsSystem

func (o *ServiceOrganization) GetIsSystem() bool

GetIsSystem returns the IsSystem field value if set, zero value otherwise.

func (*ServiceOrganization) GetIsSystemOk

func (o *ServiceOrganization) GetIsSystemOk() (*bool, bool)

GetIsSystemOk returns a tuple with the IsSystem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetOrgUnitType

func (o *ServiceOrganization) GetOrgUnitType() string

GetOrgUnitType returns the OrgUnitType field value if set, zero value otherwise.

func (*ServiceOrganization) GetOrgUnitTypeOk

func (o *ServiceOrganization) GetOrgUnitTypeOk() (*string, bool)

GetOrgUnitTypeOk returns a tuple with the OrgUnitType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetParentId

func (o *ServiceOrganization) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*ServiceOrganization) GetParentIdOk

func (o *ServiceOrganization) 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 (*ServiceOrganization) GetPhone

func (o *ServiceOrganization) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*ServiceOrganization) GetPhoneOk

func (o *ServiceOrganization) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetPostalCode

func (o *ServiceOrganization) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*ServiceOrganization) GetPostalCodeOk

func (o *ServiceOrganization) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetSoId

func (o *ServiceOrganization) GetSoId() string

GetSoId returns the SoId field value if set, zero value otherwise.

func (*ServiceOrganization) GetSoIdOk

func (o *ServiceOrganization) GetSoIdOk() (*string, bool)

GetSoIdOk returns a tuple with the SoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetSoName

func (o *ServiceOrganization) GetSoName() string

GetSoName returns the SoName field value if set, zero value otherwise.

func (*ServiceOrganization) GetSoNameOk

func (o *ServiceOrganization) GetSoNameOk() (*string, bool)

GetSoNameOk returns a tuple with the SoName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetStateProv

func (o *ServiceOrganization) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*ServiceOrganization) GetStateProvOk

func (o *ServiceOrganization) GetStateProvOk() (*string, bool)

GetStateProvOk returns a tuple with the StateProv field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetStreet1

func (o *ServiceOrganization) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*ServiceOrganization) GetStreet1Ok

func (o *ServiceOrganization) GetStreet1Ok() (*string, bool)

GetStreet1Ok returns a tuple with the Street1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) GetStreet2

func (o *ServiceOrganization) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*ServiceOrganization) GetStreet2Ok

func (o *ServiceOrganization) GetStreet2Ok() (*string, bool)

GetStreet2Ok returns a tuple with the Street2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganization) HasCity

func (o *ServiceOrganization) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*ServiceOrganization) HasContactDepartment

func (o *ServiceOrganization) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*ServiceOrganization) HasContactEmail

func (o *ServiceOrganization) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*ServiceOrganization) HasContactPhone

func (o *ServiceOrganization) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*ServiceOrganization) HasContactPhoneExt

func (o *ServiceOrganization) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*ServiceOrganization) HasContactTitle

func (o *ServiceOrganization) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*ServiceOrganization) HasCountry

func (o *ServiceOrganization) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*ServiceOrganization) HasExternalId

func (o *ServiceOrganization) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServiceOrganization) HasExternalId2

func (o *ServiceOrganization) HasExternalId2() bool

HasExternalId2 returns a boolean if a field has been set.

func (*ServiceOrganization) HasIsServiceOrg

func (o *ServiceOrganization) HasIsServiceOrg() bool

HasIsServiceOrg returns a boolean if a field has been set.

func (*ServiceOrganization) HasIsSystem

func (o *ServiceOrganization) HasIsSystem() bool

HasIsSystem returns a boolean if a field has been set.

func (*ServiceOrganization) HasOrgUnitType

func (o *ServiceOrganization) HasOrgUnitType() bool

HasOrgUnitType returns a boolean if a field has been set.

func (*ServiceOrganization) HasParentId

func (o *ServiceOrganization) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*ServiceOrganization) HasPhone

func (o *ServiceOrganization) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*ServiceOrganization) HasPostalCode

func (o *ServiceOrganization) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*ServiceOrganization) HasSoId

func (o *ServiceOrganization) HasSoId() bool

HasSoId returns a boolean if a field has been set.

func (*ServiceOrganization) HasSoName

func (o *ServiceOrganization) HasSoName() bool

HasSoName returns a boolean if a field has been set.

func (*ServiceOrganization) HasStateProv

func (o *ServiceOrganization) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*ServiceOrganization) HasStreet1

func (o *ServiceOrganization) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*ServiceOrganization) HasStreet2

func (o *ServiceOrganization) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (ServiceOrganization) MarshalJSON

func (o ServiceOrganization) MarshalJSON() ([]byte, error)

func (*ServiceOrganization) SetCity

func (o *ServiceOrganization) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*ServiceOrganization) SetContactDepartment

func (o *ServiceOrganization) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*ServiceOrganization) SetContactEmail

func (o *ServiceOrganization) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*ServiceOrganization) SetContactFirstName

func (o *ServiceOrganization) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*ServiceOrganization) SetContactLastName

func (o *ServiceOrganization) SetContactLastName(v string)

SetContactLastName sets field value

func (*ServiceOrganization) SetContactPhone

func (o *ServiceOrganization) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*ServiceOrganization) SetContactPhoneExt

func (o *ServiceOrganization) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*ServiceOrganization) SetContactTitle

func (o *ServiceOrganization) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*ServiceOrganization) SetCountry

func (o *ServiceOrganization) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*ServiceOrganization) SetExternalId

func (o *ServiceOrganization) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServiceOrganization) SetExternalId2

func (o *ServiceOrganization) SetExternalId2(v string)

SetExternalId2 gets a reference to the given string and assigns it to the ExternalId2 field.

func (*ServiceOrganization) SetIsServiceOrg

func (o *ServiceOrganization) SetIsServiceOrg(v bool)

SetIsServiceOrg gets a reference to the given bool and assigns it to the IsServiceOrg field.

func (*ServiceOrganization) SetIsSystem

func (o *ServiceOrganization) SetIsSystem(v bool)

SetIsSystem gets a reference to the given bool and assigns it to the IsSystem field.

func (*ServiceOrganization) SetOrgUnitType

func (o *ServiceOrganization) SetOrgUnitType(v string)

SetOrgUnitType gets a reference to the given string and assigns it to the OrgUnitType field.

func (*ServiceOrganization) SetParentId

func (o *ServiceOrganization) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*ServiceOrganization) SetPhone

func (o *ServiceOrganization) SetPhone(v string)

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (*ServiceOrganization) SetPostalCode

func (o *ServiceOrganization) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*ServiceOrganization) SetSoId

func (o *ServiceOrganization) SetSoId(v string)

SetSoId gets a reference to the given string and assigns it to the SoId field.

func (*ServiceOrganization) SetSoName

func (o *ServiceOrganization) SetSoName(v string)

SetSoName gets a reference to the given string and assigns it to the SoName field.

func (*ServiceOrganization) SetStateProv

func (o *ServiceOrganization) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*ServiceOrganization) SetStreet1

func (o *ServiceOrganization) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*ServiceOrganization) SetStreet2

func (o *ServiceOrganization) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (ServiceOrganization) ToMap

func (o ServiceOrganization) ToMap() (map[string]interface{}, error)

func (*ServiceOrganization) UnmarshalJSON

func (o *ServiceOrganization) UnmarshalJSON(data []byte) (err error)

type ServiceOrganizationCreated

type ServiceOrganizationCreated struct {
	// Id of the created service organization.
	SoId *int32 `json:"soId,omitempty"`
}

ServiceOrganizationCreated Represents the response of creating a new service organization and contains its ID.

func NewServiceOrganizationCreated

func NewServiceOrganizationCreated() *ServiceOrganizationCreated

NewServiceOrganizationCreated instantiates a new ServiceOrganizationCreated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceOrganizationCreatedWithDefaults

func NewServiceOrganizationCreatedWithDefaults() *ServiceOrganizationCreated

NewServiceOrganizationCreatedWithDefaults instantiates a new ServiceOrganizationCreated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceOrganizationCreated) GetSoId

func (o *ServiceOrganizationCreated) GetSoId() int32

GetSoId returns the SoId field value if set, zero value otherwise.

func (*ServiceOrganizationCreated) GetSoIdOk

func (o *ServiceOrganizationCreated) GetSoIdOk() (*int32, bool)

GetSoIdOk returns a tuple with the SoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreated) HasSoId

func (o *ServiceOrganizationCreated) HasSoId() bool

HasSoId returns a boolean if a field has been set.

func (ServiceOrganizationCreated) MarshalJSON

func (o ServiceOrganizationCreated) MarshalJSON() ([]byte, error)

func (*ServiceOrganizationCreated) SetSoId

func (o *ServiceOrganizationCreated) SetSoId(v int32)

SetSoId gets a reference to the given int32 and assigns it to the SoId field.

func (ServiceOrganizationCreated) ToMap

func (o ServiceOrganizationCreated) ToMap() (map[string]interface{}, error)

type ServiceOrganizationCreation

type ServiceOrganizationCreation struct {
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode *string `json:"postalCode,omitempty"`
	// Name of the service organization.
	SoName string `json:"soName"`
}

ServiceOrganizationCreation Data object for organization unit.

func NewServiceOrganizationCreation

func NewServiceOrganizationCreation(contactFirstName string, contactLastName string, soName string) *ServiceOrganizationCreation

NewServiceOrganizationCreation instantiates a new ServiceOrganizationCreation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceOrganizationCreationWithDefaults

func NewServiceOrganizationCreationWithDefaults() *ServiceOrganizationCreation

NewServiceOrganizationCreationWithDefaults instantiates a new ServiceOrganizationCreation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceOrganizationCreation) GetCity

func (o *ServiceOrganizationCreation) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetCityOk

func (o *ServiceOrganizationCreation) 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 (*ServiceOrganizationCreation) GetContactDepartment

func (o *ServiceOrganizationCreation) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetContactDepartmentOk

func (o *ServiceOrganizationCreation) GetContactDepartmentOk() (*string, bool)

GetContactDepartmentOk returns a tuple with the ContactDepartment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetContactEmail

func (o *ServiceOrganizationCreation) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetContactEmailOk

func (o *ServiceOrganizationCreation) GetContactEmailOk() (*string, bool)

GetContactEmailOk returns a tuple with the ContactEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetContactFirstName

func (o *ServiceOrganizationCreation) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*ServiceOrganizationCreation) GetContactFirstNameOk

func (o *ServiceOrganizationCreation) GetContactFirstNameOk() (*string, bool)

GetContactFirstNameOk returns a tuple with the ContactFirstName field value and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetContactLastName

func (o *ServiceOrganizationCreation) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*ServiceOrganizationCreation) GetContactLastNameOk

func (o *ServiceOrganizationCreation) GetContactLastNameOk() (*string, bool)

GetContactLastNameOk returns a tuple with the ContactLastName field value and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetContactPhone

func (o *ServiceOrganizationCreation) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetContactPhoneExt

func (o *ServiceOrganizationCreation) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetContactPhoneExtOk

func (o *ServiceOrganizationCreation) GetContactPhoneExtOk() (*string, bool)

GetContactPhoneExtOk returns a tuple with the ContactPhoneExt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetContactPhoneOk

func (o *ServiceOrganizationCreation) GetContactPhoneOk() (*string, bool)

GetContactPhoneOk returns a tuple with the ContactPhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetContactTitle

func (o *ServiceOrganizationCreation) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetContactTitleOk

func (o *ServiceOrganizationCreation) GetContactTitleOk() (*string, bool)

GetContactTitleOk returns a tuple with the ContactTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetCountry

func (o *ServiceOrganizationCreation) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetCountryOk

func (o *ServiceOrganizationCreation) 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 (*ServiceOrganizationCreation) GetExternalId

func (o *ServiceOrganizationCreation) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetExternalIdOk

func (o *ServiceOrganizationCreation) 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 (*ServiceOrganizationCreation) GetPhone

func (o *ServiceOrganizationCreation) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetPhoneOk

func (o *ServiceOrganizationCreation) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetPostalCode

func (o *ServiceOrganizationCreation) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetPostalCodeOk

func (o *ServiceOrganizationCreation) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetSoName

func (o *ServiceOrganizationCreation) GetSoName() string

GetSoName returns the SoName field value

func (*ServiceOrganizationCreation) GetSoNameOk

func (o *ServiceOrganizationCreation) GetSoNameOk() (*string, bool)

GetSoNameOk returns a tuple with the SoName field value and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetStateProv

func (o *ServiceOrganizationCreation) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetStateProvOk

func (o *ServiceOrganizationCreation) GetStateProvOk() (*string, bool)

GetStateProvOk returns a tuple with the StateProv field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetStreet1

func (o *ServiceOrganizationCreation) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetStreet1Ok

func (o *ServiceOrganizationCreation) GetStreet1Ok() (*string, bool)

GetStreet1Ok returns a tuple with the Street1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) GetStreet2

func (o *ServiceOrganizationCreation) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*ServiceOrganizationCreation) GetStreet2Ok

func (o *ServiceOrganizationCreation) GetStreet2Ok() (*string, bool)

GetStreet2Ok returns a tuple with the Street2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceOrganizationCreation) HasCity

func (o *ServiceOrganizationCreation) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasContactDepartment

func (o *ServiceOrganizationCreation) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasContactEmail

func (o *ServiceOrganizationCreation) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasContactPhone

func (o *ServiceOrganizationCreation) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasContactPhoneExt

func (o *ServiceOrganizationCreation) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasContactTitle

func (o *ServiceOrganizationCreation) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasCountry

func (o *ServiceOrganizationCreation) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasExternalId

func (o *ServiceOrganizationCreation) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasPhone

func (o *ServiceOrganizationCreation) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasPostalCode

func (o *ServiceOrganizationCreation) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasStateProv

func (o *ServiceOrganizationCreation) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasStreet1

func (o *ServiceOrganizationCreation) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*ServiceOrganizationCreation) HasStreet2

func (o *ServiceOrganizationCreation) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (ServiceOrganizationCreation) MarshalJSON

func (o ServiceOrganizationCreation) MarshalJSON() ([]byte, error)

func (*ServiceOrganizationCreation) SetCity

func (o *ServiceOrganizationCreation) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*ServiceOrganizationCreation) SetContactDepartment

func (o *ServiceOrganizationCreation) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*ServiceOrganizationCreation) SetContactEmail

func (o *ServiceOrganizationCreation) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*ServiceOrganizationCreation) SetContactFirstName

func (o *ServiceOrganizationCreation) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*ServiceOrganizationCreation) SetContactLastName

func (o *ServiceOrganizationCreation) SetContactLastName(v string)

SetContactLastName sets field value

func (*ServiceOrganizationCreation) SetContactPhone

func (o *ServiceOrganizationCreation) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*ServiceOrganizationCreation) SetContactPhoneExt

func (o *ServiceOrganizationCreation) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*ServiceOrganizationCreation) SetContactTitle

func (o *ServiceOrganizationCreation) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*ServiceOrganizationCreation) SetCountry

func (o *ServiceOrganizationCreation) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*ServiceOrganizationCreation) SetExternalId

func (o *ServiceOrganizationCreation) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServiceOrganizationCreation) SetPhone

func (o *ServiceOrganizationCreation) SetPhone(v string)

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (*ServiceOrganizationCreation) SetPostalCode

func (o *ServiceOrganizationCreation) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*ServiceOrganizationCreation) SetSoName

func (o *ServiceOrganizationCreation) SetSoName(v string)

SetSoName sets field value

func (*ServiceOrganizationCreation) SetStateProv

func (o *ServiceOrganizationCreation) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*ServiceOrganizationCreation) SetStreet1

func (o *ServiceOrganizationCreation) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*ServiceOrganizationCreation) SetStreet2

func (o *ServiceOrganizationCreation) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (ServiceOrganizationCreation) ToMap

func (o ServiceOrganizationCreation) ToMap() (map[string]interface{}, error)

func (*ServiceOrganizationCreation) UnmarshalJSON

func (o *ServiceOrganizationCreation) UnmarshalJSON(data []byte) (err error)

type Site

type Site struct {
	// The ID of the organization unit.
	SiteId *string `json:"siteId,omitempty"`
	// The name of the organization unit.
	SiteName *string `json:"siteName,omitempty"`
	// The type of the organization unit (SYSTEM, SO, CUSTOMER or SITE).
	OrgUnitType *string `json:"orgUnitType,omitempty"`
	// The ID of the parent organization unit.
	ParentId *string `json:"parentId,omitempty"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// The external ID 2 of the organization unit.
	ExternalId2 *string `json:"externalId2,omitempty"`
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode   *string `json:"postalCode,omitempty"`
	IsSystem     *bool   `json:"isSystem,omitempty"`
	IsServiceOrg *bool   `json:"isServiceOrg,omitempty"`
}

Site Data object for service organiztion organization.

func NewSite

func NewSite(contactFirstName string, contactLastName string) *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) GetCity

func (o *Site) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*Site) GetCityOk

func (o *Site) 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 (*Site) GetContactDepartment

func (o *Site) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*Site) GetContactDepartmentOk

func (o *Site) GetContactDepartmentOk() (*string, bool)

GetContactDepartmentOk returns a tuple with the ContactDepartment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetContactEmail

func (o *Site) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*Site) GetContactEmailOk

func (o *Site) GetContactEmailOk() (*string, bool)

GetContactEmailOk returns a tuple with the ContactEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetContactFirstName

func (o *Site) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*Site) GetContactFirstNameOk

func (o *Site) GetContactFirstNameOk() (*string, bool)

GetContactFirstNameOk returns a tuple with the ContactFirstName field value and a boolean to check if the value has been set.

func (*Site) GetContactLastName

func (o *Site) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*Site) GetContactLastNameOk

func (o *Site) GetContactLastNameOk() (*string, bool)

GetContactLastNameOk returns a tuple with the ContactLastName field value and a boolean to check if the value has been set.

func (*Site) GetContactPhone

func (o *Site) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*Site) GetContactPhoneExt

func (o *Site) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*Site) GetContactPhoneExtOk

func (o *Site) GetContactPhoneExtOk() (*string, bool)

GetContactPhoneExtOk returns a tuple with the ContactPhoneExt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetContactPhoneOk

func (o *Site) GetContactPhoneOk() (*string, bool)

GetContactPhoneOk returns a tuple with the ContactPhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetContactTitle

func (o *Site) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*Site) GetContactTitleOk

func (o *Site) GetContactTitleOk() (*string, bool)

GetContactTitleOk returns a tuple with the ContactTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetCountry

func (o *Site) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Site) GetCountryOk

func (o *Site) 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 (*Site) GetExternalId

func (o *Site) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*Site) GetExternalId2

func (o *Site) GetExternalId2() string

GetExternalId2 returns the ExternalId2 field value if set, zero value otherwise.

func (*Site) GetExternalId2Ok

func (o *Site) GetExternalId2Ok() (*string, bool)

GetExternalId2Ok returns a tuple with the ExternalId2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetExternalIdOk

func (o *Site) 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 (*Site) GetIsServiceOrg

func (o *Site) GetIsServiceOrg() bool

GetIsServiceOrg returns the IsServiceOrg field value if set, zero value otherwise.

func (*Site) GetIsServiceOrgOk

func (o *Site) GetIsServiceOrgOk() (*bool, bool)

GetIsServiceOrgOk returns a tuple with the IsServiceOrg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetIsSystem

func (o *Site) GetIsSystem() bool

GetIsSystem returns the IsSystem field value if set, zero value otherwise.

func (*Site) GetIsSystemOk

func (o *Site) GetIsSystemOk() (*bool, bool)

GetIsSystemOk returns a tuple with the IsSystem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetOrgUnitType

func (o *Site) GetOrgUnitType() string

GetOrgUnitType returns the OrgUnitType field value if set, zero value otherwise.

func (*Site) GetOrgUnitTypeOk

func (o *Site) GetOrgUnitTypeOk() (*string, bool)

GetOrgUnitTypeOk returns a tuple with the OrgUnitType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetParentId

func (o *Site) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*Site) GetParentIdOk

func (o *Site) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetPhone

func (o *Site) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*Site) GetPhoneOk

func (o *Site) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetPostalCode

func (o *Site) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*Site) GetPostalCodeOk

func (o *Site) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetSiteId

func (o *Site) GetSiteId() string

GetSiteId returns the SiteId field value if set, zero value otherwise.

func (*Site) GetSiteIdOk

func (o *Site) GetSiteIdOk() (*string, bool)

GetSiteIdOk returns a tuple with the SiteId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetSiteName

func (o *Site) GetSiteName() string

GetSiteName returns the SiteName field value if set, zero value otherwise.

func (*Site) GetSiteNameOk

func (o *Site) GetSiteNameOk() (*string, bool)

GetSiteNameOk returns a tuple with the SiteName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetStateProv

func (o *Site) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*Site) GetStateProvOk

func (o *Site) GetStateProvOk() (*string, bool)

GetStateProvOk returns a tuple with the StateProv field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetStreet1

func (o *Site) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*Site) GetStreet1Ok

func (o *Site) GetStreet1Ok() (*string, bool)

GetStreet1Ok returns a tuple with the Street1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetStreet2

func (o *Site) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*Site) GetStreet2Ok

func (o *Site) GetStreet2Ok() (*string, bool)

GetStreet2Ok returns a tuple with the Street2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) HasCity

func (o *Site) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*Site) HasContactDepartment

func (o *Site) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*Site) HasContactEmail

func (o *Site) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*Site) HasContactPhone

func (o *Site) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*Site) HasContactPhoneExt

func (o *Site) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*Site) HasContactTitle

func (o *Site) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*Site) HasCountry

func (o *Site) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Site) HasExternalId

func (o *Site) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*Site) HasExternalId2

func (o *Site) HasExternalId2() bool

HasExternalId2 returns a boolean if a field has been set.

func (*Site) HasIsServiceOrg

func (o *Site) HasIsServiceOrg() bool

HasIsServiceOrg returns a boolean if a field has been set.

func (*Site) HasIsSystem

func (o *Site) HasIsSystem() bool

HasIsSystem returns a boolean if a field has been set.

func (*Site) HasOrgUnitType

func (o *Site) HasOrgUnitType() bool

HasOrgUnitType 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) HasPhone

func (o *Site) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*Site) HasPostalCode

func (o *Site) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*Site) HasSiteId

func (o *Site) HasSiteId() bool

HasSiteId returns a boolean if a field has been set.

func (*Site) HasSiteName

func (o *Site) HasSiteName() bool

HasSiteName returns a boolean if a field has been set.

func (*Site) HasStateProv

func (o *Site) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*Site) HasStreet1

func (o *Site) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*Site) HasStreet2

func (o *Site) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (Site) MarshalJSON

func (o Site) MarshalJSON() ([]byte, error)

func (*Site) SetCity

func (o *Site) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*Site) SetContactDepartment

func (o *Site) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*Site) SetContactEmail

func (o *Site) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*Site) SetContactFirstName

func (o *Site) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*Site) SetContactLastName

func (o *Site) SetContactLastName(v string)

SetContactLastName sets field value

func (*Site) SetContactPhone

func (o *Site) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*Site) SetContactPhoneExt

func (o *Site) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*Site) SetContactTitle

func (o *Site) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*Site) SetCountry

func (o *Site) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Site) SetExternalId

func (o *Site) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*Site) SetExternalId2

func (o *Site) SetExternalId2(v string)

SetExternalId2 gets a reference to the given string and assigns it to the ExternalId2 field.

func (*Site) SetIsServiceOrg

func (o *Site) SetIsServiceOrg(v bool)

SetIsServiceOrg gets a reference to the given bool and assigns it to the IsServiceOrg field.

func (*Site) SetIsSystem

func (o *Site) SetIsSystem(v bool)

SetIsSystem gets a reference to the given bool and assigns it to the IsSystem field.

func (*Site) SetOrgUnitType

func (o *Site) SetOrgUnitType(v string)

SetOrgUnitType gets a reference to the given string and assigns it to the OrgUnitType field.

func (*Site) SetParentId

func (o *Site) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*Site) SetPhone

func (o *Site) SetPhone(v string)

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (*Site) SetPostalCode

func (o *Site) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*Site) SetSiteId

func (o *Site) SetSiteId(v string)

SetSiteId gets a reference to the given string and assigns it to the SiteId field.

func (*Site) SetSiteName

func (o *Site) SetSiteName(v string)

SetSiteName gets a reference to the given string and assigns it to the SiteName field.

func (*Site) SetStateProv

func (o *Site) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*Site) SetStreet1

func (o *Site) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*Site) SetStreet2

func (o *Site) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (Site) ToMap

func (o Site) ToMap() (map[string]interface{}, error)

func (*Site) UnmarshalJSON

func (o *Site) UnmarshalJSON(data []byte) (err error)

type SiteCreated

type SiteCreated struct {
	// Id of the created site.
	SiteId *int32 `json:"siteId,omitempty"`
}

SiteCreated struct for SiteCreated

func NewSiteCreated

func NewSiteCreated() *SiteCreated

NewSiteCreated instantiates a new SiteCreated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteCreatedWithDefaults

func NewSiteCreatedWithDefaults() *SiteCreated

NewSiteCreatedWithDefaults instantiates a new SiteCreated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteCreated) GetSiteId

func (o *SiteCreated) GetSiteId() int32

GetSiteId returns the SiteId field value if set, zero value otherwise.

func (*SiteCreated) GetSiteIdOk

func (o *SiteCreated) GetSiteIdOk() (*int32, bool)

GetSiteIdOk returns a tuple with the SiteId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreated) HasSiteId

func (o *SiteCreated) HasSiteId() bool

HasSiteId returns a boolean if a field has been set.

func (SiteCreated) MarshalJSON

func (o SiteCreated) MarshalJSON() ([]byte, error)

func (*SiteCreated) SetSiteId

func (o *SiteCreated) SetSiteId(v int32)

SetSiteId gets a reference to the given int32 and assigns it to the SiteId field.

func (SiteCreated) ToMap

func (o SiteCreated) ToMap() (map[string]interface{}, error)

type SiteCreation

type SiteCreation struct {
	// First name of the contact for the organization unit.
	ContactFirstName string `json:"contactFirstName"`
	// Last name of the contact for the organization unit.
	ContactLastName string `json:"contactLastName"`
	// The external ID of the organization unit.
	ExternalId *string `json:"externalId,omitempty"`
	// Telephone of the contact for the organization unit.
	Phone *string `json:"phone,omitempty"`
	// Title of the contact for the organization unit.
	ContactTitle *string `json:"contactTitle,omitempty"`
	// Contact email for the organization unit.
	ContactEmail *string `json:"contactEmail,omitempty"`
	// Telephone of the contact for the organization unit.
	ContactPhone *string `json:"contactPhone,omitempty"`
	// Telephone extension of the contact for the organization unit.
	ContactPhoneExt *string `json:"contactPhoneExt,omitempty"`
	// Department of the contact for the organization unit.
	ContactDepartment *string `json:"contactDepartment,omitempty"`
	// First line of street address for the organization unit.
	Street1 *string `json:"street1,omitempty"`
	// Second line of street address for the organization unit.
	Street2 *string `json:"street2,omitempty"`
	// City where the organization unit is located.
	City *string `json:"city,omitempty"`
	// State or province where the organization unit is located.
	StateProv *string `json:"stateProv,omitempty"`
	// Country where the organization unit is located. Must be two characters country code, see http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.
	Country *string `json:"country,omitempty"`
	// Postal code of the organization unit location.
	PostalCode *string `json:"postalCode,omitempty"`
	// Name of the site.
	SiteName string `json:"siteName"`
	// License type of the site.
	LicenseType *string `json:"licenseType,omitempty"`
}

SiteCreation Data object for site.

func NewSiteCreation

func NewSiteCreation(contactFirstName string, contactLastName string, siteName string) *SiteCreation

NewSiteCreation instantiates a new SiteCreation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteCreationWithDefaults

func NewSiteCreationWithDefaults() *SiteCreation

NewSiteCreationWithDefaults instantiates a new SiteCreation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteCreation) GetCity

func (o *SiteCreation) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*SiteCreation) GetCityOk

func (o *SiteCreation) 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 (*SiteCreation) GetContactDepartment

func (o *SiteCreation) GetContactDepartment() string

GetContactDepartment returns the ContactDepartment field value if set, zero value otherwise.

func (*SiteCreation) GetContactDepartmentOk

func (o *SiteCreation) GetContactDepartmentOk() (*string, bool)

GetContactDepartmentOk returns a tuple with the ContactDepartment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetContactEmail

func (o *SiteCreation) GetContactEmail() string

GetContactEmail returns the ContactEmail field value if set, zero value otherwise.

func (*SiteCreation) GetContactEmailOk

func (o *SiteCreation) GetContactEmailOk() (*string, bool)

GetContactEmailOk returns a tuple with the ContactEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetContactFirstName

func (o *SiteCreation) GetContactFirstName() string

GetContactFirstName returns the ContactFirstName field value

func (*SiteCreation) GetContactFirstNameOk

func (o *SiteCreation) GetContactFirstNameOk() (*string, bool)

GetContactFirstNameOk returns a tuple with the ContactFirstName field value and a boolean to check if the value has been set.

func (*SiteCreation) GetContactLastName

func (o *SiteCreation) GetContactLastName() string

GetContactLastName returns the ContactLastName field value

func (*SiteCreation) GetContactLastNameOk

func (o *SiteCreation) GetContactLastNameOk() (*string, bool)

GetContactLastNameOk returns a tuple with the ContactLastName field value and a boolean to check if the value has been set.

func (*SiteCreation) GetContactPhone

func (o *SiteCreation) GetContactPhone() string

GetContactPhone returns the ContactPhone field value if set, zero value otherwise.

func (*SiteCreation) GetContactPhoneExt

func (o *SiteCreation) GetContactPhoneExt() string

GetContactPhoneExt returns the ContactPhoneExt field value if set, zero value otherwise.

func (*SiteCreation) GetContactPhoneExtOk

func (o *SiteCreation) GetContactPhoneExtOk() (*string, bool)

GetContactPhoneExtOk returns a tuple with the ContactPhoneExt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetContactPhoneOk

func (o *SiteCreation) GetContactPhoneOk() (*string, bool)

GetContactPhoneOk returns a tuple with the ContactPhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetContactTitle

func (o *SiteCreation) GetContactTitle() string

GetContactTitle returns the ContactTitle field value if set, zero value otherwise.

func (*SiteCreation) GetContactTitleOk

func (o *SiteCreation) GetContactTitleOk() (*string, bool)

GetContactTitleOk returns a tuple with the ContactTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetCountry

func (o *SiteCreation) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*SiteCreation) GetCountryOk

func (o *SiteCreation) 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 (*SiteCreation) GetExternalId

func (o *SiteCreation) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*SiteCreation) GetExternalIdOk

func (o *SiteCreation) 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 (*SiteCreation) GetLicenseType

func (o *SiteCreation) GetLicenseType() string

GetLicenseType returns the LicenseType field value if set, zero value otherwise.

func (*SiteCreation) GetLicenseTypeOk

func (o *SiteCreation) 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 (*SiteCreation) GetPhone

func (o *SiteCreation) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*SiteCreation) GetPhoneOk

func (o *SiteCreation) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetPostalCode

func (o *SiteCreation) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*SiteCreation) GetPostalCodeOk

func (o *SiteCreation) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetSiteName

func (o *SiteCreation) GetSiteName() string

GetSiteName returns the SiteName field value

func (*SiteCreation) GetSiteNameOk

func (o *SiteCreation) GetSiteNameOk() (*string, bool)

GetSiteNameOk returns a tuple with the SiteName field value and a boolean to check if the value has been set.

func (*SiteCreation) GetStateProv

func (o *SiteCreation) GetStateProv() string

GetStateProv returns the StateProv field value if set, zero value otherwise.

func (*SiteCreation) GetStateProvOk

func (o *SiteCreation) GetStateProvOk() (*string, bool)

GetStateProvOk returns a tuple with the StateProv field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetStreet1

func (o *SiteCreation) GetStreet1() string

GetStreet1 returns the Street1 field value if set, zero value otherwise.

func (*SiteCreation) GetStreet1Ok

func (o *SiteCreation) GetStreet1Ok() (*string, bool)

GetStreet1Ok returns a tuple with the Street1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) GetStreet2

func (o *SiteCreation) GetStreet2() string

GetStreet2 returns the Street2 field value if set, zero value otherwise.

func (*SiteCreation) GetStreet2Ok

func (o *SiteCreation) GetStreet2Ok() (*string, bool)

GetStreet2Ok returns a tuple with the Street2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreation) HasCity

func (o *SiteCreation) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*SiteCreation) HasContactDepartment

func (o *SiteCreation) HasContactDepartment() bool

HasContactDepartment returns a boolean if a field has been set.

func (*SiteCreation) HasContactEmail

func (o *SiteCreation) HasContactEmail() bool

HasContactEmail returns a boolean if a field has been set.

func (*SiteCreation) HasContactPhone

func (o *SiteCreation) HasContactPhone() bool

HasContactPhone returns a boolean if a field has been set.

func (*SiteCreation) HasContactPhoneExt

func (o *SiteCreation) HasContactPhoneExt() bool

HasContactPhoneExt returns a boolean if a field has been set.

func (*SiteCreation) HasContactTitle

func (o *SiteCreation) HasContactTitle() bool

HasContactTitle returns a boolean if a field has been set.

func (*SiteCreation) HasCountry

func (o *SiteCreation) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*SiteCreation) HasExternalId

func (o *SiteCreation) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*SiteCreation) HasLicenseType

func (o *SiteCreation) HasLicenseType() bool

HasLicenseType returns a boolean if a field has been set.

func (*SiteCreation) HasPhone

func (o *SiteCreation) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*SiteCreation) HasPostalCode

func (o *SiteCreation) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*SiteCreation) HasStateProv

func (o *SiteCreation) HasStateProv() bool

HasStateProv returns a boolean if a field has been set.

func (*SiteCreation) HasStreet1

func (o *SiteCreation) HasStreet1() bool

HasStreet1 returns a boolean if a field has been set.

func (*SiteCreation) HasStreet2

func (o *SiteCreation) HasStreet2() bool

HasStreet2 returns a boolean if a field has been set.

func (SiteCreation) MarshalJSON

func (o SiteCreation) MarshalJSON() ([]byte, error)

func (*SiteCreation) SetCity

func (o *SiteCreation) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*SiteCreation) SetContactDepartment

func (o *SiteCreation) SetContactDepartment(v string)

SetContactDepartment gets a reference to the given string and assigns it to the ContactDepartment field.

func (*SiteCreation) SetContactEmail

func (o *SiteCreation) SetContactEmail(v string)

SetContactEmail gets a reference to the given string and assigns it to the ContactEmail field.

func (*SiteCreation) SetContactFirstName

func (o *SiteCreation) SetContactFirstName(v string)

SetContactFirstName sets field value

func (*SiteCreation) SetContactLastName

func (o *SiteCreation) SetContactLastName(v string)

SetContactLastName sets field value

func (*SiteCreation) SetContactPhone

func (o *SiteCreation) SetContactPhone(v string)

SetContactPhone gets a reference to the given string and assigns it to the ContactPhone field.

func (*SiteCreation) SetContactPhoneExt

func (o *SiteCreation) SetContactPhoneExt(v string)

SetContactPhoneExt gets a reference to the given string and assigns it to the ContactPhoneExt field.

func (*SiteCreation) SetContactTitle

func (o *SiteCreation) SetContactTitle(v string)

SetContactTitle gets a reference to the given string and assigns it to the ContactTitle field.

func (*SiteCreation) SetCountry

func (o *SiteCreation) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*SiteCreation) SetExternalId

func (o *SiteCreation) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*SiteCreation) SetLicenseType

func (o *SiteCreation) SetLicenseType(v string)

SetLicenseType gets a reference to the given string and assigns it to the LicenseType field.

func (*SiteCreation) SetPhone

func (o *SiteCreation) SetPhone(v string)

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (*SiteCreation) SetPostalCode

func (o *SiteCreation) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*SiteCreation) SetSiteName

func (o *SiteCreation) SetSiteName(v string)

SetSiteName sets field value

func (*SiteCreation) SetStateProv

func (o *SiteCreation) SetStateProv(v string)

SetStateProv gets a reference to the given string and assigns it to the StateProv field.

func (*SiteCreation) SetStreet1

func (o *SiteCreation) SetStreet1(v string)

SetStreet1 gets a reference to the given string and assigns it to the Street1 field.

func (*SiteCreation) SetStreet2

func (o *SiteCreation) SetStreet2(v string)

SetStreet2 gets a reference to the given string and assigns it to the Street2 field.

func (SiteCreation) ToMap

func (o SiteCreation) ToMap() (map[string]interface{}, error)

func (*SiteCreation) UnmarshalJSON

func (o *SiteCreation) UnmarshalJSON(data []byte) (err error)

type StandardPsaCredentialsValidateGetResponse

type StandardPsaCredentialsValidateGetResponse struct {
	Data *Data `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

StandardPsaCredentialsValidateGetResponse Represents the response for validating PSA credentials. The validation result is encapsulated under the \"_extra\" field.

func NewStandardPsaCredentialsValidateGetResponse

func NewStandardPsaCredentialsValidateGetResponse() *StandardPsaCredentialsValidateGetResponse

NewStandardPsaCredentialsValidateGetResponse instantiates a new StandardPsaCredentialsValidateGetResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStandardPsaCredentialsValidateGetResponseWithDefaults

func NewStandardPsaCredentialsValidateGetResponseWithDefaults() *StandardPsaCredentialsValidateGetResponse

NewStandardPsaCredentialsValidateGetResponseWithDefaults instantiates a new StandardPsaCredentialsValidateGetResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StandardPsaCredentialsValidateGetResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*StandardPsaCredentialsValidateGetResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

GetLinks returns the Links field value if set, zero value otherwise.

func (*StandardPsaCredentialsValidateGetResponse) GetLinksOk

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 (*StandardPsaCredentialsValidateGetResponse) HasData

HasData returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (StandardPsaCredentialsValidateGetResponse) MarshalJSON

func (*StandardPsaCredentialsValidateGetResponse) SetData

SetData gets a reference to the given Data and assigns it to the Data field.

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (StandardPsaCredentialsValidateGetResponse) ToMap

func (o StandardPsaCredentialsValidateGetResponse) ToMap() (map[string]interface{}, error)

type TaskAggregatedStatus

type TaskAggregatedStatus struct {
	// Name of the task.
	TaskName *string `json:"taskName,omitempty"`
	// Map of status counts where keys are status names and values are status counts.
	StatusCounts *map[string]int32 `json:"statusCounts,omitempty"`
}

TaskAggregatedStatus Aggregated status response.

func NewTaskAggregatedStatus

func NewTaskAggregatedStatus() *TaskAggregatedStatus

NewTaskAggregatedStatus instantiates a new TaskAggregatedStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskAggregatedStatusWithDefaults

func NewTaskAggregatedStatusWithDefaults() *TaskAggregatedStatus

NewTaskAggregatedStatusWithDefaults instantiates a new TaskAggregatedStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskAggregatedStatus) GetStatusCounts

func (o *TaskAggregatedStatus) GetStatusCounts() map[string]int32

GetStatusCounts returns the StatusCounts field value if set, zero value otherwise.

func (*TaskAggregatedStatus) GetStatusCountsOk

func (o *TaskAggregatedStatus) GetStatusCountsOk() (*map[string]int32, bool)

GetStatusCountsOk returns a tuple with the StatusCounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskAggregatedStatus) GetTaskName

func (o *TaskAggregatedStatus) GetTaskName() string

GetTaskName returns the TaskName field value if set, zero value otherwise.

func (*TaskAggregatedStatus) GetTaskNameOk

func (o *TaskAggregatedStatus) GetTaskNameOk() (*string, bool)

GetTaskNameOk returns a tuple with the TaskName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskAggregatedStatus) HasStatusCounts

func (o *TaskAggregatedStatus) HasStatusCounts() bool

HasStatusCounts returns a boolean if a field has been set.

func (*TaskAggregatedStatus) HasTaskName

func (o *TaskAggregatedStatus) HasTaskName() bool

HasTaskName returns a boolean if a field has been set.

func (TaskAggregatedStatus) MarshalJSON

func (o TaskAggregatedStatus) MarshalJSON() ([]byte, error)

func (*TaskAggregatedStatus) SetStatusCounts

func (o *TaskAggregatedStatus) SetStatusCounts(v map[string]int32)

SetStatusCounts gets a reference to the given map[string]int32 and assigns it to the StatusCounts field.

func (*TaskAggregatedStatus) SetTaskName

func (o *TaskAggregatedStatus) SetTaskName(v string)

SetTaskName gets a reference to the given string and assigns it to the TaskName field.

func (TaskAggregatedStatus) ToMap

func (o TaskAggregatedStatus) ToMap() (map[string]interface{}, error)

type TaskCreate

type TaskCreate struct {
	TaskId *int32 `json:"taskId,omitempty"`
}

TaskCreate Information about a newly created task

func NewTaskCreate

func NewTaskCreate() *TaskCreate

NewTaskCreate instantiates a new TaskCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskCreateWithDefaults

func NewTaskCreateWithDefaults() *TaskCreate

NewTaskCreateWithDefaults instantiates a new TaskCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskCreate) GetTaskId

func (o *TaskCreate) GetTaskId() int32

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*TaskCreate) GetTaskIdOk

func (o *TaskCreate) GetTaskIdOk() (*int32, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreate) HasTaskId

func (o *TaskCreate) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (TaskCreate) MarshalJSON

func (o TaskCreate) MarshalJSON() ([]byte, error)

func (*TaskCreate) SetTaskId

func (o *TaskCreate) SetTaskId(v int32)

SetTaskId gets a reference to the given int32 and assigns it to the TaskId field.

func (TaskCreate) ToMap

func (o TaskCreate) ToMap() (map[string]interface{}, error)

type TaskInfo

type TaskInfo struct {
	// Id of the task.
	TaskId *int32 `json:"taskId,omitempty"`
	// The unique identifier of the parent task (if applicable), or null if there is no parent task.
	ParentId *int32 `json:"parentId,omitempty"`
	// The name of the task (same with taskName).
	Name *string `json:"name,omitempty"`
	// The name of the task (same with name).
	TaskName *string `json:"taskName,omitempty"`
	// The unique identifier for the item associated with the task.
	ItemId *int32 `json:"itemId,omitempty"`
	// The type of the task.
	Type *string `json:"type,omitempty"`
	// The unique identifier of the organization associated with the task.
	OrgUnitId *int32 `json:"orgUnitId,omitempty"`
	// The unique identifier of the SO associated with the task.
	SoId *int32 `json:"soId,omitempty"`
	// The unique identifier of the customer associated with the task.
	CustomerId *int32 `json:"customerId,omitempty"`
	// The unique identifier of the site associated with the task.
	SiteId *int32 `json:"siteId,omitempty"`
	// The unique identifier of the appliance related to the task.
	ApplianceId *int32 `json:"applianceId,omitempty"`
	// Indicates whether the task is reactive (true) or not (false).
	IsReactive *bool `json:"isReactive,omitempty"`
	// Indicates whether the task is enabled (true) or disabled (false).
	IsEnabled *bool `json:"isEnabled,omitempty"`
	// List of device IDs that this task is run on.
	DeviceIds []string `json:"deviceIds,omitempty"`
}

TaskInfo Task information response.

func NewTaskInfo

func NewTaskInfo() *TaskInfo

NewTaskInfo instantiates a new TaskInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskInfoWithDefaults

func NewTaskInfoWithDefaults() *TaskInfo

NewTaskInfoWithDefaults instantiates a new TaskInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskInfo) GetApplianceId

func (o *TaskInfo) GetApplianceId() int32

GetApplianceId returns the ApplianceId field value if set, zero value otherwise.

func (*TaskInfo) GetApplianceIdOk

func (o *TaskInfo) GetApplianceIdOk() (*int32, bool)

GetApplianceIdOk returns a tuple with the ApplianceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetCustomerId

func (o *TaskInfo) GetCustomerId() int32

GetCustomerId returns the CustomerId field value if set, zero value otherwise.

func (*TaskInfo) GetCustomerIdOk

func (o *TaskInfo) GetCustomerIdOk() (*int32, bool)

GetCustomerIdOk returns a tuple with the CustomerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetDeviceIds

func (o *TaskInfo) GetDeviceIds() []string

GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.

func (*TaskInfo) GetDeviceIdsOk

func (o *TaskInfo) 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 (*TaskInfo) GetIsEnabled

func (o *TaskInfo) GetIsEnabled() bool

GetIsEnabled returns the IsEnabled field value if set, zero value otherwise.

func (*TaskInfo) GetIsEnabledOk

func (o *TaskInfo) GetIsEnabledOk() (*bool, bool)

GetIsEnabledOk returns a tuple with the IsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetIsReactive

func (o *TaskInfo) GetIsReactive() bool

GetIsReactive returns the IsReactive field value if set, zero value otherwise.

func (*TaskInfo) GetIsReactiveOk

func (o *TaskInfo) GetIsReactiveOk() (*bool, bool)

GetIsReactiveOk returns a tuple with the IsReactive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetItemId

func (o *TaskInfo) GetItemId() int32

GetItemId returns the ItemId field value if set, zero value otherwise.

func (*TaskInfo) GetItemIdOk

func (o *TaskInfo) GetItemIdOk() (*int32, bool)

GetItemIdOk returns a tuple with the ItemId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetName

func (o *TaskInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TaskInfo) GetNameOk

func (o *TaskInfo) 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 (*TaskInfo) GetOrgUnitId

func (o *TaskInfo) GetOrgUnitId() int32

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*TaskInfo) GetOrgUnitIdOk

func (o *TaskInfo) GetOrgUnitIdOk() (*int32, bool)

GetOrgUnitIdOk returns a tuple with the OrgUnitId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetParentId

func (o *TaskInfo) GetParentId() int32

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*TaskInfo) GetParentIdOk

func (o *TaskInfo) GetParentIdOk() (*int32, 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 (*TaskInfo) GetSiteId

func (o *TaskInfo) GetSiteId() int32

GetSiteId returns the SiteId field value if set, zero value otherwise.

func (*TaskInfo) GetSiteIdOk

func (o *TaskInfo) GetSiteIdOk() (*int32, bool)

GetSiteIdOk returns a tuple with the SiteId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetSoId

func (o *TaskInfo) GetSoId() int32

GetSoId returns the SoId field value if set, zero value otherwise.

func (*TaskInfo) GetSoIdOk

func (o *TaskInfo) GetSoIdOk() (*int32, bool)

GetSoIdOk returns a tuple with the SoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetTaskId

func (o *TaskInfo) GetTaskId() int32

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*TaskInfo) GetTaskIdOk

func (o *TaskInfo) GetTaskIdOk() (*int32, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetTaskName

func (o *TaskInfo) GetTaskName() string

GetTaskName returns the TaskName field value if set, zero value otherwise.

func (*TaskInfo) GetTaskNameOk

func (o *TaskInfo) GetTaskNameOk() (*string, bool)

GetTaskNameOk returns a tuple with the TaskName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInfo) GetType

func (o *TaskInfo) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TaskInfo) GetTypeOk

func (o *TaskInfo) 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 (*TaskInfo) HasApplianceId

func (o *TaskInfo) HasApplianceId() bool

HasApplianceId returns a boolean if a field has been set.

func (*TaskInfo) HasCustomerId

func (o *TaskInfo) HasCustomerId() bool

HasCustomerId returns a boolean if a field has been set.

func (*TaskInfo) HasDeviceIds

func (o *TaskInfo) HasDeviceIds() bool

HasDeviceIds returns a boolean if a field has been set.

func (*TaskInfo) HasIsEnabled

func (o *TaskInfo) HasIsEnabled() bool

HasIsEnabled returns a boolean if a field has been set.

func (*TaskInfo) HasIsReactive

func (o *TaskInfo) HasIsReactive() bool

HasIsReactive returns a boolean if a field has been set.

func (*TaskInfo) HasItemId

func (o *TaskInfo) HasItemId() bool

HasItemId returns a boolean if a field has been set.

func (*TaskInfo) HasName

func (o *TaskInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*TaskInfo) HasOrgUnitId

func (o *TaskInfo) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*TaskInfo) HasParentId

func (o *TaskInfo) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*TaskInfo) HasSiteId

func (o *TaskInfo) HasSiteId() bool

HasSiteId returns a boolean if a field has been set.

func (*TaskInfo) HasSoId

func (o *TaskInfo) HasSoId() bool

HasSoId returns a boolean if a field has been set.

func (*TaskInfo) HasTaskId

func (o *TaskInfo) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*TaskInfo) HasTaskName

func (o *TaskInfo) HasTaskName() bool

HasTaskName returns a boolean if a field has been set.

func (*TaskInfo) HasType

func (o *TaskInfo) HasType() bool

HasType returns a boolean if a field has been set.

func (TaskInfo) MarshalJSON

func (o TaskInfo) MarshalJSON() ([]byte, error)

func (*TaskInfo) SetApplianceId

func (o *TaskInfo) SetApplianceId(v int32)

SetApplianceId gets a reference to the given int32 and assigns it to the ApplianceId field.

func (*TaskInfo) SetCustomerId

func (o *TaskInfo) SetCustomerId(v int32)

SetCustomerId gets a reference to the given int32 and assigns it to the CustomerId field.

func (*TaskInfo) SetDeviceIds

func (o *TaskInfo) SetDeviceIds(v []string)

SetDeviceIds gets a reference to the given []string and assigns it to the DeviceIds field.

func (*TaskInfo) SetIsEnabled

func (o *TaskInfo) SetIsEnabled(v bool)

SetIsEnabled gets a reference to the given bool and assigns it to the IsEnabled field.

func (*TaskInfo) SetIsReactive

func (o *TaskInfo) SetIsReactive(v bool)

SetIsReactive gets a reference to the given bool and assigns it to the IsReactive field.

func (*TaskInfo) SetItemId

func (o *TaskInfo) SetItemId(v int32)

SetItemId gets a reference to the given int32 and assigns it to the ItemId field.

func (*TaskInfo) SetName

func (o *TaskInfo) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TaskInfo) SetOrgUnitId

func (o *TaskInfo) SetOrgUnitId(v int32)

SetOrgUnitId gets a reference to the given int32 and assigns it to the OrgUnitId field.

func (*TaskInfo) SetParentId

func (o *TaskInfo) SetParentId(v int32)

SetParentId gets a reference to the given int32 and assigns it to the ParentId field.

func (*TaskInfo) SetSiteId

func (o *TaskInfo) SetSiteId(v int32)

SetSiteId gets a reference to the given int32 and assigns it to the SiteId field.

func (*TaskInfo) SetSoId

func (o *TaskInfo) SetSoId(v int32)

SetSoId gets a reference to the given int32 and assigns it to the SoId field.

func (*TaskInfo) SetTaskId

func (o *TaskInfo) SetTaskId(v int32)

SetTaskId gets a reference to the given int32 and assigns it to the TaskId field.

func (*TaskInfo) SetTaskName

func (o *TaskInfo) SetTaskName(v string)

SetTaskName gets a reference to the given string and assigns it to the TaskName field.

func (*TaskInfo) SetType

func (o *TaskInfo) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TaskInfo) ToMap

func (o TaskInfo) ToMap() (map[string]interface{}, error)

type TaskStatusResponse

type TaskStatusResponse struct {
	TaskId   *int32  `json:"taskId,omitempty"`
	TaskName *string `json:"taskName,omitempty"`
	Status   *string `json:"status,omitempty"`
}

TaskStatusResponse struct for TaskStatusResponse

func NewTaskStatusResponse

func NewTaskStatusResponse() *TaskStatusResponse

NewTaskStatusResponse instantiates a new TaskStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskStatusResponseWithDefaults

func NewTaskStatusResponseWithDefaults() *TaskStatusResponse

NewTaskStatusResponseWithDefaults instantiates a new TaskStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskStatusResponse) GetStatus

func (o *TaskStatusResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*TaskStatusResponse) GetStatusOk

func (o *TaskStatusResponse) 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 (*TaskStatusResponse) GetTaskId

func (o *TaskStatusResponse) GetTaskId() int32

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*TaskStatusResponse) GetTaskIdOk

func (o *TaskStatusResponse) GetTaskIdOk() (*int32, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskStatusResponse) GetTaskName

func (o *TaskStatusResponse) GetTaskName() string

GetTaskName returns the TaskName field value if set, zero value otherwise.

func (*TaskStatusResponse) GetTaskNameOk

func (o *TaskStatusResponse) GetTaskNameOk() (*string, bool)

GetTaskNameOk returns a tuple with the TaskName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskStatusResponse) HasStatus

func (o *TaskStatusResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TaskStatusResponse) HasTaskId

func (o *TaskStatusResponse) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*TaskStatusResponse) HasTaskName

func (o *TaskStatusResponse) HasTaskName() bool

HasTaskName returns a boolean if a field has been set.

func (TaskStatusResponse) MarshalJSON

func (o TaskStatusResponse) MarshalJSON() ([]byte, error)

func (*TaskStatusResponse) SetStatus

func (o *TaskStatusResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*TaskStatusResponse) SetTaskId

func (o *TaskStatusResponse) SetTaskId(v int32)

SetTaskId gets a reference to the given int32 and assigns it to the TaskId field.

func (*TaskStatusResponse) SetTaskName

func (o *TaskStatusResponse) SetTaskName(v string)

SetTaskName gets a reference to the given string and assigns it to the TaskName field.

func (TaskStatusResponse) ToMap

func (o TaskStatusResponse) ToMap() (map[string]interface{}, error)

type User

type User struct {
	// The first name of the user.
	FirstName *string `json:"firstName,omitempty"`
	// The last name of the user.
	LastName *string `json:"lastName,omitempty"`
	// Indicates if the user is API only.
	ApiOnlyUser *bool `json:"apiOnlyUser,omitempty"`
	// A description of the user.
	Description *string `json:"description,omitempty"`
	// Indicates if the user is enabled.
	IsEnabled *bool `json:"isEnabled,omitempty"`
	// Indicates if the user is managed through LDAP.
	IsLdap *bool `json:"isLdap,omitempty"`
	// Indicates if the user's account is locked.
	IsLocked *bool `json:"isLocked,omitempty"`
	// Indicates if the user is currently logged in.
	LoggedInUser *bool `json:"loggedInUser,omitempty"`
	// Indicates if the user has read-only access.
	ReadOnly *bool `json:"readOnly,omitempty"`
	// Indicates if the user is a support user.
	SupportUser *bool `json:"supportUser,omitempty"`
	// The unique identifier of the user.
	UserId *int32 `json:"userId,omitempty"`
	// The email address or username of the user.
	UserName *string `json:"userName,omitempty"`
	// A list of access group ids associated with the user.
	AccessGroupIds []int32 `json:"accessGroupIds,omitempty"`
	// The current Single Sign-On provider for the user, if any.
	CurrentSsoProvider *string `json:"currentSsoProvider,omitempty"`
	// The hierarchy of customer units associated with the user.
	CustomerTree []string `json:"customerTree,omitempty"`
	// The full name of the user.
	FullName *string `json:"fullName,omitempty"`
	// A list of role ids assigned to the user.
	RoleIds []int32 `json:"roleIds,omitempty"`
	// Indicates if two-factor authentication is enabled for the user.
	TwoFactorEnabled *bool `json:"twoFactorEnabled,omitempty"`
}

User Represents the response for a user inside user list endpoint. It provides details about the user.

func NewUser

func NewUser() *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) GetAccessGroupIds

func (o *User) GetAccessGroupIds() []int32

GetAccessGroupIds returns the AccessGroupIds field value if set, zero value otherwise.

func (*User) GetAccessGroupIdsOk

func (o *User) GetAccessGroupIdsOk() ([]int32, bool)

GetAccessGroupIdsOk returns a tuple with the AccessGroupIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetApiOnlyUser

func (o *User) GetApiOnlyUser() bool

GetApiOnlyUser returns the ApiOnlyUser field value if set, zero value otherwise.

func (*User) GetApiOnlyUserOk

func (o *User) GetApiOnlyUserOk() (*bool, bool)

GetApiOnlyUserOk returns a tuple with the ApiOnlyUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetCurrentSsoProvider

func (o *User) GetCurrentSsoProvider() string

GetCurrentSsoProvider returns the CurrentSsoProvider field value if set, zero value otherwise.

func (*User) GetCurrentSsoProviderOk

func (o *User) GetCurrentSsoProviderOk() (*string, bool)

GetCurrentSsoProviderOk returns a tuple with the CurrentSsoProvider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetCustomerTree

func (o *User) GetCustomerTree() []string

GetCustomerTree returns the CustomerTree field value if set, zero value otherwise.

func (*User) GetCustomerTreeOk

func (o *User) GetCustomerTreeOk() ([]string, bool)

GetCustomerTreeOk returns a tuple with the CustomerTree field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetDescription

func (o *User) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*User) GetDescriptionOk

func (o *User) 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 (*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) GetFullName

func (o *User) GetFullName() string

GetFullName returns the FullName field value if set, zero value otherwise.

func (*User) GetFullNameOk

func (o *User) GetFullNameOk() (*string, bool)

GetFullNameOk returns a tuple with the FullName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetIsEnabled

func (o *User) GetIsEnabled() bool

GetIsEnabled returns the IsEnabled field value if set, zero value otherwise.

func (*User) GetIsEnabledOk

func (o *User) GetIsEnabledOk() (*bool, bool)

GetIsEnabledOk returns a tuple with the IsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetIsLdap

func (o *User) GetIsLdap() bool

GetIsLdap returns the IsLdap field value if set, zero value otherwise.

func (*User) GetIsLdapOk

func (o *User) GetIsLdapOk() (*bool, bool)

GetIsLdapOk returns a tuple with the IsLdap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetIsLocked

func (o *User) GetIsLocked() bool

GetIsLocked returns the IsLocked field value if set, zero value otherwise.

func (*User) GetIsLockedOk

func (o *User) GetIsLockedOk() (*bool, bool)

GetIsLockedOk returns a tuple with the IsLocked 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 if set, zero value otherwise.

func (*User) GetLastNameOk

func (o *User) 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 (*User) GetLoggedInUser

func (o *User) GetLoggedInUser() bool

GetLoggedInUser returns the LoggedInUser field value if set, zero value otherwise.

func (*User) GetLoggedInUserOk

func (o *User) GetLoggedInUserOk() (*bool, bool)

GetLoggedInUserOk returns a tuple with the LoggedInUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetReadOnly

func (o *User) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value if set, zero value otherwise.

func (*User) GetReadOnlyOk

func (o *User) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetRoleIds

func (o *User) GetRoleIds() []int32

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*User) GetRoleIdsOk

func (o *User) GetRoleIdsOk() ([]int32, 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) GetSupportUser

func (o *User) GetSupportUser() bool

GetSupportUser returns the SupportUser field value if set, zero value otherwise.

func (*User) GetSupportUserOk

func (o *User) GetSupportUserOk() (*bool, bool)

GetSupportUserOk returns a tuple with the SupportUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetTwoFactorEnabled

func (o *User) GetTwoFactorEnabled() bool

GetTwoFactorEnabled returns the TwoFactorEnabled field value if set, zero value otherwise.

func (*User) GetTwoFactorEnabledOk

func (o *User) GetTwoFactorEnabledOk() (*bool, bool)

GetTwoFactorEnabledOk returns a tuple with the TwoFactorEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUserId

func (o *User) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*User) GetUserIdOk

func (o *User) GetUserIdOk() (*int32, 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 (*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) HasAccessGroupIds

func (o *User) HasAccessGroupIds() bool

HasAccessGroupIds returns a boolean if a field has been set.

func (*User) HasApiOnlyUser

func (o *User) HasApiOnlyUser() bool

HasApiOnlyUser returns a boolean if a field has been set.

func (*User) HasCurrentSsoProvider

func (o *User) HasCurrentSsoProvider() bool

HasCurrentSsoProvider returns a boolean if a field has been set.

func (*User) HasCustomerTree

func (o *User) HasCustomerTree() bool

HasCustomerTree returns a boolean if a field has been set.

func (*User) HasDescription

func (o *User) HasDescription() bool

HasDescription 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) HasFullName

func (o *User) HasFullName() bool

HasFullName returns a boolean if a field has been set.

func (*User) HasIsEnabled

func (o *User) HasIsEnabled() bool

HasIsEnabled returns a boolean if a field has been set.

func (*User) HasIsLdap

func (o *User) HasIsLdap() bool

HasIsLdap returns a boolean if a field has been set.

func (*User) HasIsLocked

func (o *User) HasIsLocked() bool

HasIsLocked returns a boolean if a field has been set.

func (*User) HasLastName

func (o *User) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*User) HasLoggedInUser

func (o *User) HasLoggedInUser() bool

HasLoggedInUser returns a boolean if a field has been set.

func (*User) HasReadOnly

func (o *User) HasReadOnly() bool

HasReadOnly 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) HasSupportUser

func (o *User) HasSupportUser() bool

HasSupportUser returns a boolean if a field has been set.

func (*User) HasTwoFactorEnabled

func (o *User) HasTwoFactorEnabled() bool

HasTwoFactorEnabled returns a boolean if a field has been set.

func (*User) HasUserId

func (o *User) HasUserId() bool

HasUserId 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) SetAccessGroupIds

func (o *User) SetAccessGroupIds(v []int32)

SetAccessGroupIds gets a reference to the given []int32 and assigns it to the AccessGroupIds field.

func (*User) SetApiOnlyUser

func (o *User) SetApiOnlyUser(v bool)

SetApiOnlyUser gets a reference to the given bool and assigns it to the ApiOnlyUser field.

func (*User) SetCurrentSsoProvider

func (o *User) SetCurrentSsoProvider(v string)

SetCurrentSsoProvider gets a reference to the given string and assigns it to the CurrentSsoProvider field.

func (*User) SetCustomerTree

func (o *User) SetCustomerTree(v []string)

SetCustomerTree gets a reference to the given []string and assigns it to the CustomerTree field.

func (*User) SetDescription

func (o *User) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

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) SetFullName

func (o *User) SetFullName(v string)

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*User) SetIsEnabled

func (o *User) SetIsEnabled(v bool)

SetIsEnabled gets a reference to the given bool and assigns it to the IsEnabled field.

func (*User) SetIsLdap

func (o *User) SetIsLdap(v bool)

SetIsLdap gets a reference to the given bool and assigns it to the IsLdap field.

func (*User) SetIsLocked

func (o *User) SetIsLocked(v bool)

SetIsLocked gets a reference to the given bool and assigns it to the IsLocked field.

func (*User) SetLastName

func (o *User) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*User) SetLoggedInUser

func (o *User) SetLoggedInUser(v bool)

SetLoggedInUser gets a reference to the given bool and assigns it to the LoggedInUser field.

func (*User) SetReadOnly

func (o *User) SetReadOnly(v bool)

SetReadOnly gets a reference to the given bool and assigns it to the ReadOnly field.

func (*User) SetRoleIds

func (o *User) SetRoleIds(v []int32)

SetRoleIds gets a reference to the given []int32 and assigns it to the RoleIds field.

func (*User) SetSupportUser

func (o *User) SetSupportUser(v bool)

SetSupportUser gets a reference to the given bool and assigns it to the SupportUser field.

func (*User) SetTwoFactorEnabled

func (o *User) SetTwoFactorEnabled(v bool)

SetTwoFactorEnabled gets a reference to the given bool and assigns it to the TwoFactorEnabled field.

func (*User) SetUserId

func (o *User) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId 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) ToMap

func (o User) ToMap() (map[string]interface{}, error)

type UserRole

type UserRole struct {
	// The user role id.
	RoleId *int32 `json:"roleId,omitempty"`
	// The user role name.
	RoleName *string `json:"roleName,omitempty"`
	// The description of a user role.
	RoleDescription *string `json:"roleDescription,omitempty"`
	// The extra information.
	Extra map[string]map[string]interface{} `json:"_extra,omitempty"`
}

UserRole Represents the response for a user role. It provides details about the role id, role name and description, as well as extra information.

func NewUserRole

func NewUserRole() *UserRole

NewUserRole instantiates a new UserRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserRoleWithDefaults

func NewUserRoleWithDefaults() *UserRole

NewUserRoleWithDefaults instantiates a new UserRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserRole) GetExtra

func (o *UserRole) GetExtra() map[string]map[string]interface{}

GetExtra returns the Extra field value if set, zero value otherwise.

func (*UserRole) GetExtraOk

func (o *UserRole) GetExtraOk() (map[string]map[string]interface{}, bool)

GetExtraOk returns a tuple with the Extra field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRole) GetRoleDescription

func (o *UserRole) GetRoleDescription() string

GetRoleDescription returns the RoleDescription field value if set, zero value otherwise.

func (*UserRole) GetRoleDescriptionOk

func (o *UserRole) GetRoleDescriptionOk() (*string, bool)

GetRoleDescriptionOk returns a tuple with the RoleDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRole) GetRoleId

func (o *UserRole) GetRoleId() int32

GetRoleId returns the RoleId field value if set, zero value otherwise.

func (*UserRole) GetRoleIdOk

func (o *UserRole) GetRoleIdOk() (*int32, bool)

GetRoleIdOk returns a tuple with the RoleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRole) GetRoleName

func (o *UserRole) GetRoleName() string

GetRoleName returns the RoleName field value if set, zero value otherwise.

func (*UserRole) GetRoleNameOk

func (o *UserRole) 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 (*UserRole) HasExtra

func (o *UserRole) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*UserRole) HasRoleDescription

func (o *UserRole) HasRoleDescription() bool

HasRoleDescription returns a boolean if a field has been set.

func (*UserRole) HasRoleId

func (o *UserRole) HasRoleId() bool

HasRoleId returns a boolean if a field has been set.

func (*UserRole) HasRoleName

func (o *UserRole) HasRoleName() bool

HasRoleName returns a boolean if a field has been set.

func (UserRole) MarshalJSON

func (o UserRole) MarshalJSON() ([]byte, error)

func (*UserRole) SetExtra

func (o *UserRole) SetExtra(v map[string]map[string]interface{})

SetExtra gets a reference to the given map[string]map[string]interface{} and assigns it to the Extra field.

func (*UserRole) SetRoleDescription

func (o *UserRole) SetRoleDescription(v string)

SetRoleDescription gets a reference to the given string and assigns it to the RoleDescription field.

func (*UserRole) SetRoleId

func (o *UserRole) SetRoleId(v int32)

SetRoleId gets a reference to the given int32 and assigns it to the RoleId field.

func (*UserRole) SetRoleName

func (o *UserRole) SetRoleName(v string)

SetRoleName gets a reference to the given string and assigns it to the RoleName field.

func (UserRole) ToMap

func (o UserRole) ToMap() (map[string]interface{}, error)

type UserRoleDetails

type UserRoleDetails struct {
	// The user role id.
	RoleId *int32 `json:"roleId,omitempty"`
	// The organization unit id where the role is defined.
	OrgUnitId *int32 `json:"orgUnitId,omitempty"`
	// The user role name.
	RoleName *string `json:"roleName,omitempty"`
	// The description of a user role.
	RoleDescription *string `json:"roleDescription,omitempty"`
	// The user ids assigned to role.
	UserIds []int32 `json:"userIds,omitempty"`
	// Extra information.
	Extra map[string]map[string]interface{} `json:"_extra,omitempty"`
}

UserRoleDetails Represents the response for a user role. It provides details about the role id, role name and description, as well as extra information.

func NewUserRoleDetails

func NewUserRoleDetails() *UserRoleDetails

NewUserRoleDetails instantiates a new UserRoleDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserRoleDetailsWithDefaults

func NewUserRoleDetailsWithDefaults() *UserRoleDetails

NewUserRoleDetailsWithDefaults instantiates a new UserRoleDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserRoleDetails) GetExtra

func (o *UserRoleDetails) GetExtra() map[string]map[string]interface{}

GetExtra returns the Extra field value if set, zero value otherwise.

func (*UserRoleDetails) GetExtraOk

func (o *UserRoleDetails) GetExtraOk() (map[string]map[string]interface{}, bool)

GetExtraOk returns a tuple with the Extra field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRoleDetails) GetOrgUnitId

func (o *UserRoleDetails) GetOrgUnitId() int32

GetOrgUnitId returns the OrgUnitId field value if set, zero value otherwise.

func (*UserRoleDetails) GetOrgUnitIdOk

func (o *UserRoleDetails) GetOrgUnitIdOk() (*int32, bool)

GetOrgUnitIdOk returns a tuple with the OrgUnitId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRoleDetails) GetRoleDescription

func (o *UserRoleDetails) GetRoleDescription() string

GetRoleDescription returns the RoleDescription field value if set, zero value otherwise.

func (*UserRoleDetails) GetRoleDescriptionOk

func (o *UserRoleDetails) GetRoleDescriptionOk() (*string, bool)

GetRoleDescriptionOk returns a tuple with the RoleDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRoleDetails) GetRoleId

func (o *UserRoleDetails) GetRoleId() int32

GetRoleId returns the RoleId field value if set, zero value otherwise.

func (*UserRoleDetails) GetRoleIdOk

func (o *UserRoleDetails) GetRoleIdOk() (*int32, bool)

GetRoleIdOk returns a tuple with the RoleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRoleDetails) GetRoleName

func (o *UserRoleDetails) GetRoleName() string

GetRoleName returns the RoleName field value if set, zero value otherwise.

func (*UserRoleDetails) GetRoleNameOk

func (o *UserRoleDetails) 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 (*UserRoleDetails) GetUserIds

func (o *UserRoleDetails) GetUserIds() []int32

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*UserRoleDetails) GetUserIdsOk

func (o *UserRoleDetails) GetUserIdsOk() ([]int32, bool)

GetUserIdsOk returns a tuple with the UserIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRoleDetails) HasExtra

func (o *UserRoleDetails) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*UserRoleDetails) HasOrgUnitId

func (o *UserRoleDetails) HasOrgUnitId() bool

HasOrgUnitId returns a boolean if a field has been set.

func (*UserRoleDetails) HasRoleDescription

func (o *UserRoleDetails) HasRoleDescription() bool

HasRoleDescription returns a boolean if a field has been set.

func (*UserRoleDetails) HasRoleId

func (o *UserRoleDetails) HasRoleId() bool

HasRoleId returns a boolean if a field has been set.

func (*UserRoleDetails) HasRoleName

func (o *UserRoleDetails) HasRoleName() bool

HasRoleName returns a boolean if a field has been set.

func (*UserRoleDetails) HasUserIds

func (o *UserRoleDetails) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (UserRoleDetails) MarshalJSON

func (o UserRoleDetails) MarshalJSON() ([]byte, error)

func (*UserRoleDetails) SetExtra

func (o *UserRoleDetails) SetExtra(v map[string]map[string]interface{})

SetExtra gets a reference to the given map[string]map[string]interface{} and assigns it to the Extra field.

func (*UserRoleDetails) SetOrgUnitId

func (o *UserRoleDetails) SetOrgUnitId(v int32)

SetOrgUnitId gets a reference to the given int32 and assigns it to the OrgUnitId field.

func (*UserRoleDetails) SetRoleDescription

func (o *UserRoleDetails) SetRoleDescription(v string)

SetRoleDescription gets a reference to the given string and assigns it to the RoleDescription field.

func (*UserRoleDetails) SetRoleId

func (o *UserRoleDetails) SetRoleId(v int32)

SetRoleId gets a reference to the given int32 and assigns it to the RoleId field.

func (*UserRoleDetails) SetRoleName

func (o *UserRoleDetails) SetRoleName(v string)

SetRoleName gets a reference to the given string and assigns it to the RoleName field.

func (*UserRoleDetails) SetUserIds

func (o *UserRoleDetails) SetUserIds(v []int32)

SetUserIds gets a reference to the given []int32 and assigns it to the UserIds field.

func (UserRoleDetails) ToMap

func (o UserRoleDetails) ToMap() (map[string]interface{}, error)

type UserRoleDetailsResponse

type UserRoleDetailsResponse struct {
	Data *UserRoleDetails `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

UserRoleDetailsResponse struct for UserRoleDetailsResponse

func NewUserRoleDetailsResponse

func NewUserRoleDetailsResponse() *UserRoleDetailsResponse

NewUserRoleDetailsResponse instantiates a new UserRoleDetailsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserRoleDetailsResponseWithDefaults

func NewUserRoleDetailsResponseWithDefaults() *UserRoleDetailsResponse

NewUserRoleDetailsResponseWithDefaults instantiates a new UserRoleDetailsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserRoleDetailsResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*UserRoleDetailsResponse) GetDataOk

func (o *UserRoleDetailsResponse) GetDataOk() (*UserRoleDetails, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *UserRoleDetailsResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*UserRoleDetailsResponse) GetLinksOk

func (o *UserRoleDetailsResponse) GetLinksOk() (*map[string]string, 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 (*UserRoleDetailsResponse) HasData

func (o *UserRoleDetailsResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *UserRoleDetailsResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (UserRoleDetailsResponse) MarshalJSON

func (o UserRoleDetailsResponse) MarshalJSON() ([]byte, error)

func (*UserRoleDetailsResponse) SetData

SetData gets a reference to the given UserRoleDetails and assigns it to the Data field.

func (o *UserRoleDetailsResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (UserRoleDetailsResponse) ToMap

func (o UserRoleDetailsResponse) ToMap() (map[string]interface{}, error)

type UserRolesAPIService

type UserRolesAPIService service

UserRolesAPIService UserRolesAPI service

func (*UserRolesAPIService) AddUserRole

func (a *UserRolesAPIService) AddUserRole(ctx context.Context, orgUnitId string) ApiAddUserRoleRequest

AddUserRole PREVIEW: Add a new user role for a given organization unit.

Add a new user role for a organization unit and return the role id.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which new role needs to be added.
@return ApiAddUserRoleRequest

func (*UserRolesAPIService) AddUserRoleExecute

Execute executes the request

@return CreateUserRoleResponse

func (*UserRolesAPIService) GetUserRole

func (a *UserRolesAPIService) GetUserRole(ctx context.Context, orgUnitId string, userRoleId string) ApiGetUserRoleRequest

GetUserRole PREVIEW: Retrieve a user role for a given organization unit and user role id.

Returns a user role for a given organization unit and user role id.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which role is retrieved. The organization unit id is used to determine if role is modifiable at this level or not.
@param userRoleId ID of the user role id for which user roles information needs to be fetched.
@return ApiGetUserRoleRequest

func (*UserRolesAPIService) GetUserRoleExecute

Execute executes the request

@return UserRoleDetailsResponse

func (*UserRolesAPIService) ListUserRoles

func (a *UserRolesAPIService) ListUserRoles(ctx context.Context, orgUnitId string) ApiListUserRolesRequest

ListUserRoles PREVIEW: Retrieve a list of user roles for a given organization unit.

Returns a list of user roles for a given organization unit.<br/><br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId ID of the organization unit for which user roles information needs to be fetched.
@return ApiListUserRolesRequest

func (*UserRolesAPIService) ListUserRolesExecute

Execute executes the request

@return QueryResponseUserRole

type UsersAPIService

type UsersAPIService service

UsersAPIService UsersAPI service

func (*UsersAPIService) ListUsers

func (a *UsersAPIService) ListUsers(ctx context.Context, orgUnitId string) ApiListUsersRequest

ListUsers PREVIEW: Retrieve the list of users.

Retrieves the list of users within a specified org unit.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgUnitId The ID of the org unit for which to retrieve the users.
@return ApiListUsersRequest

func (*UsersAPIService) ListUsersExecute

Execute executes the request

@return QueryResponseUser

func (*UsersAPIService) UserRoot

UserRoot PREVIEW: List the user related links.

User List.<br/><b>NOTE:</b>This endpoint is currently in a preview stage.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserRootRequest

func (*UsersAPIService) UserRootExecute

func (a *UsersAPIService) UserRootExecute(r ApiUserRootRequest) (*LinksResponse, *http.Response, error)

Execute executes the request

@return LinksResponse

type ValidationError

type ValidationError struct {
	Field   *string `json:"field,omitempty"`
	Message *string `json:"message,omitempty"`
}

ValidationError struct for ValidationError

func NewValidationError

func NewValidationError() *ValidationError

NewValidationError instantiates a new ValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidationErrorWithDefaults

func NewValidationErrorWithDefaults() *ValidationError

NewValidationErrorWithDefaults instantiates a new ValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidationError) GetField

func (o *ValidationError) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*ValidationError) GetFieldOk

func (o *ValidationError) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidationError) GetMessage

func (o *ValidationError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ValidationError) GetMessageOk

func (o *ValidationError) 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 (*ValidationError) HasField

func (o *ValidationError) HasField() bool

HasField returns a boolean if a field has been set.

func (*ValidationError) HasMessage

func (o *ValidationError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ValidationError) MarshalJSON

func (o ValidationError) MarshalJSON() ([]byte, error)

func (*ValidationError) SetField

func (o *ValidationError) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*ValidationError) SetMessage

func (o *ValidationError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (ValidationError) ToMap

func (o ValidationError) ToMap() (map[string]interface{}, error)

type VersionInfoAuthenticatedRequest

type VersionInfoAuthenticatedRequest struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

VersionInfoAuthenticatedRequest Representation of credentials.

func NewVersionInfoAuthenticatedRequest

func NewVersionInfoAuthenticatedRequest() *VersionInfoAuthenticatedRequest

NewVersionInfoAuthenticatedRequest instantiates a new VersionInfoAuthenticatedRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVersionInfoAuthenticatedRequestWithDefaults

func NewVersionInfoAuthenticatedRequestWithDefaults() *VersionInfoAuthenticatedRequest

NewVersionInfoAuthenticatedRequestWithDefaults instantiates a new VersionInfoAuthenticatedRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VersionInfoAuthenticatedRequest) GetPassword

func (o *VersionInfoAuthenticatedRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*VersionInfoAuthenticatedRequest) GetPasswordOk

func (o *VersionInfoAuthenticatedRequest) 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 (*VersionInfoAuthenticatedRequest) GetUsername

func (o *VersionInfoAuthenticatedRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*VersionInfoAuthenticatedRequest) GetUsernameOk

func (o *VersionInfoAuthenticatedRequest) 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 (*VersionInfoAuthenticatedRequest) HasPassword

func (o *VersionInfoAuthenticatedRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*VersionInfoAuthenticatedRequest) HasUsername

func (o *VersionInfoAuthenticatedRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (VersionInfoAuthenticatedRequest) MarshalJSON

func (o VersionInfoAuthenticatedRequest) MarshalJSON() ([]byte, error)

func (*VersionInfoAuthenticatedRequest) SetPassword

func (o *VersionInfoAuthenticatedRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*VersionInfoAuthenticatedRequest) SetUsername

func (o *VersionInfoAuthenticatedRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (VersionInfoAuthenticatedRequest) ToMap

func (o VersionInfoAuthenticatedRequest) ToMap() (map[string]interface{}, error)

type VersionInfoResponse

type VersionInfoResponse struct {
	// The data containing version info extra details.
	Data map[string]map[string]interface{} `json:"data,omitempty"`
	// Links to related endpoints.
	Links *map[string]string `json:"_links,omitempty"`
}

VersionInfoResponse Represents the response for version info extra. It provides details about each system and its value such as and others.

func NewVersionInfoResponse

func NewVersionInfoResponse() *VersionInfoResponse

NewVersionInfoResponse instantiates a new VersionInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVersionInfoResponseWithDefaults

func NewVersionInfoResponseWithDefaults() *VersionInfoResponse

NewVersionInfoResponseWithDefaults instantiates a new VersionInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VersionInfoResponse) GetData

func (o *VersionInfoResponse) GetData() map[string]map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*VersionInfoResponse) GetDataOk

func (o *VersionInfoResponse) GetDataOk() (map[string]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *VersionInfoResponse) GetLinks() map[string]string

GetLinks returns the Links field value if set, zero value otherwise.

func (*VersionInfoResponse) GetLinksOk

func (o *VersionInfoResponse) GetLinksOk() (*map[string]string, 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 (*VersionInfoResponse) HasData

func (o *VersionInfoResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (o *VersionInfoResponse) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (VersionInfoResponse) MarshalJSON

func (o VersionInfoResponse) MarshalJSON() ([]byte, error)

func (*VersionInfoResponse) SetData

func (o *VersionInfoResponse) SetData(v map[string]map[string]interface{})

SetData gets a reference to the given map[string]map[string]interface{} and assigns it to the Data field.

func (o *VersionInfoResponse) SetLinks(v map[string]string)

SetLinks gets a reference to the given map[string]string and assigns it to the Links field.

func (VersionInfoResponse) ToMap

func (o VersionInfoResponse) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL