gofrcloud

package module
v0.0.0-...-c551b10 Latest Latest
Warning

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

Go to latest
Published: Sep 18, 2023 License: MIT Imports: 20 Imported by: 0

README ¶

Go API client for FastReport Cloud

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

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

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

Installation

Install the following dependencies:

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

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

import sw "./gofrcloud"

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.

	config := sw.NewConfiguration()
	config.Servers = sw.ServerConfigurations{
		{
			URL:         "server_url",
			Description: "",
		},
	}
Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
ApiKeysApi ApiKeysCreateApiKey Post /api/manage/v1/ApiKeys Create a new apikey, 5 apikeys for user. Hardcoded for ddos.
ApiKeysApi ApiKeysDeleteApiKey Delete /api/manage/v1/ApiKeys Delete an apikey
ApiKeysApi ApiKeysGetApiKeys Get /api/manage/v1/ApiKeys Returns list with all api keys of current user
ConfigurationApi ConfigurationGet Get /api/v1/Configuration returns information about server configuration
ContactGroupsApi ContactGroupsCreate Post /api/v1/ContactGroups/group Creates contact group
ContactGroupsApi ContactGroupsDelete Delete /api/v1/ContactGroups/{id} Removes contact by id
ContactGroupsApi ContactGroupsGet Get /api/v1/ContactGroups/{id} Returns contact group by id
ContactGroupsApi ContactGroupsGetList Get /api/v1/ContactGroups/subscription/{subscriptionId}/groups Returns contact groups by subscriptionId
ContactGroupsApi ContactGroupsUpdate Put /api/v1/ContactGroups/{id} Updates contact group by id
ContactsApi ContactsCreate Post /api/v1/Contacts/contact Creates new contact
ContactsApi ContactsDelete Delete /api/v1/Contacts/{id} Removes contact by id
ContactsApi ContactsGet Get /api/v1/Contacts/{id} Returns contact group by id
ContactsApi ContactsGetByGroup Get /api/v1/Contacts/group/{groupId}/contacts Returns contacts by group id
ContactsApi ContactsGetList Get /api/v1/Contacts/subscription/{subscriptionId}/contacts Allows to search for contacts
ContactsApi ContactsUpdate Put /api/v1/Contacts/{id} Updates contact by id
DataSourcesApi DataSourcesCountDataSourcesAsync Get /api/data/v1/DataSources/{subscriptionId}/count Returns a number of data sources in subscription
DataSourcesApi DataSourcesCreateDataSource Post /api/data/v1/DataSources Create new data source
DataSourcesApi DataSourcesDeleteDataSource Delete /api/data/v1/DataSources/{id} Delete data source by id
DataSourcesApi DataSourcesFetchData Get /api/data/v1/DataSources/{id}/fetch This should connect to a database and set data structure
DataSourcesApi DataSourcesGetAvailableDataSources Get /api/data/v1/DataSources Returns all of the data sources, that current user have permission for in a subscription <br /> The method will return minimal infomration about the datasources: <br /> id, name, editedTime, status.
DataSourcesApi DataSourcesGetDataSource Get /api/data/v1/DataSources/{id} Get data source by id
DataSourcesApi DataSourcesGetPermissions Get /api/data/v1/DataSources/{id}/permissions Get all Data source permissions
DataSourcesApi DataSourcesRenameDataSource Put /api/data/v1/DataSources/{id}/rename Rename data source by id
DataSourcesApi DataSourcesUpdateConnectionString Put /api/data/v1/DataSources/{id}/ConnectionString Update data source's connection string by id
DataSourcesApi DataSourcesUpdatePermissions Post /api/data/v1/DataSources/{id}/permissions Update permissions
DataSourcesApi DataSourcesUpdateSubscriptionDataSource Put /api/data/v1/DataSources/{id}/updateSubscription Update data source's subscription
DownloadApi DownloadGetExport Get /download/e/{id} Returns a export file with specified id
DownloadApi DownloadGetExportThumbnail Get /download/e/{id}/thumbnail Returns export's thumbnail
DownloadApi DownloadGetExports Get /download/es/{archiveName} Returns a zip archive with selected ids
DownloadApi DownloadGetLastSVGExport Get /download/lastPreview/{reportId} returns export, that was created from report with specified id. INTERNAL USAGE ONLY!
DownloadApi DownloadGetReport Get /download/r/{id} Returns a prepared file with specified id
DownloadApi DownloadGetReportThumbnail Get /download/r/{id}/thumbnail Returns report's thumbnail
DownloadApi DownloadGetReports Get /download/rs/{archiveName} Returns a zip archive with selected files
DownloadApi DownloadGetTemplate Get /download/t/{id} Returns a Template file with specified id
DownloadApi DownloadGetTemplateThumbnail Get /download/t/{id}/thumbnail Returns template's thumbnail
DownloadApi DownloadGetTemplates Get /download/ts/{archiveName} Returns a zip archive with selected files
ExportsApi ExportFolderAndFileClearRecycleBin Delete /api/rp/v1/Exports/{subscriptionId}/ClearRecycleBin Delete all folders and files from recycle bin
ExportsApi ExportFolderAndFileDeleteFiles Post /api/rp/v1/Exports/{subscriptionId}/DeleteFiles Delete folders and files
ExportsApi ExportFolderAndFileGetCount Get /api/rp/v1/Exports/Folder/{id}/CountFolderAndFiles Get count of files and folders what contains in a specified folder
ExportsApi ExportFolderAndFileGetFoldersAndFiles Get /api/rp/v1/Exports/Folder/{id}/ListFolderAndFiles Get all folders and files from specified folder
ExportsApi ExportFolderAndFileGetRecycleBinFoldersAndFiles Get /api/rp/v1/Exports/{subscriptionId}/ListRecycleBinFolderAndFiles Get all folders and files from recycle bin
ExportsApi ExportFolderAndFileRecoverAllFromRecycleBin Post /api/rp/v1/Exports/{subscriptionId}/RecoverRecycleBin Recover all folders and files from recycle bin
ExportsApi ExportFoldersCalculateFolderSize Get /api/rp/v1/Exports/Folder/{id}/size Get specified folder, calculate it's size
ExportsApi ExportFoldersCopyFolder Post /api/rp/v1/Exports/Folder/{id}/Copy/{folderId} Move folder to a specified folder
ExportsApi ExportFoldersDeleteFolder Delete /api/rp/v1/Exports/Folder/{id} Delete specified folder
ExportsApi ExportFoldersGetBreadcrumbs Get /api/rp/v1/Exports/Folder/{id}/Breadcrumbs Get specified folder breadcrumbs
ExportsApi ExportFoldersGetFolder Get /api/rp/v1/Exports/Folder/{id} Get specified folder
ExportsApi ExportFoldersGetFolders Get /api/rp/v1/Exports/Folder/{id}/ListFolders Get all folders from specified folder
ExportsApi ExportFoldersGetFoldersCount Get /api/rp/v1/Exports/Folder/{id}/CountFolders Get count of folders what contains in a specified folder
ExportsApi ExportFoldersGetOrCreate Get /api/rp/v1/Exports/Folder/getOrCreate Get specified folder
ExportsApi ExportFoldersGetPermissions Get /api/rp/v1/Exports/Folder/{id}/permissions Get all folder permissions
ExportsApi ExportFoldersGetRootFolder Get /api/rp/v1/Exports/Root Get user's root folder (without parents)
ExportsApi ExportFoldersMoveFolder Post /api/rp/v1/Exports/Folder/{id}/Move/{folderId} Move folder to a specified folder
ExportsApi ExportFoldersMoveFolderToBin Delete /api/rp/v1/Exports/Folder/{id}/ToBin Move specified folder to recycle bin
ExportsApi ExportFoldersPostFolder Post /api/rp/v1/Exports/Folder/{id}/Folder Create folder
ExportsApi ExportFoldersRecoverFolder Post /api/rp/v1/Exports/Folder/{id}/Recover Recover specified folder
ExportsApi ExportFoldersRenameFolder Put /api/rp/v1/Exports/Folder/{id}/Rename Rename a folder
ExportsApi ExportFoldersUpdateIcon Put /api/rp/v1/Exports/Folder/{id}/Icon Update a folder's icon
ExportsApi ExportFoldersUpdatePermissions Post /api/rp/v1/Exports/{id}/permissions Update permissions
ExportsApi ExportFoldersUpdateTags Put /api/rp/v1/Exports/Folder/{id}/UpdateTags Update tags
ExportsApi ExportsCopyFile Post /api/rp/v1/Exports/File/{id}/Copy/{folderId} Copy file to a specified folder
ExportsApi ExportsDeleteFile Delete /api/rp/v1/Exports/File/{id} Delete specified file
ExportsApi ExportsGetFile Get /api/rp/v1/Exports/File/{id} Get specified file
ExportsApi ExportsGetFileHistory Get /api/rp/v1/Exports/File/{id}/History Returns list of actions, performed on this file
ExportsApi ExportsGetFilesCount Get /api/rp/v1/Exports/Folder/{id}/CountFiles Get count of files what contains in a specified folder
ExportsApi ExportsGetFilesList Get /api/rp/v1/Exports/Folder/{id}/ListFiles Get all files from specified folder. <br /> User with Get Entity permission can access this method. <br /> The method will returns minimal infomration about the file: <br /> id, name, size, editedTime, createdTime, tags, status, statusReason.
ExportsApi ExportsGetPermissions Get /api/rp/v1/Exports/File/{id}/permissions Get all file permissions
ExportsApi ExportsMoveFile Post /api/rp/v1/Exports/File/{id}/Move/{folderId} Move file to a specified folder
ExportsApi ExportsMoveFileToBin Delete /api/rp/v1/Exports/File/{id}/ToBin Move specified file to recycle bin
ExportsApi ExportsRecoverFile Post /api/rp/v1/Exports/File/{id}/Recover Recover specified file from bin
ExportsApi ExportsRenameFile Put /api/rp/v1/Exports/File/{id}/Rename Rename a file
ExportsApi ExportsUpdateIcon Put /api/rp/v1/Exports/File/{id}/Icon Update a files's icon
ExportsApi ExportsUpdatePermissions Post /api/rp/v1/Exports/File/{id}/permissions Update permissions
ExportsApi ExportsUpdateTags Put /api/rp/v1/Exports/File/{id}/UpdateTags Update tags
GroupUsersApi GroupUsersAddUserToGroup Put /api/manage/v1/Groups/{id}/Users/{userId} Add user to the group by identifier
GroupUsersApi GroupUsersGetUsersInGroup Get /api/manage/v1/Groups/{id}/Users Returns users in the group by identifier
GroupUsersApi GroupUsersLeaveFromGroup Delete /api/manage/v1/Groups/{id}/leave Leave from the group
GroupUsersApi GroupUsersRemoveFromGroup Delete /api/manage/v1/Groups/{id}/Users/{userId} Remove user from the group by identifier
GroupsApi GroupsCreateGroup Post /api/manage/v1/Groups Create a new user group
GroupsApi GroupsDeleteGroup Delete /api/manage/v1/Groups/{id} Delete group by identifier
GroupsApi GroupsGetGroup Get /api/manage/v1/Groups/{id} Gets group by identifier
GroupsApi GroupsGetGroupList Get /api/manage/v1/Groups Returns a list of current user's groups<br /> This method will return following data about groups : <br /> Id, Name, Created time (UTC), Edited time (UTC), creator id, <br /> editor id, subscription id
GroupsApi GroupsGetPermissions Get /api/manage/v1/Groups/{id}/permissions Gets group permissions by identifier
GroupsApi GroupsRenameGroup Put /api/manage/v1/Groups/{id}/rename Rename group by identifier
GroupsApi GroupsUpdatePermissions Post /api/manage/v1/Groups/{id}/permissions Update permissions
HealthCheckApi HealthCheckDataGet Get /api/backend/v1/HealthCheck healthcheck
ReportsApi ReportFolderAndFileClearRecycleBin Delete /api/rp/v1/Reports/{subscriptionId}/ClearRecycleBin Delete all folders and files from recycle bin
ReportsApi ReportFolderAndFileDeleteFiles Post /api/rp/v1/Reports/{subscriptionId}/DeleteFiles Delete folders and files
ReportsApi ReportFolderAndFileGetCount Get /api/rp/v1/Reports/Folder/{id}/CountFolderAndFiles Get count of files and folders what contains in a specified folder
ReportsApi ReportFolderAndFileGetFoldersAndFiles Get /api/rp/v1/Reports/Folder/{id}/ListFolderAndFiles Get all folders and files from specified folder
ReportsApi ReportFolderAndFileGetRecycleBinFoldersAndFiles Get /api/rp/v1/Reports/{subscriptionId}/ListRecycleBinFolderAndFiles Get all folders and files from recycle bin
ReportsApi ReportFolderAndFileRecoverAllFromRecycleBin Post /api/rp/v1/Reports/{subscriptionId}/RecoverRecycleBin Recover all folders and files from recycle bin
ReportsApi ReportFoldersCalculateFolderSize Get /api/rp/v1/Reports/Folder/{id}/size Get specified folder, calculate it's size
ReportsApi ReportFoldersCopyFolder Post /api/rp/v1/Reports/Folder/{id}/Copy/{folderId} Move folder to a specified folder
ReportsApi ReportFoldersDeleteFolder Delete /api/rp/v1/Reports/Folder/{id} Delete specified folder
ReportsApi ReportFoldersExport Post /api/rp/v1/Reports/Folder/{id}/Export Export specified report folder to a specified format
ReportsApi ReportFoldersGetBreadcrumbs Get /api/rp/v1/Reports/Folder/{id}/Breadcrumbs Get specified folder breadcrumbs
ReportsApi ReportFoldersGetFolder Get /api/rp/v1/Reports/Folder/{id} Get specified folder
ReportsApi ReportFoldersGetFolders Get /api/rp/v1/Reports/Folder/{id}/ListFolders Get all folders from specified folder
ReportsApi ReportFoldersGetFoldersCount Get /api/rp/v1/Reports/Folder/{id}/CountFolders Get count of folders what contains in a specified folder
ReportsApi ReportFoldersGetOrCreate Get /api/rp/v1/Reports/Folder/getOrCreate Get specified folder
ReportsApi ReportFoldersGetPermissions Get /api/rp/v1/Reports/Folder/{id}/permissions Get all folder permissions
ReportsApi ReportFoldersGetRootFolder Get /api/rp/v1/Reports/Root Get user's root folder (without parents)
ReportsApi ReportFoldersMoveFolder Post /api/rp/v1/Reports/Folder/{id}/Move/{folderId} Move folder to a specified folder
ReportsApi ReportFoldersMoveFolderToBin Delete /api/rp/v1/Reports/Folder/{id}/ToBin Move specified folder to recycle bin
ReportsApi ReportFoldersPostFolder Post /api/rp/v1/Reports/Folder/{id}/Folder Create folder
ReportsApi ReportFoldersRecoverFolder Post /api/rp/v1/Reports/Folder/{id}/Recover Recover specified folder
ReportsApi ReportFoldersRenameFolder Put /api/rp/v1/Reports/Folder/{id}/Rename Rename a folder
ReportsApi ReportFoldersUpdateIcon Put /api/rp/v1/Reports/Folder/{id}/Icon Update a folder's icon
ReportsApi ReportFoldersUpdatePermissions Post /api/rp/v1/Reports/{id}/permissions Update permissions
ReportsApi ReportFoldersUpdateTags Put /api/rp/v1/Reports/Folder/{id}/UpdateTags Update tags
ReportsApi ReportsCopyFile Post /api/rp/v1/Reports/File/{id}/Copy/{folderId} Copy file to a specified folder
ReportsApi ReportsDeleteFile Delete /api/rp/v1/Reports/File/{id} Delete specified file
ReportsApi ReportsExport Post /api/rp/v1/Reports/File/{id}/Export Export specified report to a specified format
ReportsApi ReportsGetFile Get /api/rp/v1/Reports/File/{id} Get specified file
ReportsApi ReportsGetFileHistory Get /api/rp/v1/Reports/File/{id}/History Returns list of actions, performed on this file
ReportsApi ReportsGetFilesCount Get /api/rp/v1/Reports/Folder/{id}/CountFiles Get count of files what contains in a specified folder
ReportsApi ReportsGetFilesList Get /api/rp/v1/Reports/Folder/{id}/ListFiles Get all files from specified folder. <br /> User with Get Entity permission can access this method. <br /> The method will returns minimal infomration about the file: <br /> id, name, size, editedTime, createdTime, tags, status, statusReason.
ReportsApi ReportsGetPermissions Get /api/rp/v1/Reports/File/{id}/permissions Get all file permissions
ReportsApi ReportsMoveFile Post /api/rp/v1/Reports/File/{id}/Move/{folderId} Move file to a specified folder
ReportsApi ReportsMoveFileToBin Delete /api/rp/v1/Reports/File/{id}/ToBin Move specified file to recycle bin
ReportsApi ReportsRecoverFile Post /api/rp/v1/Reports/File/{id}/Recover Recover specified file from bin
ReportsApi ReportsRenameFile Put /api/rp/v1/Reports/File/{id}/Rename Rename a file
ReportsApi ReportsStaticPreview Post /api/rp/v1/Reports/File/{id}/StaticPreview Make preview for the report. Generate a new or return exist prepared svg files. If template was changed will be returned a new. Pass the `` parameter to check prepared timestamp
ReportsApi ReportsUpdateIcon Put /api/rp/v1/Reports/File/{id}/Icon Update a files's icon
ReportsApi ReportsUpdatePermissions Post /api/rp/v1/Reports/File/{id}/permissions Update permissions
ReportsApi ReportsUpdateTags Put /api/rp/v1/Reports/File/{id}/UpdateTags Update tags
ReportsApi ReportsUploadFile Post /api/rp/v1/Reports/Folder/{id}/File Upload a file to the specified folder !
SubscriptionGroupsApi SubscriptionGroupsCountGroupsAsync Get /api/manage/v1/Subscriptions/{subscriptionId}/count Returns a number of groups in subscription
SubscriptionGroupsApi SubscriptionGroupsGetGroupsList Get /api/manage/v1/Subscriptions/{subscriptionId}/groups returns groups of the subscription or subscription user
SubscriptionInvitesApi SubscriptionInvitesAcceptInvite Get /api/manage/v1/Subscriptions/{subscriptionId}/invite/{accessToken}/accept Add a user to the subscription using invite, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.
SubscriptionInvitesApi SubscriptionInvitesCreateInvite Post /api/manage/v1/Subscriptions/{subscriptionId}/invite Create invite to subscription
SubscriptionInvitesApi SubscriptionInvitesDeleteInvite Delete /api/manage/v1/Subscriptions/{subscriptionId}/invite/{accesstoken} Rename subscription
SubscriptionInvitesApi SubscriptionInvitesGetInvites Get /api/manage/v1/Subscriptions/{subscriptionId}/invites Get list of invites in a subscription, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.
SubscriptionPlansApi SubscriptionPlansGetSubscriptionPlan Get /api/manage/v1/SubscriptionPlans/{id} Returns a subscription plan. Not all subscriptions can be issued for customer.
SubscriptionPlansApi SubscriptionPlansGetSubscriptionPlans Get /api/manage/v1/SubscriptionPlans Returns a list of active subscription plans that can be issued to the user.
SubscriptionUsersApi SubscriptionUsersAddUser Put /api/manage/v1/Subscriptions/{subscriptionId}/users/{userId} Add a user to the subscription, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.
SubscriptionUsersApi SubscriptionUsersCountUsersAsync Get /api/manage/v1/Subscriptions/{subscriptionId}/UsersCount Returns a number of users in subscription
SubscriptionUsersApi SubscriptionUsersGetUsers Get /api/manage/v1/Subscriptions/{subscriptionId}/users Returns all users of subscription
SubscriptionUsersApi SubscriptionUsersLeaveSubscripiton Delete /api/manage/v1/Subscriptions/{subscriptionId}/leave Allows user to leave subscription,.
SubscriptionUsersApi SubscriptionUsersRemoveUser Delete /api/manage/v1/Subscriptions/{subscriptionId}/users/{userId} Delete a user from the subscription, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.
SubscriptionsApi SubscriptionsGetDefaultPermissions Get /api/manage/v1/Subscriptions/{subscriptionId}/defaultPermissions Get subscription's default permissions for new entities
SubscriptionsApi SubscriptionsGetMyPermissions Get /api/manage/v1/Subscriptions/{subId}/mypermissions Get user's permissions for a subscription by id
SubscriptionsApi SubscriptionsGetPermissions Get /api/manage/v1/Subscriptions/{id}/permissions Get permissions for a subscription by id
SubscriptionsApi SubscriptionsGetSubscription Get /api/manage/v1/Subscriptions/{id} Returns the subscription by id
SubscriptionsApi SubscriptionsGetSubscriptions Get /api/manage/v1/Subscriptions Returns a list of all subscriptions of current user
SubscriptionsApi SubscriptionsRenameSubscription Put /api/manage/v1/Subscriptions/{subscriptionId}/rename Rename subscription
SubscriptionsApi SubscriptionsUpdateDefaultPermissions Put /api/manage/v1/Subscriptions/{subscriptionId}/defaultPermissions Change subscription's default permissions for new entities
SubscriptionsApi SubscriptionsUpdateLocale Put /api/manage/v1/Subscriptions/{subscriptionId}/Locale Update subscription's default locale
SubscriptionsApi SubscriptionsUpdatePermissions Post /api/manage/v1/Subscriptions/{id}/permissions Update permissions
TasksApi TasksCreateTask Post /api/tasks/v1/Tasks Create a new task
TasksApi TasksDeleteTask Delete /api/tasks/v1/Tasks/{taskId} Delete a task from a storage
TasksApi TasksGet Get /api/tasks/v1/Tasks/{taskId} Get a task by a specified id
TasksApi TasksGetList Get /api/tasks/v1/Tasks Get tasks list
TasksApi TasksGetPermissions Get /api/tasks/v1/Tasks/{id}/permissions Get all Task permissions
TasksApi TasksRenameTask Put /api/tasks/v1/Tasks/{taskId}/rename Rename a task
TasksApi TasksRunTask Post /api/tasks/v1/Tasks/run Run a task from request body
TasksApi TasksRunTaskById Post /api/tasks/v1/Tasks/{taskId}/run Run a task by id
TasksApi TasksUpdatePermissions Post /api/tasks/v1/Tasks/{id}/permissions Update permissions
TasksApi TasksUpdateTask Put /api/tasks/v1/Tasks/{taskId} Update a task
TemplatesApi TemplateFolderAndFileClearRecycleBin Delete /api/rp/v1/Templates/{subscriptionId}/ClearRecycleBin Delete all folders and files from recycle bin
TemplatesApi TemplateFolderAndFileDeleteFiles Post /api/rp/v1/Templates/{subscriptionId}/DeleteFiles Delete folders and files
TemplatesApi TemplateFolderAndFileGetCount Get /api/rp/v1/Templates/Folder/{id}/CountFolderAndFiles Get count of files and folders what contains in a specified folder
TemplatesApi TemplateFolderAndFileGetFoldersAndFiles Get /api/rp/v1/Templates/Folder/{id}/ListFolderAndFiles Get all folders and files from specified folder
TemplatesApi TemplateFolderAndFileGetRecycleBinFoldersAndFiles Get /api/rp/v1/Templates/{subscriptionId}/ListRecycleBinFolderAndFiles Get all folders and files from recycle bin
TemplatesApi TemplateFolderAndFileRecoverAllFromRecycleBin Post /api/rp/v1/Templates/{subscriptionId}/RecoverRecycleBin Recover all folders and files from recycle bin
TemplatesApi TemplateFoldersCalculateFolderSize Get /api/rp/v1/Templates/Folder/{id}/size Get specified folder, calculate it's size
TemplatesApi TemplateFoldersCopyFolder Post /api/rp/v1/Templates/Folder/{id}/Copy/{folderId} Move folder to a specified folder
TemplatesApi TemplateFoldersDeleteFolder Delete /api/rp/v1/Templates/Folder/{id} Delete specified folder
TemplatesApi TemplateFoldersExport Post /api/rp/v1/Templates/Folder/{id}/Export Export specified template folder to a specified format
TemplatesApi TemplateFoldersGetBreadcrumbs Get /api/rp/v1/Templates/Folder/{id}/Breadcrumbs Get specified folder breadcrumbs
TemplatesApi TemplateFoldersGetFolder Get /api/rp/v1/Templates/Folder/{id} Get specified folder
TemplatesApi TemplateFoldersGetFolders Get /api/rp/v1/Templates/Folder/{id}/ListFolders Get all folders from specified folder
TemplatesApi TemplateFoldersGetFoldersCount Get /api/rp/v1/Templates/Folder/{id}/CountFolders Get count of folders what contains in a specified folder
TemplatesApi TemplateFoldersGetOrCreate Get /api/rp/v1/Templates/Folder/getOrCreate Get specified folder
TemplatesApi TemplateFoldersGetPermissions Get /api/rp/v1/Templates/Folder/{id}/permissions Get all folder permissions
TemplatesApi TemplateFoldersGetRootFolder Get /api/rp/v1/Templates/Root Get user's root folder (without parents)
TemplatesApi TemplateFoldersMoveFolder Post /api/rp/v1/Templates/Folder/{id}/Move/{folderId} Move folder to a specified folder
TemplatesApi TemplateFoldersMoveFolderToBin Delete /api/rp/v1/Templates/Folder/{id}/ToBin Move specified folder to recycle bin
TemplatesApi TemplateFoldersPostFolder Post /api/rp/v1/Templates/Folder/{id}/Folder Create folder
TemplatesApi TemplateFoldersPrepare Post /api/rp/v1/Templates/Folder/{id}/Prepare Prepare specified template folder to report folder
TemplatesApi TemplateFoldersRecoverFolder Post /api/rp/v1/Templates/Folder/{id}/Recover Recover specified folder
TemplatesApi TemplateFoldersRenameFolder Put /api/rp/v1/Templates/Folder/{id}/Rename Rename a folder
TemplatesApi TemplateFoldersUpdateIcon Put /api/rp/v1/Templates/Folder/{id}/Icon Update a folder's icon
TemplatesApi TemplateFoldersUpdatePermissions Post /api/rp/v1/Templates/{id}/permissions Update permissions
TemplatesApi TemplateFoldersUpdateTags Put /api/rp/v1/Templates/Folder/{id}/UpdateTags Update tags
TemplatesApi TemplatesCopyFile Post /api/rp/v1/Templates/File/{id}/Copy/{folderId} Copy file to a specified folder
TemplatesApi TemplatesDeleteFile Delete /api/rp/v1/Templates/File/{id} Delete specified file
TemplatesApi TemplatesExport Post /api/rp/v1/Templates/File/{id}/Export Export specified report template to a specified format
TemplatesApi TemplatesGetFile Get /api/rp/v1/Templates/File/{id} Get specified file
TemplatesApi TemplatesGetFileHistory Get /api/rp/v1/Templates/File/{id}/History Returns list of actions, performed on this file
TemplatesApi TemplatesGetFilesCount Get /api/rp/v1/Templates/Folder/{id}/CountFiles Get count of files what contains in a specified folder
TemplatesApi TemplatesGetFilesList Get /api/rp/v1/Templates/Folder/{id}/ListFiles Get all files from specified folder. <br /> User with Get Entity permission can access this method. <br /> The method will returns minimal infomration about the file: <br /> id, name, size, editedTime, createdTime, tags, status, statusReason.
TemplatesApi TemplatesGetPermissions Get /api/rp/v1/Templates/File/{id}/permissions Get all file permissions
TemplatesApi TemplatesMoveFile Post /api/rp/v1/Templates/File/{id}/Move/{folderId} Move file to a specified folder
TemplatesApi TemplatesMoveFileToBin Delete /api/rp/v1/Templates/File/{id}/ToBin Move specified file to recycle bin
TemplatesApi TemplatesPrepare Post /api/rp/v1/Templates/File/{id}/Prepare Prepare specified template to report
TemplatesApi TemplatesRecoverFile Post /api/rp/v1/Templates/File/{id}/Recover Recover specified file from bin
TemplatesApi TemplatesRenameFile Put /api/rp/v1/Templates/File/{id}/Rename Rename a file
TemplatesApi TemplatesStaticPreview Post /api/rp/v1/Templates/File/{id}/StaticPreview Make preview for the report. Generate a new or return exist prepared svg files. If template was changed will be returned a new. Pass the `` parameter to check prepared timestamp
TemplatesApi TemplatesUpdateContent Put /api/rp/v1/Templates/File/{id}/Content Updates contnet of the template
TemplatesApi TemplatesUpdateIcon Put /api/rp/v1/Templates/File/{id}/Icon Update a files's icon
TemplatesApi TemplatesUpdatePermissions Post /api/rp/v1/Templates/File/{id}/permissions Update permissions
TemplatesApi TemplatesUpdateTags Put /api/rp/v1/Templates/File/{id}/UpdateTags Update tags
TemplatesApi TemplatesUploadFile Post /api/rp/v1/Templates/Folder/{id}/File Upload a file to the specified folder !
UserNotificationsApi UserNotificationsClearNotifications Delete /api/manage/v1/notifications Use this endpoint to &quot;clear&quot; your notifications
UserNotificationsApi UserNotificationsGetNotifications Get /api/manage/v1/notifications Use this endpoint to recieve notifications
UserProfileApi UserProfileGetMyProfile Get /api/manage/v1/UserProfile Return current profile of the current user
UserProfileApi UserProfileGetUserProfile Get /api/manage/v1/UserProfile/{userId} Return user profile by user identifier. If the user did not provide information about himself or blocked, then the endpoint will return an empty model. (only id)
UserProfileApi UserProfileUpdateMyProfile Put /api/manage/v1/UserProfile Update profile of the current user
UserSettingsApi UserSettingsAcceptAgreements Post /api/manage/v1/UserSettings/accept Use this endpoint to accept current version of service license agreement
UserSettingsApi UserSettingsGetCurrentUserSettings Get /api/manage/v1/UserSettings Return current user settings.
UserSettingsApi UserSettingsUpdateMySettings Put /api/manage/v1/UserSettings Update settings of the current user

Documentation For Models

Documentation For Authorization

JWT
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARERTOKENSTRING")
r, err := client.Service.Operation(auth, args)
ApiKey
  • Type: HTTP basic authentication

Example

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

Documentation for Utility Methods

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

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

Examples

Here you can find an example of how to use this module.

Authors

Fast Reports team https://www.fast-report.com/en/

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

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

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAuditTypeEnumValues = []AuditType{
	"Task_Created_ExportTemplate",
	"Task_Created_ExportReport",
	"Task_Created_PrepareTemplate",
	"Task_Created_Fetch",
	"Task_Created_Email",
	"Task_Created_Webhook",
	"Task_Deleted_ExportTemplate",
	"Task_Deleted_ExportReport",
	"Task_Deleted_PrepareTemplate",
	"Task_Deleted_Fetch",
	"Task_Deleted_Email",
	"Task_Deleted_Webhook",
	"Task_Updated_ExportTemplate",
	"Task_Updated_ExportReport",
	"Task_Updated_PrepareTemplate",
	"Task_Updated_Fetch",
	"Task_Updated_Email",
	"Task_Updated_Webhook",
	"Task_InQueue_ExportTemplate",
	"Task_InQueue_ExportReport",
	"Task_InQueue_PrepareTemplate",
	"Task_InQueue_Fetch",
	"Task_InQueue_Email",
	"Task_InQueue_Webhook",
	"Task_InProcess_ExportTemplate",
	"Task_InProcess_ExportReport",
	"Task_InProcess_PrepareTemplate",
	"Task_InProcess_Fetch",
	"Task_InProcess_Email",
	"Task_InProcess_Webhook",
	"Task_Success_ExportTemplate",
	"Task_Success_ExportReport",
	"Task_Success_PrepareTemplate",
	"Task_Success_Fetch",
	"Task_Success_Email",
	"Task_Success_Webhook",
	"Task_Failed_ExportTemplate",
	"Task_Failed_ExportReport",
	"Task_Failed_PrepareTemplate",
	"Task_Failed_Fetch",
	"Task_Failed_Email",
	"Task_Failed_Webhook",
	"Task_Created_ThumbnailReport",
	"Task_Deleted_ThumbnailReport",
	"Task_Updated_ThumbnailReport",
	"Task_InQueue_ThumbnailReport",
	"Task_InProcess_ThumbnailReport",
	"Task_Success_ThumbnailReport",
	"Task_Fail_ThumbnailReport",
	"Task_Created_ThumbnailTemplate",
	"Task_Deleted_ThumbnailTemplate",
	"Task_Updated_ThumbnailTemplate",
	"Task_InQueue_ThumbnailTemplate",
	"Task_InProcess_ThumbnailTemplate",
	"Task_Success_ThumbnailTemplate",
	"Task_Fail_ThumbnailTemplate",
	"Subscription_Renewed",
	"Subscription_Created",
	"File_Renamed",
	"File_Content_Updated",
	"File_Deleted",
	"File_Moved",
	"File_Copied",
	"File_Tags_Updated",
	"File_Permissions_Updated",
	"File_Restored",
	"File_MovedToBin",
	"File_Updated",
	"Task_Created_FTPUpload",
	"Task_Deleted_FTPUpload",
	"Task_Updated_FTPUpload",
	"Task_InQueue_FTPUpload",
	"Task_InProcess_FTPUpload",
	"Task_Success_FTPUpload",
	"Task_Fail_FTPUpload",
	"File_Created",
}

All allowed values of AuditType enum

View Source
var AllowedDataSourceAdministrateEnumValues = []DataSourceAdministrate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of DataSourceAdministrate enum

View Source
var AllowedDataSourceConnectionTypeEnumValues = []DataSourceConnectionType{
	"JSON",
	"MSSQL",
	"CSV",
	"XML",
	"MySQL",
	"Postgres",
	"OracleDB",
	"FirebirdDB",
	"MongoDB",
	"ClickHouse",
}

All allowed values of DataSourceConnectionType enum

View Source
var AllowedDataSourceCreateEnumValues = []DataSourceCreate{
	0,
	-1,
}

All allowed values of DataSourceCreate enum

View Source
var AllowedDataSourceDeleteEnumValues = []DataSourceDelete{
	0,
	1,
	-1,
}

All allowed values of DataSourceDelete enum

View Source
var AllowedDataSourceExecuteEnumValues = []DataSourceExecute{
	0,
	-1,
}

All allowed values of DataSourceExecute enum

View Source
var AllowedDataSourceGetEnumValues = []DataSourceGet{
	0,
	1,
	2,
	-1,
}

All allowed values of DataSourceGet enum

View Source
var AllowedDataSourceSortingEnumValues = []DataSourceSorting{
	"None",
	"CreatedTime",
	"EditedTime",
	"Name",
}

All allowed values of DataSourceSorting enum

View Source
var AllowedDataSourceStatusEnumValues = []DataSourceStatus{
	"Connected",
	"Error",
	"Updating",
}

All allowed values of DataSourceStatus enum

View Source
var AllowedDataSourceUpdateEnumValues = []DataSourceUpdate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of DataSourceUpdate enum

View Source
var AllowedEntityTypeEnumValues = []EntityType{
	"None",
	"Template",
	"TemplateFolder",
	"Report",
	"ReportFolder",
	"Export",
	"ExportFolder",
}

All allowed values of EntityType enum

View Source
var AllowedExportFormatEnumValues = []ExportFormat{
	"Pdf",
	"Html",
	"Mht",
	"Image",
	"Biff8",
	"Csv",
	"Dbf",
	"Json",
	"LaTeX",
	"Odt",
	"Ods",
	"Docx",
	"Pptx",
	"Xlsx",
	"Xps",
	"Ppml",
	"PS",
	"Richtext",
	"Svg",
	"Text",
	"Xaml",
	"Xml",
	"Zpl",
}

All allowed values of ExportFormat enum

View Source
var AllowedFileAdministrateEnumValues = []FileAdministrate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of FileAdministrate enum

View Source
var AllowedFileCreateEnumValues = []FileCreate{
	0,
	1,
	-1,
}

All allowed values of FileCreate enum

View Source
var AllowedFileDeleteEnumValues = []FileDelete{
	0,
	1,
	-1,
}

All allowed values of FileDelete enum

View Source
var AllowedFileExecuteEnumValues = []FileExecute{
	0,
	1,
	2,
	4,
	8,
	16,
	-1,
}

All allowed values of FileExecute enum

View Source
var AllowedFileGetEnumValues = []FileGet{
	0,
	1,
	2,
	4,
	8,
	16,
	32,
	-1,
}

All allowed values of FileGet enum

View Source
var AllowedFileKindEnumValues = []FileKind{
	"Template",
	"Report",
	"Export",
}

All allowed values of FileKind enum

View Source
var AllowedFileSortingEnumValues = []FileSorting{
	"None",
	"CreatedTime",
	"EditedTime",
	"Size",
	"Name",
}

All allowed values of FileSorting enum

View Source
var AllowedFileStatusEnumValues = []FileStatus{
	"None",
	"InQueue",
	"InProcess",
	"Success",
	"Failed",
}

All allowed values of FileStatus enum

View Source
var AllowedFileStatusReasonEnumValues = []FileStatusReason{
	"None",
	"AllRight",
	"Hang",
	"Error",
	"NotFound",
	"NotEnoughSpace",
	"ExportStarted",
	"PreparationStarted",
	"CrashLoop",
}

All allowed values of FileStatusReason enum

View Source
var AllowedFileTypeEnumValues = []FileType{
	"File",
	"Folder",
}

All allowed values of FileType enum

View Source
var AllowedFileUpdateEnumValues = []FileUpdate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of FileUpdate enum

View Source
var AllowedGroupAdministrateEnumValues = []GroupAdministrate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of GroupAdministrate enum

View Source
var AllowedGroupCreateEnumValues = []GroupCreate{
	0,
	1,
	-1,
}

All allowed values of GroupCreate enum

View Source
var AllowedGroupDeleteEnumValues = []GroupDelete{
	0,
	1,
	2,
	-1,
}

All allowed values of GroupDelete enum

View Source
var AllowedGroupExecuteEnumValues = []GroupExecute{
	0,
	-1,
}

All allowed values of GroupExecute enum

View Source
var AllowedGroupGetEnumValues = []GroupGet{
	0,
	1,
	2,
	4,
	-1,
}

All allowed values of GroupGet enum

View Source
var AllowedGroupUpdateEnumValues = []GroupUpdate{
	0,
	1,
	-1,
}

All allowed values of GroupUpdate enum

View Source
var AllowedProfileVisibilityEnumValues = []ProfileVisibility{
	0,
	1,
	2,
	4,
}

All allowed values of ProfileVisibility enum

View Source
var AllowedSaveModeEnumValues = []SaveMode{
	"All",
	"Original",
	"User",
	"Role",
	"Security",
	"Deny",
	"Custom",
}

All allowed values of SaveMode enum

View Source
var AllowedSubscriptionAdministrateEnumValues = []SubscriptionAdministrate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of SubscriptionAdministrate enum

View Source
var AllowedSubscriptionCreateEnumValues = []SubscriptionCreate{
	0,
	1,
	2,
	4,
	8,
	16,
	32,
	64,
	-1,
}

All allowed values of SubscriptionCreate enum

View Source
var AllowedSubscriptionDeleteEnumValues = []SubscriptionDelete{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of SubscriptionDelete enum

View Source
var AllowedSubscriptionExecuteEnumValues = []SubscriptionExecute{
	0,
	4,
	-1,
}

All allowed values of SubscriptionExecute enum

View Source
var AllowedSubscriptionGetEnumValues = []SubscriptionGet{
	0,
	1,
	2,
	4,
	8,
	16,
	32,
	64,
	128,
	256,
	512,
	1024,
	-1,
}

All allowed values of SubscriptionGet enum

View Source
var AllowedSubscriptionUpdateEnumValues = []SubscriptionUpdate{
	0,
	1,
	4,
	8,
	16,
	-1,
}

All allowed values of SubscriptionUpdate enum

View Source
var AllowedTaskAdministrateEnumValues = []TaskAdministrate{
	0,
	1,
	2,
	4,
	8,
	-1,
}

All allowed values of TaskAdministrate enum

View Source
var AllowedTaskCreateEnumValues = []TaskCreate{
	0,
	-1,
}

All allowed values of TaskCreate enum

View Source
var AllowedTaskDeleteEnumValues = []TaskDelete{
	0,
	1,
	-1,
}

All allowed values of TaskDelete enum

View Source
var AllowedTaskExecuteEnumValues = []TaskExecute{
	0,
	1,
	-1,
}

All allowed values of TaskExecute enum

View Source
var AllowedTaskGetEnumValues = []TaskGet{
	0,
	1,
	2,
	4,
	-1,
}

All allowed values of TaskGet enum

View Source
var AllowedTaskUpdateEnumValues = []TaskUpdate{
	0,
	1,
	2,
	-1,
}

All allowed values of TaskUpdate enum

View Source
var AllowedTimePeriodTypeEnumValues = []TimePeriodType{
	"Second",
	"Minute",
	"Hour",
	"Day",
	"Week",
	"Month",
	"Year",
}

All allowed values of TimePeriodType enum

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 {
	ApiKeysApi *ApiKeysApiService

	ConfigurationApi *ConfigurationApiService

	ContactGroupsApi *ContactGroupsApiService

	ContactsApi *ContactsApiService

	DataSourcesApi *DataSourcesApiService

	DownloadApi *DownloadApiService

	ExportsApi *ExportsApiService

	GroupUsersApi *GroupUsersApiService

	GroupsApi *GroupsApiService

	HealthCheckApi *HealthCheckApiService

	ReportsApi *ReportsApiService

	SubscriptionGroupsApi *SubscriptionGroupsApiService

	SubscriptionInvitesApi *SubscriptionInvitesApiService

	SubscriptionPlansApi *SubscriptionPlansApiService

	SubscriptionUsersApi *SubscriptionUsersApiService

	SubscriptionsApi *SubscriptionsApiService

	TasksApi *TasksApiService

	TemplatesApi *TemplatesApiService

	UserNotificationsApi *UserNotificationsApiService

	UserProfileApi *UserProfileApiService

	UserSettingsApi *UserSettingsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the FastReport Cloud API vv1 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 AcceptAgreementsVM ¶

type AcceptAgreementsVM struct {
	SlaAccepted *bool `json:"slaAccepted,omitempty"`
}

AcceptAgreementsVM struct for AcceptAgreementsVM

func NewAcceptAgreementsVM ¶

func NewAcceptAgreementsVM() *AcceptAgreementsVM

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

func NewAcceptAgreementsVMWithDefaults ¶

func NewAcceptAgreementsVMWithDefaults() *AcceptAgreementsVM

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

func (*AcceptAgreementsVM) GetSlaAccepted ¶

func (o *AcceptAgreementsVM) GetSlaAccepted() bool

GetSlaAccepted returns the SlaAccepted field value if set, zero value otherwise.

func (*AcceptAgreementsVM) GetSlaAcceptedOk ¶

func (o *AcceptAgreementsVM) GetSlaAcceptedOk() (*bool, bool)

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

func (*AcceptAgreementsVM) HasSlaAccepted ¶

func (o *AcceptAgreementsVM) HasSlaAccepted() bool

HasSlaAccepted returns a boolean if a field has been set.

func (AcceptAgreementsVM) MarshalJSON ¶

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

func (*AcceptAgreementsVM) SetSlaAccepted ¶

func (o *AcceptAgreementsVM) SetSlaAccepted(v bool)

SetSlaAccepted gets a reference to the given bool and assigns it to the SlaAccepted field.

func (AcceptAgreementsVM) ToMap ¶

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

type AdminExportFolderCreateVM ¶

type AdminExportFolderCreateVM struct {
}

AdminExportFolderCreateVM struct for AdminExportFolderCreateVM

func NewAdminExportFolderCreateVM ¶

func NewAdminExportFolderCreateVM() *AdminExportFolderCreateVM

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

func NewAdminExportFolderCreateVMWithDefaults ¶

func NewAdminExportFolderCreateVMWithDefaults() *AdminExportFolderCreateVM

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

func (AdminExportFolderCreateVM) MarshalJSON ¶

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

func (AdminExportFolderCreateVM) ToMap ¶

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

type AdminFolderCreateVM ¶

type AdminFolderCreateVM struct {
	ParentId string `json:"parentId"`
	OwnerId  string `json:"ownerId"`
	Force    *bool  `json:"force,omitempty"`
}

AdminFolderCreateVM struct for AdminFolderCreateVM

func NewAdminFolderCreateVM ¶

func NewAdminFolderCreateVM(parentId string, ownerId string) *AdminFolderCreateVM

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

func NewAdminFolderCreateVMWithDefaults ¶

func NewAdminFolderCreateVMWithDefaults() *AdminFolderCreateVM

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

func (*AdminFolderCreateVM) GetForce ¶

func (o *AdminFolderCreateVM) GetForce() bool

GetForce returns the Force field value if set, zero value otherwise.

func (*AdminFolderCreateVM) GetForceOk ¶

func (o *AdminFolderCreateVM) GetForceOk() (*bool, bool)

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

func (*AdminFolderCreateVM) GetOwnerId ¶

func (o *AdminFolderCreateVM) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*AdminFolderCreateVM) GetOwnerIdOk ¶

func (o *AdminFolderCreateVM) GetOwnerIdOk() (*string, bool)

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

func (*AdminFolderCreateVM) GetParentId ¶

func (o *AdminFolderCreateVM) GetParentId() string

GetParentId returns the ParentId field value

func (*AdminFolderCreateVM) GetParentIdOk ¶

func (o *AdminFolderCreateVM) GetParentIdOk() (*string, bool)

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

func (*AdminFolderCreateVM) HasForce ¶

func (o *AdminFolderCreateVM) HasForce() bool

HasForce returns a boolean if a field has been set.

func (AdminFolderCreateVM) MarshalJSON ¶

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

func (*AdminFolderCreateVM) SetForce ¶

func (o *AdminFolderCreateVM) SetForce(v bool)

SetForce gets a reference to the given bool and assigns it to the Force field.

func (*AdminFolderCreateVM) SetOwnerId ¶

func (o *AdminFolderCreateVM) SetOwnerId(v string)

SetOwnerId sets field value

func (*AdminFolderCreateVM) SetParentId ¶

func (o *AdminFolderCreateVM) SetParentId(v string)

SetParentId sets field value

func (AdminFolderCreateVM) ToMap ¶

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

type AdminReportFolderCreateVM ¶

type AdminReportFolderCreateVM struct {
}

AdminReportFolderCreateVM struct for AdminReportFolderCreateVM

func NewAdminReportFolderCreateVM ¶

func NewAdminReportFolderCreateVM() *AdminReportFolderCreateVM

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

func NewAdminReportFolderCreateVMWithDefaults ¶

func NewAdminReportFolderCreateVMWithDefaults() *AdminReportFolderCreateVM

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

func (AdminReportFolderCreateVM) MarshalJSON ¶

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

func (AdminReportFolderCreateVM) ToMap ¶

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

type AdminSubscriptionVM ¶

type AdminSubscriptionVM struct {
	DefaultPermissions *DefaultPermissionsVM `json:"defaultPermissions,omitempty"`
}

AdminSubscriptionVM struct for AdminSubscriptionVM

func NewAdminSubscriptionVM ¶

func NewAdminSubscriptionVM() *AdminSubscriptionVM

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

func NewAdminSubscriptionVMWithDefaults ¶

func NewAdminSubscriptionVMWithDefaults() *AdminSubscriptionVM

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

func (*AdminSubscriptionVM) GetDefaultPermissions ¶

func (o *AdminSubscriptionVM) GetDefaultPermissions() DefaultPermissionsVM

GetDefaultPermissions returns the DefaultPermissions field value if set, zero value otherwise.

func (*AdminSubscriptionVM) GetDefaultPermissionsOk ¶

func (o *AdminSubscriptionVM) GetDefaultPermissionsOk() (*DefaultPermissionsVM, bool)

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

func (*AdminSubscriptionVM) HasDefaultPermissions ¶

func (o *AdminSubscriptionVM) HasDefaultPermissions() bool

HasDefaultPermissions returns a boolean if a field has been set.

func (AdminSubscriptionVM) MarshalJSON ¶

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

func (*AdminSubscriptionVM) SetDefaultPermissions ¶

func (o *AdminSubscriptionVM) SetDefaultPermissions(v DefaultPermissionsVM)

SetDefaultPermissions gets a reference to the given DefaultPermissionsVM and assigns it to the DefaultPermissions field.

func (AdminSubscriptionVM) ToMap ¶

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

type AdminTemplateFolderCreateVM ¶

type AdminTemplateFolderCreateVM struct {
}

AdminTemplateFolderCreateVM struct for AdminTemplateFolderCreateVM

func NewAdminTemplateFolderCreateVM ¶

func NewAdminTemplateFolderCreateVM() *AdminTemplateFolderCreateVM

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

func NewAdminTemplateFolderCreateVMWithDefaults ¶

func NewAdminTemplateFolderCreateVMWithDefaults() *AdminTemplateFolderCreateVM

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

func (AdminTemplateFolderCreateVM) MarshalJSON ¶

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

func (AdminTemplateFolderCreateVM) ToMap ¶

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

type ApiApiKeysCreateApiKeyRequest ¶

type ApiApiKeysCreateApiKeyRequest struct {
	ApiService *ApiKeysApiService
	// contains filtered or unexported fields
}

func (ApiApiKeysCreateApiKeyRequest) CreateApiKeyVM ¶

func (ApiApiKeysCreateApiKeyRequest) Execute ¶

type ApiApiKeysDeleteApiKeyRequest ¶

type ApiApiKeysDeleteApiKeyRequest struct {
	ApiService *ApiKeysApiService
	// contains filtered or unexported fields
}

func (ApiApiKeysDeleteApiKeyRequest) DeleteApiKeyVM ¶

func (ApiApiKeysDeleteApiKeyRequest) Execute ¶

type ApiApiKeysGetApiKeysRequest ¶

type ApiApiKeysGetApiKeysRequest struct {
	ApiService *ApiKeysApiService
	// contains filtered or unexported fields
}

func (ApiApiKeysGetApiKeysRequest) Execute ¶

type ApiConfigurationGetRequest ¶

type ApiConfigurationGetRequest struct {
	ApiService *ConfigurationApiService
	// contains filtered or unexported fields
}

func (ApiConfigurationGetRequest) Execute ¶

type ApiContactGroupsCreateRequest ¶

type ApiContactGroupsCreateRequest struct {
	ApiService *ContactGroupsApiService
	// contains filtered or unexported fields
}

func (ApiContactGroupsCreateRequest) CreateContactGroupVM ¶

func (r ApiContactGroupsCreateRequest) CreateContactGroupVM(createContactGroupVM CreateContactGroupVM) ApiContactGroupsCreateRequest

func (ApiContactGroupsCreateRequest) Execute ¶

type ApiContactGroupsDeleteRequest ¶

type ApiContactGroupsDeleteRequest struct {
	ApiService *ContactGroupsApiService
	// contains filtered or unexported fields
}

func (ApiContactGroupsDeleteRequest) Execute ¶

type ApiContactGroupsGetListRequest ¶

type ApiContactGroupsGetListRequest struct {
	ApiService *ContactGroupsApiService
	// contains filtered or unexported fields
}

func (ApiContactGroupsGetListRequest) Execute ¶

func (ApiContactGroupsGetListRequest) Skip ¶

func (ApiContactGroupsGetListRequest) Take ¶

type ApiContactGroupsGetRequest ¶

type ApiContactGroupsGetRequest struct {
	ApiService *ContactGroupsApiService
	// contains filtered or unexported fields
}

func (ApiContactGroupsGetRequest) Execute ¶

type ApiContactGroupsUpdateRequest ¶

type ApiContactGroupsUpdateRequest struct {
	ApiService *ContactGroupsApiService
	// contains filtered or unexported fields
}

func (ApiContactGroupsUpdateRequest) Execute ¶

func (ApiContactGroupsUpdateRequest) UpdateContactGroupVM ¶

func (r ApiContactGroupsUpdateRequest) UpdateContactGroupVM(updateContactGroupVM UpdateContactGroupVM) ApiContactGroupsUpdateRequest

type ApiContactsCreateRequest ¶

type ApiContactsCreateRequest struct {
	ApiService *ContactsApiService
	// contains filtered or unexported fields
}

func (ApiContactsCreateRequest) CreateContactVM ¶

func (r ApiContactsCreateRequest) CreateContactVM(createContactVM CreateContactVM) ApiContactsCreateRequest

func (ApiContactsCreateRequest) Execute ¶

type ApiContactsDeleteRequest ¶

type ApiContactsDeleteRequest struct {
	ApiService *ContactsApiService
	// contains filtered or unexported fields
}

func (ApiContactsDeleteRequest) Execute ¶

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

type ApiContactsGetByGroupRequest ¶

type ApiContactsGetByGroupRequest struct {
	ApiService *ContactsApiService
	// contains filtered or unexported fields
}

func (ApiContactsGetByGroupRequest) Execute ¶

func (ApiContactsGetByGroupRequest) Skip ¶

func (ApiContactsGetByGroupRequest) Take ¶

type ApiContactsGetListRequest ¶

type ApiContactsGetListRequest struct {
	ApiService *ContactsApiService
	// contains filtered or unexported fields
}

func (ApiContactsGetListRequest) Execute ¶

func (ApiContactsGetListRequest) SearchPattern ¶

func (r ApiContactsGetListRequest) SearchPattern(searchPattern string) ApiContactsGetListRequest

func (ApiContactsGetListRequest) Skip ¶

func (ApiContactsGetListRequest) Take ¶

type ApiContactsGetRequest ¶

type ApiContactsGetRequest struct {
	ApiService *ContactsApiService
	// contains filtered or unexported fields
}

func (ApiContactsGetRequest) Execute ¶

type ApiContactsUpdateRequest ¶

type ApiContactsUpdateRequest struct {
	ApiService *ContactsApiService
	// contains filtered or unexported fields
}

func (ApiContactsUpdateRequest) Execute ¶

func (ApiContactsUpdateRequest) UpdateContactVM ¶

func (r ApiContactsUpdateRequest) UpdateContactVM(updateContactVM UpdateContactVM) ApiContactsUpdateRequest

type ApiDataSourcesCountDataSourcesAsyncRequest ¶

type ApiDataSourcesCountDataSourcesAsyncRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesCountDataSourcesAsyncRequest) Execute ¶

type ApiDataSourcesCreateDataSourceRequest ¶

type ApiDataSourcesCreateDataSourceRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesCreateDataSourceRequest) CreateDataSourceVM ¶

create viewmodel

func (ApiDataSourcesCreateDataSourceRequest) Execute ¶

type ApiDataSourcesDeleteDataSourceRequest ¶

type ApiDataSourcesDeleteDataSourceRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesDeleteDataSourceRequest) Execute ¶

type ApiDataSourcesFetchDataRequest ¶

type ApiDataSourcesFetchDataRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesFetchDataRequest) Execute ¶

type ApiDataSourcesGetAvailableDataSourcesRequest ¶

type ApiDataSourcesGetAvailableDataSourcesRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesGetAvailableDataSourcesRequest) Desc ¶

descending sort

func (ApiDataSourcesGetAvailableDataSourcesRequest) Execute ¶

func (ApiDataSourcesGetAvailableDataSourcesRequest) OrderBy ¶

field to order by

func (ApiDataSourcesGetAvailableDataSourcesRequest) Skip ¶

how many data sources will be skipped

func (ApiDataSourcesGetAvailableDataSourcesRequest) SubscriptionId ¶

subscription id

func (ApiDataSourcesGetAvailableDataSourcesRequest) Take ¶

how many data sources will be taken

type ApiDataSourcesGetDataSourceRequest ¶

type ApiDataSourcesGetDataSourceRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesGetDataSourceRequest) Execute ¶

type ApiDataSourcesGetPermissionsRequest ¶

type ApiDataSourcesGetPermissionsRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesGetPermissionsRequest) Execute ¶

type ApiDataSourcesRenameDataSourceRequest ¶

type ApiDataSourcesRenameDataSourceRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesRenameDataSourceRequest) Execute ¶

func (ApiDataSourcesRenameDataSourceRequest) RenameDataSourceVM ¶

rename viewmodel

type ApiDataSourcesUpdateConnectionStringRequest ¶

type ApiDataSourcesUpdateConnectionStringRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesUpdateConnectionStringRequest) Execute ¶

func (ApiDataSourcesUpdateConnectionStringRequest) UpdateDataSourceConnectionStringVM ¶

func (r ApiDataSourcesUpdateConnectionStringRequest) UpdateDataSourceConnectionStringVM(updateDataSourceConnectionStringVM UpdateDataSourceConnectionStringVM) ApiDataSourcesUpdateConnectionStringRequest

update viewmodel

type ApiDataSourcesUpdatePermissionsRequest ¶

type ApiDataSourcesUpdatePermissionsRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesUpdatePermissionsRequest) Execute ¶

func (ApiDataSourcesUpdatePermissionsRequest) UpdateDataSourcePermissionsVM ¶

func (r ApiDataSourcesUpdatePermissionsRequest) UpdateDataSourcePermissionsVM(updateDataSourcePermissionsVM UpdateDataSourcePermissionsVM) ApiDataSourcesUpdatePermissionsRequest

type ApiDataSourcesUpdateSubscriptionDataSourceRequest ¶

type ApiDataSourcesUpdateSubscriptionDataSourceRequest struct {
	ApiService *DataSourcesApiService
	// contains filtered or unexported fields
}

func (ApiDataSourcesUpdateSubscriptionDataSourceRequest) Execute ¶

func (ApiDataSourcesUpdateSubscriptionDataSourceRequest) UpdateDataSourceSubscriptionVM ¶

update subscription viewmodel

type ApiDownloadGetExportRequest ¶

type ApiDownloadGetExportRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetExportRequest) Execute ¶

func (ApiDownloadGetExportRequest) Preview ¶

type ApiDownloadGetExportThumbnailRequest ¶

type ApiDownloadGetExportThumbnailRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetExportThumbnailRequest) Execute ¶

type ApiDownloadGetExportsRequest ¶

type ApiDownloadGetExportsRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetExportsRequest) Execute ¶

func (ApiDownloadGetExportsRequest) FileIds ¶

ids separated with a &#39;,&#39; sign

func (ApiDownloadGetExportsRequest) FolderIds ¶

ids separated with a &#39;,&#39; sign

type ApiDownloadGetLastSVGExportRequest ¶

type ApiDownloadGetLastSVGExportRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetLastSVGExportRequest) Execute ¶

type ApiDownloadGetReportRequest ¶

type ApiDownloadGetReportRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetReportRequest) Execute ¶

type ApiDownloadGetReportThumbnailRequest ¶

type ApiDownloadGetReportThumbnailRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetReportThumbnailRequest) Execute ¶

type ApiDownloadGetReportsRequest ¶

type ApiDownloadGetReportsRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetReportsRequest) Execute ¶

func (ApiDownloadGetReportsRequest) FileIds ¶

ids separated with a &#39;,&#39; sign

func (ApiDownloadGetReportsRequest) FolderIds ¶

ids separated with a &#39;,&#39; sign

type ApiDownloadGetTemplateRequest ¶

type ApiDownloadGetTemplateRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetTemplateRequest) Execute ¶

type ApiDownloadGetTemplateThumbnailRequest ¶

type ApiDownloadGetTemplateThumbnailRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetTemplateThumbnailRequest) Execute ¶

type ApiDownloadGetTemplatesRequest ¶

type ApiDownloadGetTemplatesRequest struct {
	ApiService *DownloadApiService
	// contains filtered or unexported fields
}

func (ApiDownloadGetTemplatesRequest) Execute ¶

func (ApiDownloadGetTemplatesRequest) FileIds ¶

ids separated with a &#39;,&#39; sign

func (ApiDownloadGetTemplatesRequest) FolderIds ¶

ids separated with a &#39;,&#39; sign

type ApiExportFolderAndFileClearRecycleBinRequest ¶

type ApiExportFolderAndFileClearRecycleBinRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFolderAndFileClearRecycleBinRequest) Execute ¶

type ApiExportFolderAndFileDeleteFilesRequest ¶

type ApiExportFolderAndFileDeleteFilesRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFolderAndFileDeleteFilesRequest) Execute ¶

func (ApiExportFolderAndFileDeleteFilesRequest) SelectedFilesForDeletingVM ¶

VM with files&#39; ids and params of their destination

type ApiExportFolderAndFileGetCountRequest ¶

type ApiExportFolderAndFileGetCountRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFolderAndFileGetCountRequest) Execute ¶

func (ApiExportFolderAndFileGetCountRequest) SearchPattern ¶

string, that must be incuded in file or folder name to be counted &lt;br /&gt; (leave undefined to count all files and folders)

func (ApiExportFolderAndFileGetCountRequest) UseRegex ¶

set this to true if you want to use regular expression to search

type ApiExportFolderAndFileGetFoldersAndFilesRequest ¶

type ApiExportFolderAndFileGetFoldersAndFilesRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) Desc ¶

indicates if sorting is descending

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) Execute ¶

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) OrderBy ¶

indicates a field to sort by

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) SearchPattern ¶

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) Skip ¶

number of folder and files, that have to be skipped

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) Take ¶

number of folder and files, that have to be returned

func (ApiExportFolderAndFileGetFoldersAndFilesRequest) UseRegex ¶

type ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest ¶

type ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Desc ¶

indicates if sorting is descending

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Execute ¶

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) OrderBy ¶

indicates a field to sort by

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) SearchPattern ¶

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Skip ¶

number of folder and files, that have to be skipped

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Take ¶

number of folder and files, that have to be returned

func (ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) UseRegex ¶

type ApiExportFolderAndFileRecoverAllFromRecycleBinRequest ¶

type ApiExportFolderAndFileRecoverAllFromRecycleBinRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFolderAndFileRecoverAllFromRecycleBinRequest) Execute ¶

type ApiExportFoldersCalculateFolderSizeRequest ¶

type ApiExportFoldersCalculateFolderSizeRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersCalculateFolderSizeRequest) Execute ¶

type ApiExportFoldersCopyFolderRequest ¶

type ApiExportFoldersCopyFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersCopyFolderRequest) Execute ¶

type ApiExportFoldersDeleteFolderRequest ¶

type ApiExportFoldersDeleteFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersDeleteFolderRequest) Execute ¶

type ApiExportFoldersGetBreadcrumbsRequest ¶

type ApiExportFoldersGetBreadcrumbsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetBreadcrumbsRequest) Execute ¶

type ApiExportFoldersGetFolderRequest ¶

type ApiExportFoldersGetFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetFolderRequest) Execute ¶

type ApiExportFoldersGetFoldersCountRequest ¶

type ApiExportFoldersGetFoldersCountRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetFoldersCountRequest) Execute ¶

type ApiExportFoldersGetFoldersRequest ¶

type ApiExportFoldersGetFoldersRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetFoldersRequest) Desc ¶

func (ApiExportFoldersGetFoldersRequest) Execute ¶

func (ApiExportFoldersGetFoldersRequest) OrderBy ¶

func (ApiExportFoldersGetFoldersRequest) SearchPattern ¶

func (ApiExportFoldersGetFoldersRequest) Skip ¶

number of files, that have to be skipped

func (ApiExportFoldersGetFoldersRequest) Take ¶

number of files, that have to be returned

func (ApiExportFoldersGetFoldersRequest) UseRegex ¶

type ApiExportFoldersGetOrCreateRequest ¶

type ApiExportFoldersGetOrCreateRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetOrCreateRequest) Execute ¶

func (ApiExportFoldersGetOrCreateRequest) Name ¶

folder name

func (ApiExportFoldersGetOrCreateRequest) ParentId ¶

parent folder id

func (ApiExportFoldersGetOrCreateRequest) SubscriptionId ¶

subscriptionId

type ApiExportFoldersGetPermissionsRequest ¶

type ApiExportFoldersGetPermissionsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetPermissionsRequest) Execute ¶

type ApiExportFoldersGetRootFolderRequest ¶

type ApiExportFoldersGetRootFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersGetRootFolderRequest) Execute ¶

func (ApiExportFoldersGetRootFolderRequest) SubscriptionId ¶

type ApiExportFoldersMoveFolderRequest ¶

type ApiExportFoldersMoveFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersMoveFolderRequest) Execute ¶

type ApiExportFoldersMoveFolderToBinRequest ¶

type ApiExportFoldersMoveFolderToBinRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersMoveFolderToBinRequest) Execute ¶

type ApiExportFoldersPostFolderRequest ¶

type ApiExportFoldersPostFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersPostFolderRequest) Execute ¶

func (ApiExportFoldersPostFolderRequest) ExportFolderCreateVM ¶

create VM

type ApiExportFoldersRecoverFolderRequest ¶

type ApiExportFoldersRecoverFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersRecoverFolderRequest) Execute ¶

func (ApiExportFoldersRecoverFolderRequest) RecoveryPath ¶

type ApiExportFoldersRenameFolderRequest ¶

type ApiExportFoldersRenameFolderRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersRenameFolderRequest) Execute ¶

func (ApiExportFoldersRenameFolderRequest) FolderRenameVM ¶

type ApiExportFoldersUpdateIconRequest ¶

type ApiExportFoldersUpdateIconRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersUpdateIconRequest) Execute ¶

func (ApiExportFoldersUpdateIconRequest) FolderIconVM ¶

Update icon model

type ApiExportFoldersUpdatePermissionsRequest ¶

type ApiExportFoldersUpdatePermissionsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersUpdatePermissionsRequest) Execute ¶

func (ApiExportFoldersUpdatePermissionsRequest) UpdateFilePermissionsVM ¶

type ApiExportFoldersUpdateTagsRequest ¶

type ApiExportFoldersUpdateTagsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportFoldersUpdateTagsRequest) Execute ¶

func (ApiExportFoldersUpdateTagsRequest) FolderTagsUpdateVM ¶

type ApiExportsCopyFileRequest ¶

type ApiExportsCopyFileRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsCopyFileRequest) Execute ¶

type ApiExportsDeleteFileRequest ¶

type ApiExportsDeleteFileRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsDeleteFileRequest) Execute ¶

type ApiExportsGetFileHistoryRequest ¶

type ApiExportsGetFileHistoryRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsGetFileHistoryRequest) Execute ¶

func (ApiExportsGetFileHistoryRequest) Skip ¶

func (ApiExportsGetFileHistoryRequest) Take ¶

type ApiExportsGetFileRequest ¶

type ApiExportsGetFileRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsGetFileRequest) Execute ¶

type ApiExportsGetFilesCountRequest ¶

type ApiExportsGetFilesCountRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsGetFilesCountRequest) Execute ¶

type ApiExportsGetFilesListRequest ¶

type ApiExportsGetFilesListRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsGetFilesListRequest) Desc ¶

func (ApiExportsGetFilesListRequest) Execute ¶

func (ApiExportsGetFilesListRequest) OrderBy ¶

func (ApiExportsGetFilesListRequest) SearchPattern ¶

func (ApiExportsGetFilesListRequest) Skip ¶

number of files, that have to be skipped

func (ApiExportsGetFilesListRequest) Take ¶

number of files, that have to be returned

func (ApiExportsGetFilesListRequest) UseRegex ¶

type ApiExportsGetPermissionsRequest ¶

type ApiExportsGetPermissionsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsGetPermissionsRequest) Execute ¶

type ApiExportsMoveFileRequest ¶

type ApiExportsMoveFileRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsMoveFileRequest) Execute ¶

type ApiExportsMoveFileToBinRequest ¶

type ApiExportsMoveFileToBinRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsMoveFileToBinRequest) Execute ¶

type ApiExportsRecoverFileRequest ¶

type ApiExportsRecoverFileRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsRecoverFileRequest) Execute ¶

func (ApiExportsRecoverFileRequest) RecoveryPath ¶

type ApiExportsRenameFileRequest ¶

type ApiExportsRenameFileRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsRenameFileRequest) Execute ¶

func (ApiExportsRenameFileRequest) FileRenameVM ¶

type ApiExportsUpdateIconRequest ¶

type ApiExportsUpdateIconRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsUpdateIconRequest) Execute ¶

func (ApiExportsUpdateIconRequest) FileIconVM ¶

type ApiExportsUpdatePermissionsRequest ¶

type ApiExportsUpdatePermissionsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsUpdatePermissionsRequest) Execute ¶

func (ApiExportsUpdatePermissionsRequest) UpdateFilePermissionsVM ¶

func (r ApiExportsUpdatePermissionsRequest) UpdateFilePermissionsVM(updateFilePermissionsVM UpdateFilePermissionsVM) ApiExportsUpdatePermissionsRequest

type ApiExportsUpdateTagsRequest ¶

type ApiExportsUpdateTagsRequest struct {
	ApiService *ExportsApiService
	// contains filtered or unexported fields
}

func (ApiExportsUpdateTagsRequest) Execute ¶

func (ApiExportsUpdateTagsRequest) FileTagsUpdateVM ¶

func (r ApiExportsUpdateTagsRequest) FileTagsUpdateVM(fileTagsUpdateVM FileTagsUpdateVM) ApiExportsUpdateTagsRequest

type ApiGroupUsersAddUserToGroupRequest ¶

type ApiGroupUsersAddUserToGroupRequest struct {
	ApiService *GroupUsersApiService
	// contains filtered or unexported fields
}

func (ApiGroupUsersAddUserToGroupRequest) Execute ¶

type ApiGroupUsersGetUsersInGroupRequest ¶

type ApiGroupUsersGetUsersInGroupRequest struct {
	ApiService *GroupUsersApiService
	// contains filtered or unexported fields
}

func (ApiGroupUsersGetUsersInGroupRequest) Execute ¶

func (ApiGroupUsersGetUsersInGroupRequest) Skip ¶

how many to skip

func (ApiGroupUsersGetUsersInGroupRequest) Take ¶

how many to take

type ApiGroupUsersLeaveFromGroupRequest ¶

type ApiGroupUsersLeaveFromGroupRequest struct {
	ApiService *GroupUsersApiService
	// contains filtered or unexported fields
}

func (ApiGroupUsersLeaveFromGroupRequest) Execute ¶

type ApiGroupUsersRemoveFromGroupRequest ¶

type ApiGroupUsersRemoveFromGroupRequest struct {
	ApiService *GroupUsersApiService
	// contains filtered or unexported fields
}

func (ApiGroupUsersRemoveFromGroupRequest) Execute ¶

type ApiGroupsCreateGroupRequest ¶

type ApiGroupsCreateGroupRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsCreateGroupRequest) CreateGroupVM ¶

Model for creating

func (ApiGroupsCreateGroupRequest) Execute ¶

type ApiGroupsDeleteGroupRequest ¶

type ApiGroupsDeleteGroupRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsDeleteGroupRequest) Execute ¶

type ApiGroupsGetGroupListRequest ¶

type ApiGroupsGetGroupListRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsGetGroupListRequest) Execute ¶

func (ApiGroupsGetGroupListRequest) Skip ¶

How many groups need to skip

func (ApiGroupsGetGroupListRequest) Take ¶

How many groups need to take

type ApiGroupsGetGroupRequest ¶

type ApiGroupsGetGroupRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsGetGroupRequest) Execute ¶

type ApiGroupsGetPermissionsRequest ¶

type ApiGroupsGetPermissionsRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsGetPermissionsRequest) Execute ¶

type ApiGroupsRenameGroupRequest ¶

type ApiGroupsRenameGroupRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsRenameGroupRequest) Execute ¶

func (ApiGroupsRenameGroupRequest) RenameGroupVM ¶

Model for renaming

type ApiGroupsUpdatePermissionsRequest ¶

type ApiGroupsUpdatePermissionsRequest struct {
	ApiService *GroupsApiService
	// contains filtered or unexported fields
}

func (ApiGroupsUpdatePermissionsRequest) Execute ¶

func (ApiGroupsUpdatePermissionsRequest) UpdateGroupPermissionsVM ¶

func (r ApiGroupsUpdatePermissionsRequest) UpdateGroupPermissionsVM(updateGroupPermissionsVM UpdateGroupPermissionsVM) ApiGroupsUpdatePermissionsRequest

type ApiHealthCheckDataGetRequest ¶

type ApiHealthCheckDataGetRequest struct {
	ApiService *HealthCheckApiService
	// contains filtered or unexported fields
}

func (ApiHealthCheckDataGetRequest) Execute ¶

type ApiKeyVM ¶

type ApiKeyVM struct {
	Value       NullableString `json:"value,omitempty"`
	Description NullableString `json:"description,omitempty"`
	Expired     *time.Time     `json:"expired,omitempty"`
}

ApiKeyVM struct for ApiKeyVM

func NewApiKeyVM ¶

func NewApiKeyVM() *ApiKeyVM

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

func NewApiKeyVMWithDefaults ¶

func NewApiKeyVMWithDefaults() *ApiKeyVM

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

func (*ApiKeyVM) GetDescription ¶

func (o *ApiKeyVM) GetDescription() string

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

func (*ApiKeyVM) GetDescriptionOk ¶

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

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

func (*ApiKeyVM) GetExpired ¶

func (o *ApiKeyVM) GetExpired() time.Time

GetExpired returns the Expired field value if set, zero value otherwise.

func (*ApiKeyVM) GetExpiredOk ¶

func (o *ApiKeyVM) GetExpiredOk() (*time.Time, bool)

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

func (*ApiKeyVM) GetValue ¶

func (o *ApiKeyVM) GetValue() string

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

func (*ApiKeyVM) GetValueOk ¶

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

func (*ApiKeyVM) HasDescription ¶

func (o *ApiKeyVM) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApiKeyVM) HasExpired ¶

func (o *ApiKeyVM) HasExpired() bool

HasExpired returns a boolean if a field has been set.

func (*ApiKeyVM) HasValue ¶

func (o *ApiKeyVM) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ApiKeyVM) MarshalJSON ¶

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

func (*ApiKeyVM) SetDescription ¶

func (o *ApiKeyVM) SetDescription(v string)

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

func (*ApiKeyVM) SetDescriptionNil ¶

func (o *ApiKeyVM) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ApiKeyVM) SetExpired ¶

func (o *ApiKeyVM) SetExpired(v time.Time)

SetExpired gets a reference to the given time.Time and assigns it to the Expired field.

func (*ApiKeyVM) SetValue ¶

func (o *ApiKeyVM) SetValue(v string)

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

func (*ApiKeyVM) SetValueNil ¶

func (o *ApiKeyVM) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (ApiKeyVM) ToMap ¶

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

func (*ApiKeyVM) UnsetDescription ¶

func (o *ApiKeyVM) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ApiKeyVM) UnsetValue ¶

func (o *ApiKeyVM) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ApiKeysApiService ¶

type ApiKeysApiService service

ApiKeysApiService ApiKeysApi service

func (*ApiKeysApiService) ApiKeysCreateApiKey ¶

func (a *ApiKeysApiService) ApiKeysCreateApiKey(ctx context.Context) ApiApiKeysCreateApiKeyRequest

ApiKeysCreateApiKey Create a new apikey, 5 apikeys for user. Hardcoded for ddos.

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

func (*ApiKeysApiService) ApiKeysCreateApiKeyExecute ¶

func (a *ApiKeysApiService) ApiKeysCreateApiKeyExecute(r ApiApiKeysCreateApiKeyRequest) (*ApiKeyVM, *http.Response, error)

Execute executes the request

@return ApiKeyVM

func (*ApiKeysApiService) ApiKeysDeleteApiKey ¶

func (a *ApiKeysApiService) ApiKeysDeleteApiKey(ctx context.Context) ApiApiKeysDeleteApiKeyRequest

ApiKeysDeleteApiKey Delete an apikey

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

func (*ApiKeysApiService) ApiKeysDeleteApiKeyExecute ¶

func (a *ApiKeysApiService) ApiKeysDeleteApiKeyExecute(r ApiApiKeysDeleteApiKeyRequest) (*http.Response, error)

Execute executes the request

func (*ApiKeysApiService) ApiKeysGetApiKeys ¶

ApiKeysGetApiKeys Returns list with all api keys of current user

Always work, it should make only 200 response (except if user is not authorized).

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

func (*ApiKeysApiService) ApiKeysGetApiKeysExecute ¶

func (a *ApiKeysApiService) ApiKeysGetApiKeysExecute(r ApiApiKeysGetApiKeysRequest) (*ApiKeysVM, *http.Response, error)

Execute executes the request

@return ApiKeysVM

type ApiKeysVM ¶

type ApiKeysVM struct {
	ApiKeys []ApiKeyVM `json:"apiKeys,omitempty"`
	Count   *int64     `json:"count,omitempty"`
}

ApiKeysVM struct for ApiKeysVM

func NewApiKeysVM ¶

func NewApiKeysVM() *ApiKeysVM

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

func NewApiKeysVMWithDefaults ¶

func NewApiKeysVMWithDefaults() *ApiKeysVM

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

func (*ApiKeysVM) GetApiKeys ¶

func (o *ApiKeysVM) GetApiKeys() []ApiKeyVM

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

func (*ApiKeysVM) GetApiKeysOk ¶

func (o *ApiKeysVM) GetApiKeysOk() ([]ApiKeyVM, bool)

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

func (*ApiKeysVM) GetCount ¶

func (o *ApiKeysVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ApiKeysVM) GetCountOk ¶

func (o *ApiKeysVM) GetCountOk() (*int64, bool)

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

func (*ApiKeysVM) HasApiKeys ¶

func (o *ApiKeysVM) HasApiKeys() bool

HasApiKeys returns a boolean if a field has been set.

func (*ApiKeysVM) HasCount ¶

func (o *ApiKeysVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (ApiKeysVM) MarshalJSON ¶

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

func (*ApiKeysVM) SetApiKeys ¶

func (o *ApiKeysVM) SetApiKeys(v []ApiKeyVM)

SetApiKeys gets a reference to the given []ApiKeyVM and assigns it to the ApiKeys field.

func (*ApiKeysVM) SetCount ¶

func (o *ApiKeysVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (ApiKeysVM) ToMap ¶

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

type ApiReportFolderAndFileClearRecycleBinRequest ¶

type ApiReportFolderAndFileClearRecycleBinRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFolderAndFileClearRecycleBinRequest) Execute ¶

type ApiReportFolderAndFileDeleteFilesRequest ¶

type ApiReportFolderAndFileDeleteFilesRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFolderAndFileDeleteFilesRequest) Execute ¶

func (ApiReportFolderAndFileDeleteFilesRequest) SelectedFilesForDeletingVM ¶

VM with files&#39; ids and params of their destination

type ApiReportFolderAndFileGetCountRequest ¶

type ApiReportFolderAndFileGetCountRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFolderAndFileGetCountRequest) Execute ¶

func (ApiReportFolderAndFileGetCountRequest) SearchPattern ¶

string, that must be incuded in file or folder name to be counted &lt;br /&gt; (leave undefined to count all files and folders)

func (ApiReportFolderAndFileGetCountRequest) UseRegex ¶

set this to true if you want to use regular expression to search

type ApiReportFolderAndFileGetFoldersAndFilesRequest ¶

type ApiReportFolderAndFileGetFoldersAndFilesRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) Desc ¶

indicates if sorting is descending

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) Execute ¶

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) OrderBy ¶

indicates a field to sort by

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) SearchPattern ¶

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) Skip ¶

number of folder and files, that have to be skipped

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) Take ¶

number of folder and files, that have to be returned

func (ApiReportFolderAndFileGetFoldersAndFilesRequest) UseRegex ¶

type ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest ¶

type ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Desc ¶

indicates if sorting is descending

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Execute ¶

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) OrderBy ¶

indicates a field to sort by

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) SearchPattern ¶

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Skip ¶

number of folder and files, that have to be skipped

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) Take ¶

number of folder and files, that have to be returned

func (ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) UseRegex ¶

type ApiReportFolderAndFileRecoverAllFromRecycleBinRequest ¶

type ApiReportFolderAndFileRecoverAllFromRecycleBinRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFolderAndFileRecoverAllFromRecycleBinRequest) Execute ¶

type ApiReportFoldersCalculateFolderSizeRequest ¶

type ApiReportFoldersCalculateFolderSizeRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersCalculateFolderSizeRequest) Execute ¶

type ApiReportFoldersCopyFolderRequest ¶

type ApiReportFoldersCopyFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersCopyFolderRequest) Execute ¶

type ApiReportFoldersDeleteFolderRequest ¶

type ApiReportFoldersDeleteFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersDeleteFolderRequest) Execute ¶

type ApiReportFoldersExportRequest ¶

type ApiReportFoldersExportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersExportRequest) Execute ¶

func (ApiReportFoldersExportRequest) ExportReportVM ¶

export parameters

type ApiReportFoldersGetBreadcrumbsRequest ¶

type ApiReportFoldersGetBreadcrumbsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetBreadcrumbsRequest) Execute ¶

type ApiReportFoldersGetFolderRequest ¶

type ApiReportFoldersGetFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetFolderRequest) Execute ¶

type ApiReportFoldersGetFoldersCountRequest ¶

type ApiReportFoldersGetFoldersCountRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetFoldersCountRequest) Execute ¶

type ApiReportFoldersGetFoldersRequest ¶

type ApiReportFoldersGetFoldersRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetFoldersRequest) Desc ¶

func (ApiReportFoldersGetFoldersRequest) Execute ¶

func (ApiReportFoldersGetFoldersRequest) OrderBy ¶

func (ApiReportFoldersGetFoldersRequest) SearchPattern ¶

func (ApiReportFoldersGetFoldersRequest) Skip ¶

number of files, that have to be skipped

func (ApiReportFoldersGetFoldersRequest) Take ¶

number of files, that have to be returned

func (ApiReportFoldersGetFoldersRequest) UseRegex ¶

type ApiReportFoldersGetOrCreateRequest ¶

type ApiReportFoldersGetOrCreateRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetOrCreateRequest) Execute ¶

func (ApiReportFoldersGetOrCreateRequest) Name ¶

folder name

func (ApiReportFoldersGetOrCreateRequest) ParentId ¶

parent folder id

func (ApiReportFoldersGetOrCreateRequest) SubscriptionId ¶

subscriptionId

type ApiReportFoldersGetPermissionsRequest ¶

type ApiReportFoldersGetPermissionsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetPermissionsRequest) Execute ¶

type ApiReportFoldersGetRootFolderRequest ¶

type ApiReportFoldersGetRootFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersGetRootFolderRequest) Execute ¶

func (ApiReportFoldersGetRootFolderRequest) SubscriptionId ¶

type ApiReportFoldersMoveFolderRequest ¶

type ApiReportFoldersMoveFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersMoveFolderRequest) Execute ¶

type ApiReportFoldersMoveFolderToBinRequest ¶

type ApiReportFoldersMoveFolderToBinRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersMoveFolderToBinRequest) Execute ¶

type ApiReportFoldersPostFolderRequest ¶

type ApiReportFoldersPostFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersPostFolderRequest) Execute ¶

func (ApiReportFoldersPostFolderRequest) ReportFolderCreateVM ¶

create VM

type ApiReportFoldersRecoverFolderRequest ¶

type ApiReportFoldersRecoverFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersRecoverFolderRequest) Execute ¶

func (ApiReportFoldersRecoverFolderRequest) RecoveryPath ¶

type ApiReportFoldersRenameFolderRequest ¶

type ApiReportFoldersRenameFolderRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersRenameFolderRequest) Execute ¶

func (ApiReportFoldersRenameFolderRequest) FolderRenameVM ¶

type ApiReportFoldersUpdateIconRequest ¶

type ApiReportFoldersUpdateIconRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersUpdateIconRequest) Execute ¶

func (ApiReportFoldersUpdateIconRequest) FolderIconVM ¶

Update icon model

type ApiReportFoldersUpdatePermissionsRequest ¶

type ApiReportFoldersUpdatePermissionsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersUpdatePermissionsRequest) Execute ¶

func (ApiReportFoldersUpdatePermissionsRequest) UpdateFilePermissionsVM ¶

type ApiReportFoldersUpdateTagsRequest ¶

type ApiReportFoldersUpdateTagsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportFoldersUpdateTagsRequest) Execute ¶

func (ApiReportFoldersUpdateTagsRequest) FolderTagsUpdateVM ¶

type ApiReportsCopyFileRequest ¶

type ApiReportsCopyFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsCopyFileRequest) Execute ¶

type ApiReportsDeleteFileRequest ¶

type ApiReportsDeleteFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsDeleteFileRequest) Execute ¶

type ApiReportsExportRequest ¶

type ApiReportsExportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsExportRequest) Execute ¶

func (ApiReportsExportRequest) ExportReportVM ¶

func (r ApiReportsExportRequest) ExportReportVM(exportReportVM ExportReportVM) ApiReportsExportRequest

export parameters

type ApiReportsGetFileHistoryRequest ¶

type ApiReportsGetFileHistoryRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetFileHistoryRequest) Execute ¶

func (ApiReportsGetFileHistoryRequest) Skip ¶

func (ApiReportsGetFileHistoryRequest) Take ¶

type ApiReportsGetFileRequest ¶

type ApiReportsGetFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetFileRequest) Execute ¶

type ApiReportsGetFilesCountRequest ¶

type ApiReportsGetFilesCountRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetFilesCountRequest) Execute ¶

type ApiReportsGetFilesListRequest ¶

type ApiReportsGetFilesListRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetFilesListRequest) Desc ¶

func (ApiReportsGetFilesListRequest) Execute ¶

func (ApiReportsGetFilesListRequest) OrderBy ¶

func (ApiReportsGetFilesListRequest) SearchPattern ¶

func (ApiReportsGetFilesListRequest) Skip ¶

number of files, that have to be skipped

func (ApiReportsGetFilesListRequest) Take ¶

number of files, that have to be returned

func (ApiReportsGetFilesListRequest) UseRegex ¶

type ApiReportsGetPermissionsRequest ¶

type ApiReportsGetPermissionsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetPermissionsRequest) Execute ¶

type ApiReportsMoveFileRequest ¶

type ApiReportsMoveFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsMoveFileRequest) Execute ¶

type ApiReportsMoveFileToBinRequest ¶

type ApiReportsMoveFileToBinRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsMoveFileToBinRequest) Execute ¶

type ApiReportsRecoverFileRequest ¶

type ApiReportsRecoverFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsRecoverFileRequest) Execute ¶

func (ApiReportsRecoverFileRequest) RecoveryPath ¶

type ApiReportsRenameFileRequest ¶

type ApiReportsRenameFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsRenameFileRequest) Execute ¶

func (ApiReportsRenameFileRequest) FileRenameVM ¶

type ApiReportsStaticPreviewRequest ¶

type ApiReportsStaticPreviewRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsStaticPreviewRequest) Execute ¶

func (ApiReportsStaticPreviewRequest) PreviewReportVM ¶

Model with parameters

type ApiReportsUpdateIconRequest ¶

type ApiReportsUpdateIconRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdateIconRequest) Execute ¶

func (ApiReportsUpdateIconRequest) FileIconVM ¶

type ApiReportsUpdatePermissionsRequest ¶

type ApiReportsUpdatePermissionsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdatePermissionsRequest) Execute ¶

func (ApiReportsUpdatePermissionsRequest) UpdateFilePermissionsVM ¶

func (r ApiReportsUpdatePermissionsRequest) UpdateFilePermissionsVM(updateFilePermissionsVM UpdateFilePermissionsVM) ApiReportsUpdatePermissionsRequest

type ApiReportsUpdateTagsRequest ¶

type ApiReportsUpdateTagsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdateTagsRequest) Execute ¶

func (ApiReportsUpdateTagsRequest) FileTagsUpdateVM ¶

func (r ApiReportsUpdateTagsRequest) FileTagsUpdateVM(fileTagsUpdateVM FileTagsUpdateVM) ApiReportsUpdateTagsRequest

type ApiReportsUploadFileRequest ¶

type ApiReportsUploadFileRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUploadFileRequest) Execute ¶

func (ApiReportsUploadFileRequest) ReportCreateVM ¶

file&#39;s view model

type ApiSubscriptionGroupsCountGroupsAsyncRequest ¶

type ApiSubscriptionGroupsCountGroupsAsyncRequest struct {
	ApiService *SubscriptionGroupsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionGroupsCountGroupsAsyncRequest) Execute ¶

type ApiSubscriptionGroupsGetGroupsListRequest ¶

type ApiSubscriptionGroupsGetGroupsListRequest struct {
	ApiService *SubscriptionGroupsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionGroupsGetGroupsListRequest) Execute ¶

func (ApiSubscriptionGroupsGetGroupsListRequest) UserId ¶

user Id (optional)

type ApiSubscriptionInvitesAcceptInviteRequest ¶

type ApiSubscriptionInvitesAcceptInviteRequest struct {
	ApiService *SubscriptionInvitesApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionInvitesAcceptInviteRequest) Execute ¶

type ApiSubscriptionInvitesCreateInviteRequest ¶

type ApiSubscriptionInvitesCreateInviteRequest struct {
	ApiService *SubscriptionInvitesApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionInvitesCreateInviteRequest) CreateSubscriptionInviteVM ¶

create VM

func (ApiSubscriptionInvitesCreateInviteRequest) Execute ¶

type ApiSubscriptionInvitesDeleteInviteRequest ¶

type ApiSubscriptionInvitesDeleteInviteRequest struct {
	ApiService *SubscriptionInvitesApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionInvitesDeleteInviteRequest) Execute ¶

type ApiSubscriptionInvitesGetInvitesRequest ¶

type ApiSubscriptionInvitesGetInvitesRequest struct {
	ApiService *SubscriptionInvitesApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionInvitesGetInvitesRequest) Execute ¶

type ApiSubscriptionPlansGetSubscriptionPlanRequest ¶

type ApiSubscriptionPlansGetSubscriptionPlanRequest struct {
	ApiService *SubscriptionPlansApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionPlansGetSubscriptionPlanRequest) Execute ¶

type ApiSubscriptionPlansGetSubscriptionPlansRequest ¶

type ApiSubscriptionPlansGetSubscriptionPlansRequest struct {
	ApiService *SubscriptionPlansApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionPlansGetSubscriptionPlansRequest) Execute ¶

func (ApiSubscriptionPlansGetSubscriptionPlansRequest) Skip ¶

Variable for pagination, defautl value is 0

func (ApiSubscriptionPlansGetSubscriptionPlansRequest) Take ¶

Variable for pagination, default value is 10

type ApiSubscriptionUsersAddUserRequest ¶

type ApiSubscriptionUsersAddUserRequest struct {
	ApiService *SubscriptionUsersApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionUsersAddUserRequest) Execute ¶

type ApiSubscriptionUsersCountUsersAsyncRequest ¶

type ApiSubscriptionUsersCountUsersAsyncRequest struct {
	ApiService *SubscriptionUsersApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionUsersCountUsersAsyncRequest) Execute ¶

type ApiSubscriptionUsersGetUsersRequest ¶

type ApiSubscriptionUsersGetUsersRequest struct {
	ApiService *SubscriptionUsersApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionUsersGetUsersRequest) Execute ¶

func (ApiSubscriptionUsersGetUsersRequest) Skip ¶

How many entities skip

func (ApiSubscriptionUsersGetUsersRequest) Take ¶

How many entities take

type ApiSubscriptionUsersLeaveSubscripitonRequest ¶

type ApiSubscriptionUsersLeaveSubscripitonRequest struct {
	ApiService *SubscriptionUsersApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionUsersLeaveSubscripitonRequest) Execute ¶

type ApiSubscriptionUsersRemoveUserRequest ¶

type ApiSubscriptionUsersRemoveUserRequest struct {
	ApiService *SubscriptionUsersApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionUsersRemoveUserRequest) Execute ¶

type ApiSubscriptionsGetDefaultPermissionsRequest ¶

type ApiSubscriptionsGetDefaultPermissionsRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsGetDefaultPermissionsRequest) Execute ¶

type ApiSubscriptionsGetMyPermissionsRequest ¶

type ApiSubscriptionsGetMyPermissionsRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsGetMyPermissionsRequest) Execute ¶

type ApiSubscriptionsGetPermissionsRequest ¶

type ApiSubscriptionsGetPermissionsRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsGetPermissionsRequest) Execute ¶

type ApiSubscriptionsGetSubscriptionRequest ¶

type ApiSubscriptionsGetSubscriptionRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsGetSubscriptionRequest) Execute ¶

type ApiSubscriptionsGetSubscriptionsRequest ¶

type ApiSubscriptionsGetSubscriptionsRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsGetSubscriptionsRequest) Execute ¶

func (ApiSubscriptionsGetSubscriptionsRequest) Skip ¶

Variable for pagination, defautl value is 0

func (ApiSubscriptionsGetSubscriptionsRequest) Take ¶

Variable for pagination, default value is 10

type ApiSubscriptionsRenameSubscriptionRequest ¶

type ApiSubscriptionsRenameSubscriptionRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsRenameSubscriptionRequest) Execute ¶

func (ApiSubscriptionsRenameSubscriptionRequest) RenameSubscriptionVM ¶

rename VM

type ApiSubscriptionsUpdateDefaultPermissionsRequest ¶

type ApiSubscriptionsUpdateDefaultPermissionsRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsUpdateDefaultPermissionsRequest) Execute ¶

func (ApiSubscriptionsUpdateDefaultPermissionsRequest) UpdateDefaultPermissionsVM ¶

update default permissions VM

type ApiSubscriptionsUpdateLocaleRequest ¶

type ApiSubscriptionsUpdateLocaleRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsUpdateLocaleRequest) Execute ¶

func (ApiSubscriptionsUpdateLocaleRequest) UpdateSubscriptionLocaleVM ¶

func (r ApiSubscriptionsUpdateLocaleRequest) UpdateSubscriptionLocaleVM(updateSubscriptionLocaleVM UpdateSubscriptionLocaleVM) ApiSubscriptionsUpdateLocaleRequest

update VM

type ApiSubscriptionsUpdatePermissionsRequest ¶

type ApiSubscriptionsUpdatePermissionsRequest struct {
	ApiService *SubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsUpdatePermissionsRequest) Execute ¶

func (ApiSubscriptionsUpdatePermissionsRequest) UpdateSubscriptionPermissionsVM ¶

func (r ApiSubscriptionsUpdatePermissionsRequest) UpdateSubscriptionPermissionsVM(updateSubscriptionPermissionsVM UpdateSubscriptionPermissionsVM) ApiSubscriptionsUpdatePermissionsRequest

type ApiTasksCreateTaskRequest ¶

type ApiTasksCreateTaskRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksCreateTaskRequest) CreateTaskBaseVM ¶

func (r ApiTasksCreateTaskRequest) CreateTaskBaseVM(createTaskBaseVM CreateTaskBaseVM) ApiTasksCreateTaskRequest

task&#39;s view model. You have to specify task type (type: \&quot;ExportTemplate\&quot;)

func (ApiTasksCreateTaskRequest) Execute ¶

type ApiTasksDeleteTaskRequest ¶

type ApiTasksDeleteTaskRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksDeleteTaskRequest) Execute ¶

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

type ApiTasksGetListRequest ¶

type ApiTasksGetListRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksGetListRequest) Execute ¶

func (r ApiTasksGetListRequest) Execute() (*TasksVM, *http.Response, error)

func (ApiTasksGetListRequest) SearchPattern ¶

func (r ApiTasksGetListRequest) SearchPattern(searchPattern string) ApiTasksGetListRequest

func (ApiTasksGetListRequest) Skip ¶

number of tasks, that have to be skipped

func (ApiTasksGetListRequest) SubscriptionId ¶

func (r ApiTasksGetListRequest) SubscriptionId(subscriptionId string) ApiTasksGetListRequest

subscription id

func (ApiTasksGetListRequest) Take ¶

number of tasks, that have to be returned

type ApiTasksGetPermissionsRequest ¶

type ApiTasksGetPermissionsRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksGetPermissionsRequest) Execute ¶

type ApiTasksGetRequest ¶

type ApiTasksGetRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksGetRequest) Execute ¶

func (r ApiTasksGetRequest) Execute() (*TaskBaseVM, *http.Response, error)

type ApiTasksRenameTaskRequest ¶

type ApiTasksRenameTaskRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksRenameTaskRequest) Execute ¶

func (ApiTasksRenameTaskRequest) NewName ¶

task&#39;s new Name

type ApiTasksRunTaskByIdRequest ¶

type ApiTasksRunTaskByIdRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksRunTaskByIdRequest) Execute ¶

type ApiTasksRunTaskRequest ¶

type ApiTasksRunTaskRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksRunTaskRequest) Execute ¶

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

func (ApiTasksRunTaskRequest) RunTaskBaseVM ¶

func (r ApiTasksRunTaskRequest) RunTaskBaseVM(runTaskBaseVM RunTaskBaseVM) ApiTasksRunTaskRequest

task&#39;s view model

type ApiTasksUpdatePermissionsRequest ¶

type ApiTasksUpdatePermissionsRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksUpdatePermissionsRequest) Execute ¶

func (ApiTasksUpdatePermissionsRequest) UpdateTaskPermissionsVM ¶

func (r ApiTasksUpdatePermissionsRequest) UpdateTaskPermissionsVM(updateTaskPermissionsVM UpdateTaskPermissionsVM) ApiTasksUpdatePermissionsRequest

new permissions

type ApiTasksUpdateTaskRequest ¶

type ApiTasksUpdateTaskRequest struct {
	ApiService *TasksApiService
	// contains filtered or unexported fields
}

func (ApiTasksUpdateTaskRequest) Execute ¶

func (ApiTasksUpdateTaskRequest) UpdateTaskBaseVM ¶

func (r ApiTasksUpdateTaskRequest) UpdateTaskBaseVM(updateTaskBaseVM UpdateTaskBaseVM) ApiTasksUpdateTaskRequest

task&#39;s view model. You have to specify task type (type: \&quot;ExportTemplate\&quot;)

type ApiTemplateFolderAndFileClearRecycleBinRequest ¶

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

func (ApiTemplateFolderAndFileClearRecycleBinRequest) Execute ¶

type ApiTemplateFolderAndFileDeleteFilesRequest ¶

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

func (ApiTemplateFolderAndFileDeleteFilesRequest) Execute ¶

func (ApiTemplateFolderAndFileDeleteFilesRequest) SelectedFilesForDeletingVM ¶

VM with files&#39; ids and params of their destination

type ApiTemplateFolderAndFileGetCountRequest ¶

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

func (ApiTemplateFolderAndFileGetCountRequest) Execute ¶

func (ApiTemplateFolderAndFileGetCountRequest) SearchPattern ¶

string, that must be incuded in file or folder name to be counted &lt;br /&gt; (leave undefined to count all files and folders)

func (ApiTemplateFolderAndFileGetCountRequest) UseRegex ¶

set this to true if you want to use regular expression to search

type ApiTemplateFolderAndFileGetFoldersAndFilesRequest ¶

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

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) Desc ¶

indicates if sorting is descending

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) Execute ¶

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) OrderBy ¶

indicates a field to sort by

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) SearchPattern ¶

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) Skip ¶

number of folder and files, that have to be skipped

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) Take ¶

number of folder and files, that have to be returned

func (ApiTemplateFolderAndFileGetFoldersAndFilesRequest) UseRegex ¶

type ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest ¶

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

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) Desc ¶

indicates if sorting is descending

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) Execute ¶

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) OrderBy ¶

indicates a field to sort by

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) SearchPattern ¶

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) Skip ¶

number of folder and files, that have to be skipped

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) Take ¶

number of folder and files, that have to be returned

func (ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) UseRegex ¶

type ApiTemplateFolderAndFileRecoverAllFromRecycleBinRequest ¶

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

func (ApiTemplateFolderAndFileRecoverAllFromRecycleBinRequest) Execute ¶

type ApiTemplateFoldersCalculateFolderSizeRequest ¶

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

func (ApiTemplateFoldersCalculateFolderSizeRequest) Execute ¶

type ApiTemplateFoldersCopyFolderRequest ¶

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

func (ApiTemplateFoldersCopyFolderRequest) Execute ¶

type ApiTemplateFoldersDeleteFolderRequest ¶

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

func (ApiTemplateFoldersDeleteFolderRequest) Execute ¶

type ApiTemplateFoldersExportRequest ¶

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

func (ApiTemplateFoldersExportRequest) Execute ¶

func (ApiTemplateFoldersExportRequest) ExportTemplateVM ¶

export parameters (string only)

type ApiTemplateFoldersGetBreadcrumbsRequest ¶

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

func (ApiTemplateFoldersGetBreadcrumbsRequest) Execute ¶

type ApiTemplateFoldersGetFolderRequest ¶

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

func (ApiTemplateFoldersGetFolderRequest) Execute ¶

type ApiTemplateFoldersGetFoldersCountRequest ¶

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

func (ApiTemplateFoldersGetFoldersCountRequest) Execute ¶

type ApiTemplateFoldersGetFoldersRequest ¶

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

func (ApiTemplateFoldersGetFoldersRequest) Desc ¶

func (ApiTemplateFoldersGetFoldersRequest) Execute ¶

func (ApiTemplateFoldersGetFoldersRequest) OrderBy ¶

func (ApiTemplateFoldersGetFoldersRequest) SearchPattern ¶

func (ApiTemplateFoldersGetFoldersRequest) Skip ¶

number of files, that have to be skipped

func (ApiTemplateFoldersGetFoldersRequest) Take ¶

number of files, that have to be returned

func (ApiTemplateFoldersGetFoldersRequest) UseRegex ¶

type ApiTemplateFoldersGetOrCreateRequest ¶

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

func (ApiTemplateFoldersGetOrCreateRequest) Execute ¶

func (ApiTemplateFoldersGetOrCreateRequest) Name ¶

folder name

func (ApiTemplateFoldersGetOrCreateRequest) ParentId ¶

parent folder id

func (ApiTemplateFoldersGetOrCreateRequest) SubscriptionId ¶

subscriptionId

type ApiTemplateFoldersGetPermissionsRequest ¶

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

func (ApiTemplateFoldersGetPermissionsRequest) Execute ¶

type ApiTemplateFoldersGetRootFolderRequest ¶

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

func (ApiTemplateFoldersGetRootFolderRequest) Execute ¶

func (ApiTemplateFoldersGetRootFolderRequest) SubscriptionId ¶

type ApiTemplateFoldersMoveFolderRequest ¶

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

func (ApiTemplateFoldersMoveFolderRequest) Execute ¶

type ApiTemplateFoldersMoveFolderToBinRequest ¶

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

func (ApiTemplateFoldersMoveFolderToBinRequest) Execute ¶

type ApiTemplateFoldersPostFolderRequest ¶

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

func (ApiTemplateFoldersPostFolderRequest) Execute ¶

func (ApiTemplateFoldersPostFolderRequest) TemplateFolderCreateVM ¶

create VM

type ApiTemplateFoldersPrepareRequest ¶

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

func (ApiTemplateFoldersPrepareRequest) Execute ¶

func (ApiTemplateFoldersPrepareRequest) PrepareTemplateVM ¶

Template folder prepare view model

type ApiTemplateFoldersRecoverFolderRequest ¶

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

func (ApiTemplateFoldersRecoverFolderRequest) Execute ¶

func (ApiTemplateFoldersRecoverFolderRequest) RecoveryPath ¶

type ApiTemplateFoldersRenameFolderRequest ¶

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

func (ApiTemplateFoldersRenameFolderRequest) Execute ¶

func (ApiTemplateFoldersRenameFolderRequest) FolderRenameVM ¶

type ApiTemplateFoldersUpdateIconRequest ¶

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

func (ApiTemplateFoldersUpdateIconRequest) Execute ¶

func (ApiTemplateFoldersUpdateIconRequest) FolderIconVM ¶

Update icon model

type ApiTemplateFoldersUpdatePermissionsRequest ¶

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

func (ApiTemplateFoldersUpdatePermissionsRequest) Execute ¶

func (ApiTemplateFoldersUpdatePermissionsRequest) UpdateFilePermissionsVM ¶

type ApiTemplateFoldersUpdateTagsRequest ¶

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

func (ApiTemplateFoldersUpdateTagsRequest) Execute ¶

func (ApiTemplateFoldersUpdateTagsRequest) FolderTagsUpdateVM ¶

type ApiTemplatesCopyFileRequest ¶

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

func (ApiTemplatesCopyFileRequest) Execute ¶

type ApiTemplatesDeleteFileRequest ¶

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

func (ApiTemplatesDeleteFileRequest) Execute ¶

type ApiTemplatesExportRequest ¶

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

func (ApiTemplatesExportRequest) Execute ¶

func (ApiTemplatesExportRequest) ExportTemplateVM ¶

func (r ApiTemplatesExportRequest) ExportTemplateVM(exportTemplateVM ExportTemplateVM) ApiTemplatesExportRequest

export parameters (string only)

type ApiTemplatesGetFileHistoryRequest ¶

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

func (ApiTemplatesGetFileHistoryRequest) Execute ¶

func (ApiTemplatesGetFileHistoryRequest) Skip ¶

func (ApiTemplatesGetFileHistoryRequest) Take ¶

type ApiTemplatesGetFileRequest ¶

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

func (ApiTemplatesGetFileRequest) Execute ¶

type ApiTemplatesGetFilesCountRequest ¶

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

func (ApiTemplatesGetFilesCountRequest) Execute ¶

type ApiTemplatesGetFilesListRequest ¶

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

func (ApiTemplatesGetFilesListRequest) Desc ¶

func (ApiTemplatesGetFilesListRequest) Execute ¶

func (ApiTemplatesGetFilesListRequest) OrderBy ¶

func (ApiTemplatesGetFilesListRequest) SearchPattern ¶

func (ApiTemplatesGetFilesListRequest) Skip ¶

number of files, that have to be skipped

func (ApiTemplatesGetFilesListRequest) Take ¶

number of files, that have to be returned

func (ApiTemplatesGetFilesListRequest) UseRegex ¶

type ApiTemplatesGetPermissionsRequest ¶

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

func (ApiTemplatesGetPermissionsRequest) Execute ¶

type ApiTemplatesMoveFileRequest ¶

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

func (ApiTemplatesMoveFileRequest) Execute ¶

type ApiTemplatesMoveFileToBinRequest ¶

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

func (ApiTemplatesMoveFileToBinRequest) Execute ¶

type ApiTemplatesPrepareRequest ¶

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

func (ApiTemplatesPrepareRequest) Execute ¶

func (ApiTemplatesPrepareRequest) PrepareTemplateVM ¶

func (r ApiTemplatesPrepareRequest) PrepareTemplateVM(prepareTemplateVM PrepareTemplateVM) ApiTemplatesPrepareRequest

Template prepare view model

type ApiTemplatesRecoverFileRequest ¶

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

func (ApiTemplatesRecoverFileRequest) Execute ¶

func (ApiTemplatesRecoverFileRequest) RecoveryPath ¶

type ApiTemplatesRenameFileRequest ¶

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

func (ApiTemplatesRenameFileRequest) Execute ¶

func (ApiTemplatesRenameFileRequest) FileRenameVM ¶

type ApiTemplatesStaticPreviewRequest ¶

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

func (ApiTemplatesStaticPreviewRequest) Execute ¶

func (ApiTemplatesStaticPreviewRequest) PreviewTemplateVM ¶

Model with parameters

type ApiTemplatesUpdateContentRequest ¶

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

func (ApiTemplatesUpdateContentRequest) Execute ¶

func (ApiTemplatesUpdateContentRequest) UpdateFileContentVM ¶

VM with only byte[] with new content

type ApiTemplatesUpdateIconRequest ¶

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

func (ApiTemplatesUpdateIconRequest) Execute ¶

func (ApiTemplatesUpdateIconRequest) FileIconVM ¶

type ApiTemplatesUpdatePermissionsRequest ¶

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

func (ApiTemplatesUpdatePermissionsRequest) Execute ¶

func (ApiTemplatesUpdatePermissionsRequest) UpdateFilePermissionsVM ¶

type ApiTemplatesUpdateTagsRequest ¶

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

func (ApiTemplatesUpdateTagsRequest) Execute ¶

func (ApiTemplatesUpdateTagsRequest) FileTagsUpdateVM ¶

type ApiTemplatesUploadFileRequest ¶

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

func (ApiTemplatesUploadFileRequest) Execute ¶

func (ApiTemplatesUploadFileRequest) TemplateCreateVM ¶

file&#39;s view model

type ApiUserNotificationsClearNotificationsRequest ¶

type ApiUserNotificationsClearNotificationsRequest struct {
	ApiService *UserNotificationsApiService
	// contains filtered or unexported fields
}

func (ApiUserNotificationsClearNotificationsRequest) ClearNotificationsVM ¶

func (ApiUserNotificationsClearNotificationsRequest) Execute ¶

type ApiUserNotificationsGetNotificationsRequest ¶

type ApiUserNotificationsGetNotificationsRequest struct {
	ApiService *UserNotificationsApiService
	// contains filtered or unexported fields
}

func (ApiUserNotificationsGetNotificationsRequest) Execute ¶

func (ApiUserNotificationsGetNotificationsRequest) Skip ¶

func (ApiUserNotificationsGetNotificationsRequest) SubscriptionId ¶

func (ApiUserNotificationsGetNotificationsRequest) Take ¶

type ApiUserProfileGetMyProfileRequest ¶

type ApiUserProfileGetMyProfileRequest struct {
	ApiService *UserProfileApiService
	// contains filtered or unexported fields
}

func (ApiUserProfileGetMyProfileRequest) Execute ¶

type ApiUserProfileGetUserProfileRequest ¶

type ApiUserProfileGetUserProfileRequest struct {
	ApiService *UserProfileApiService
	// contains filtered or unexported fields
}

func (ApiUserProfileGetUserProfileRequest) Execute ¶

type ApiUserProfileUpdateMyProfileRequest ¶

type ApiUserProfileUpdateMyProfileRequest struct {
	ApiService *UserProfileApiService
	// contains filtered or unexported fields
}

func (ApiUserProfileUpdateMyProfileRequest) Execute ¶

func (ApiUserProfileUpdateMyProfileRequest) UpdateUserProfileVM ¶

type ApiUserSettingsAcceptAgreementsRequest ¶

type ApiUserSettingsAcceptAgreementsRequest struct {
	ApiService *UserSettingsApiService
	// contains filtered or unexported fields
}

func (ApiUserSettingsAcceptAgreementsRequest) AcceptAgreementsVM ¶

func (ApiUserSettingsAcceptAgreementsRequest) Execute ¶

type ApiUserSettingsGetCurrentUserSettingsRequest ¶

type ApiUserSettingsGetCurrentUserSettingsRequest struct {
	ApiService *UserSettingsApiService
	// contains filtered or unexported fields
}

func (ApiUserSettingsGetCurrentUserSettingsRequest) Execute ¶

type ApiUserSettingsUpdateMySettingsRequest ¶

type ApiUserSettingsUpdateMySettingsRequest struct {
	ApiService *UserSettingsApiService
	// contains filtered or unexported fields
}

func (ApiUserSettingsUpdateMySettingsRequest) Execute ¶

func (ApiUserSettingsUpdateMySettingsRequest) UpdateUserSettingsVM ¶

type AppMixins ¶

type AppMixins struct {
	Head NullableString `json:"head,omitempty"`
	Body NullableString `json:"body,omitempty"`
}

AppMixins struct for AppMixins

func NewAppMixins ¶

func NewAppMixins() *AppMixins

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

func NewAppMixinsWithDefaults ¶

func NewAppMixinsWithDefaults() *AppMixins

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

func (*AppMixins) GetBody ¶

func (o *AppMixins) GetBody() string

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

func (*AppMixins) GetBodyOk ¶

func (o *AppMixins) GetBodyOk() (*string, bool)

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

func (*AppMixins) GetHead ¶

func (o *AppMixins) GetHead() string

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

func (*AppMixins) GetHeadOk ¶

func (o *AppMixins) GetHeadOk() (*string, bool)

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

func (*AppMixins) HasBody ¶

func (o *AppMixins) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*AppMixins) HasHead ¶

func (o *AppMixins) HasHead() bool

HasHead returns a boolean if a field has been set.

func (AppMixins) MarshalJSON ¶

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

func (*AppMixins) SetBody ¶

func (o *AppMixins) SetBody(v string)

SetBody gets a reference to the given NullableString and assigns it to the Body field.

func (*AppMixins) SetBodyNil ¶

func (o *AppMixins) SetBodyNil()

SetBodyNil sets the value for Body to be an explicit nil

func (*AppMixins) SetHead ¶

func (o *AppMixins) SetHead(v string)

SetHead gets a reference to the given NullableString and assigns it to the Head field.

func (*AppMixins) SetHeadNil ¶

func (o *AppMixins) SetHeadNil()

SetHeadNil sets the value for Head to be an explicit nil

func (AppMixins) ToMap ¶

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

func (*AppMixins) UnsetBody ¶

func (o *AppMixins) UnsetBody()

UnsetBody ensures that no value is present for Body, not even an explicit nil

func (*AppMixins) UnsetHead ¶

func (o *AppMixins) UnsetHead()

UnsetHead ensures that no value is present for Head, not even an explicit nil

type AuditActionVM ¶

type AuditActionVM struct {
	UserId         NullableString `json:"userId,omitempty"`
	EntityId       NullableString `json:"entityId,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
	Type           *AuditType     `json:"type,omitempty"`
	Id             NullableString `json:"id,omitempty"`
	CreatedTime    *time.Time     `json:"createdTime,omitempty"`
	CreatorUserId  NullableString `json:"creatorUserId,omitempty"`
	Name           NullableString `json:"name,omitempty"`
	AdminAction    *bool          `json:"adminAction,omitempty"`
	T              string         `json:"$t"`
}

AuditActionVM struct for AuditActionVM

func NewAuditActionVM ¶

func NewAuditActionVM(t string) *AuditActionVM

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

func NewAuditActionVMWithDefaults ¶

func NewAuditActionVMWithDefaults() *AuditActionVM

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

func (*AuditActionVM) GetAdminAction ¶

func (o *AuditActionVM) GetAdminAction() bool

GetAdminAction returns the AdminAction field value if set, zero value otherwise.

func (*AuditActionVM) GetAdminActionOk ¶

func (o *AuditActionVM) GetAdminActionOk() (*bool, bool)

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

func (*AuditActionVM) GetCreatedTime ¶

func (o *AuditActionVM) GetCreatedTime() time.Time

GetCreatedTime returns the CreatedTime field value if set, zero value otherwise.

func (*AuditActionVM) GetCreatedTimeOk ¶

func (o *AuditActionVM) GetCreatedTimeOk() (*time.Time, bool)

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

func (*AuditActionVM) GetCreatorUserId ¶

func (o *AuditActionVM) GetCreatorUserId() string

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

func (*AuditActionVM) GetCreatorUserIdOk ¶

func (o *AuditActionVM) GetCreatorUserIdOk() (*string, bool)

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

func (*AuditActionVM) GetEntityId ¶

func (o *AuditActionVM) GetEntityId() string

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

func (*AuditActionVM) GetEntityIdOk ¶

func (o *AuditActionVM) GetEntityIdOk() (*string, bool)

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

func (*AuditActionVM) GetId ¶

func (o *AuditActionVM) GetId() string

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

func (*AuditActionVM) GetIdOk ¶

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

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

func (*AuditActionVM) GetName ¶

func (o *AuditActionVM) GetName() string

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

func (*AuditActionVM) GetNameOk ¶

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

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

func (*AuditActionVM) GetSubscriptionId ¶

func (o *AuditActionVM) GetSubscriptionId() string

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

func (*AuditActionVM) GetSubscriptionIdOk ¶

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

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

func (*AuditActionVM) GetT ¶

func (o *AuditActionVM) GetT() string

GetT returns the T field value

func (*AuditActionVM) GetTOk ¶

func (o *AuditActionVM) GetTOk() (*string, bool)

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

func (*AuditActionVM) GetType ¶

func (o *AuditActionVM) GetType() AuditType

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

func (*AuditActionVM) GetTypeOk ¶

func (o *AuditActionVM) GetTypeOk() (*AuditType, 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 (*AuditActionVM) GetUserId ¶

func (o *AuditActionVM) GetUserId() string

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

func (*AuditActionVM) GetUserIdOk ¶

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

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

func (*AuditActionVM) HasAdminAction ¶

func (o *AuditActionVM) HasAdminAction() bool

HasAdminAction returns a boolean if a field has been set.

func (*AuditActionVM) HasCreatedTime ¶

func (o *AuditActionVM) HasCreatedTime() bool

HasCreatedTime returns a boolean if a field has been set.

func (*AuditActionVM) HasCreatorUserId ¶

func (o *AuditActionVM) HasCreatorUserId() bool

HasCreatorUserId returns a boolean if a field has been set.

func (*AuditActionVM) HasEntityId ¶

func (o *AuditActionVM) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*AuditActionVM) HasId ¶

func (o *AuditActionVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuditActionVM) HasName ¶

func (o *AuditActionVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*AuditActionVM) HasSubscriptionId ¶

func (o *AuditActionVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*AuditActionVM) HasType ¶

func (o *AuditActionVM) HasType() bool

HasType returns a boolean if a field has been set.

func (*AuditActionVM) HasUserId ¶

func (o *AuditActionVM) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (AuditActionVM) MarshalJSON ¶

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

func (*AuditActionVM) SetAdminAction ¶

func (o *AuditActionVM) SetAdminAction(v bool)

SetAdminAction gets a reference to the given bool and assigns it to the AdminAction field.

func (*AuditActionVM) SetCreatedTime ¶

func (o *AuditActionVM) SetCreatedTime(v time.Time)

SetCreatedTime gets a reference to the given time.Time and assigns it to the CreatedTime field.

func (*AuditActionVM) SetCreatorUserId ¶

func (o *AuditActionVM) SetCreatorUserId(v string)

SetCreatorUserId gets a reference to the given NullableString and assigns it to the CreatorUserId field.

func (*AuditActionVM) SetCreatorUserIdNil ¶

func (o *AuditActionVM) SetCreatorUserIdNil()

SetCreatorUserIdNil sets the value for CreatorUserId to be an explicit nil

func (*AuditActionVM) SetEntityId ¶

func (o *AuditActionVM) SetEntityId(v string)

SetEntityId gets a reference to the given NullableString and assigns it to the EntityId field.

func (*AuditActionVM) SetEntityIdNil ¶

func (o *AuditActionVM) SetEntityIdNil()

SetEntityIdNil sets the value for EntityId to be an explicit nil

func (*AuditActionVM) SetId ¶

func (o *AuditActionVM) SetId(v string)

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

func (*AuditActionVM) SetIdNil ¶

func (o *AuditActionVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*AuditActionVM) SetName ¶

func (o *AuditActionVM) SetName(v string)

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

func (*AuditActionVM) SetNameNil ¶

func (o *AuditActionVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AuditActionVM) SetSubscriptionId ¶

func (o *AuditActionVM) SetSubscriptionId(v string)

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

func (*AuditActionVM) SetSubscriptionIdNil ¶

func (o *AuditActionVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*AuditActionVM) SetT ¶

func (o *AuditActionVM) SetT(v string)

SetT sets field value

func (*AuditActionVM) SetType ¶

func (o *AuditActionVM) SetType(v AuditType)

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

func (*AuditActionVM) SetUserId ¶

func (o *AuditActionVM) SetUserId(v string)

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

func (*AuditActionVM) SetUserIdNil ¶

func (o *AuditActionVM) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (AuditActionVM) ToMap ¶

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

func (*AuditActionVM) UnsetCreatorUserId ¶

func (o *AuditActionVM) UnsetCreatorUserId()

UnsetCreatorUserId ensures that no value is present for CreatorUserId, not even an explicit nil

func (*AuditActionVM) UnsetEntityId ¶

func (o *AuditActionVM) UnsetEntityId()

UnsetEntityId ensures that no value is present for EntityId, not even an explicit nil

func (*AuditActionVM) UnsetId ¶

func (o *AuditActionVM) UnsetId()

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

func (*AuditActionVM) UnsetName ¶

func (o *AuditActionVM) UnsetName()

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

func (*AuditActionVM) UnsetSubscriptionId ¶

func (o *AuditActionVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

func (*AuditActionVM) UnsetUserId ¶

func (o *AuditActionVM) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type AuditActionsVM ¶

type AuditActionsVM struct {
	Items []AuditActionVM `json:"items,omitempty"`
	Count *int64          `json:"count,omitempty"`
	Skip  *int32          `json:"skip,omitempty"`
	Take  *int32          `json:"take,omitempty"`
}

AuditActionsVM struct for AuditActionsVM

func NewAuditActionsVM ¶

func NewAuditActionsVM() *AuditActionsVM

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

func NewAuditActionsVMWithDefaults ¶

func NewAuditActionsVMWithDefaults() *AuditActionsVM

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

func (*AuditActionsVM) GetCount ¶

func (o *AuditActionsVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*AuditActionsVM) GetCountOk ¶

func (o *AuditActionsVM) GetCountOk() (*int64, bool)

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

func (*AuditActionsVM) GetItems ¶

func (o *AuditActionsVM) GetItems() []AuditActionVM

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

func (*AuditActionsVM) GetItemsOk ¶

func (o *AuditActionsVM) GetItemsOk() ([]AuditActionVM, bool)

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

func (*AuditActionsVM) GetSkip ¶

func (o *AuditActionsVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*AuditActionsVM) GetSkipOk ¶

func (o *AuditActionsVM) GetSkipOk() (*int32, bool)

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

func (*AuditActionsVM) GetTake ¶

func (o *AuditActionsVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*AuditActionsVM) GetTakeOk ¶

func (o *AuditActionsVM) GetTakeOk() (*int32, bool)

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

func (*AuditActionsVM) HasCount ¶

func (o *AuditActionsVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*AuditActionsVM) HasItems ¶

func (o *AuditActionsVM) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*AuditActionsVM) HasSkip ¶

func (o *AuditActionsVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*AuditActionsVM) HasTake ¶

func (o *AuditActionsVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (AuditActionsVM) MarshalJSON ¶

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

func (*AuditActionsVM) SetCount ¶

func (o *AuditActionsVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*AuditActionsVM) SetItems ¶

func (o *AuditActionsVM) SetItems(v []AuditActionVM)

SetItems gets a reference to the given []AuditActionVM and assigns it to the Items field.

func (*AuditActionsVM) SetSkip ¶

func (o *AuditActionsVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*AuditActionsVM) SetTake ¶

func (o *AuditActionsVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (AuditActionsVM) ToMap ¶

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

type AuditFilePropertyChangedVM ¶

type AuditFilePropertyChangedVM struct {
	PropertyName NullableString `json:"propertyName,omitempty"`
	OldValue     interface{}    `json:"oldValue,omitempty"`
	NewValue     interface{}    `json:"newValue,omitempty"`
	EntityType   *EntityType    `json:"entityType,omitempty"`
}

AuditFilePropertyChangedVM struct for AuditFilePropertyChangedVM

func NewAuditFilePropertyChangedVM ¶

func NewAuditFilePropertyChangedVM(t string) *AuditFilePropertyChangedVM

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

func NewAuditFilePropertyChangedVMWithDefaults ¶

func NewAuditFilePropertyChangedVMWithDefaults() *AuditFilePropertyChangedVM

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

func (*AuditFilePropertyChangedVM) GetEntityType ¶

func (o *AuditFilePropertyChangedVM) GetEntityType() EntityType

GetEntityType returns the EntityType field value if set, zero value otherwise.

func (*AuditFilePropertyChangedVM) GetEntityTypeOk ¶

func (o *AuditFilePropertyChangedVM) GetEntityTypeOk() (*EntityType, bool)

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

func (*AuditFilePropertyChangedVM) GetNewValue ¶

func (o *AuditFilePropertyChangedVM) GetNewValue() interface{}

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

func (*AuditFilePropertyChangedVM) GetNewValueOk ¶

func (o *AuditFilePropertyChangedVM) GetNewValueOk() (*interface{}, bool)

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

func (*AuditFilePropertyChangedVM) GetOldValue ¶

func (o *AuditFilePropertyChangedVM) GetOldValue() interface{}

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

func (*AuditFilePropertyChangedVM) GetOldValueOk ¶

func (o *AuditFilePropertyChangedVM) GetOldValueOk() (*interface{}, bool)

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

func (*AuditFilePropertyChangedVM) GetPropertyName ¶

func (o *AuditFilePropertyChangedVM) GetPropertyName() string

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

func (*AuditFilePropertyChangedVM) GetPropertyNameOk ¶

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

func (*AuditFilePropertyChangedVM) HasEntityType ¶

func (o *AuditFilePropertyChangedVM) HasEntityType() bool

HasEntityType returns a boolean if a field has been set.

func (*AuditFilePropertyChangedVM) HasNewValue ¶

func (o *AuditFilePropertyChangedVM) HasNewValue() bool

HasNewValue returns a boolean if a field has been set.

func (*AuditFilePropertyChangedVM) HasOldValue ¶

func (o *AuditFilePropertyChangedVM) HasOldValue() bool

HasOldValue returns a boolean if a field has been set.

func (*AuditFilePropertyChangedVM) HasPropertyName ¶

func (o *AuditFilePropertyChangedVM) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (AuditFilePropertyChangedVM) MarshalJSON ¶

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

func (*AuditFilePropertyChangedVM) SetEntityType ¶

func (o *AuditFilePropertyChangedVM) SetEntityType(v EntityType)

SetEntityType gets a reference to the given EntityType and assigns it to the EntityType field.

func (*AuditFilePropertyChangedVM) SetNewValue ¶

func (o *AuditFilePropertyChangedVM) SetNewValue(v interface{})

SetNewValue gets a reference to the given interface{} and assigns it to the NewValue field.

func (*AuditFilePropertyChangedVM) SetOldValue ¶

func (o *AuditFilePropertyChangedVM) SetOldValue(v interface{})

SetOldValue gets a reference to the given interface{} and assigns it to the OldValue field.

func (*AuditFilePropertyChangedVM) SetPropertyName ¶

func (o *AuditFilePropertyChangedVM) SetPropertyName(v string)

SetPropertyName gets a reference to the given NullableString and assigns it to the PropertyName field.

func (*AuditFilePropertyChangedVM) SetPropertyNameNil ¶

func (o *AuditFilePropertyChangedVM) SetPropertyNameNil()

SetPropertyNameNil sets the value for PropertyName to be an explicit nil

func (AuditFilePropertyChangedVM) ToMap ¶

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

func (*AuditFilePropertyChangedVM) UnsetPropertyName ¶

func (o *AuditFilePropertyChangedVM) UnsetPropertyName()

UnsetPropertyName ensures that no value is present for PropertyName, not even an explicit nil

type AuditSubscriptionActionVM ¶

type AuditSubscriptionActionVM struct {
	PeriodStart *time.Time     `json:"periodStart,omitempty"`
	PeriodEnd   *time.Time     `json:"periodEnd,omitempty"`
	PlanId      NullableString `json:"planId,omitempty"`
}

AuditSubscriptionActionVM struct for AuditSubscriptionActionVM

func NewAuditSubscriptionActionVM ¶

func NewAuditSubscriptionActionVM(t string) *AuditSubscriptionActionVM

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

func NewAuditSubscriptionActionVMWithDefaults ¶

func NewAuditSubscriptionActionVMWithDefaults() *AuditSubscriptionActionVM

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

func (*AuditSubscriptionActionVM) GetPeriodEnd ¶

func (o *AuditSubscriptionActionVM) GetPeriodEnd() time.Time

GetPeriodEnd returns the PeriodEnd field value if set, zero value otherwise.

func (*AuditSubscriptionActionVM) GetPeriodEndOk ¶

func (o *AuditSubscriptionActionVM) GetPeriodEndOk() (*time.Time, bool)

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

func (*AuditSubscriptionActionVM) GetPeriodStart ¶

func (o *AuditSubscriptionActionVM) GetPeriodStart() time.Time

GetPeriodStart returns the PeriodStart field value if set, zero value otherwise.

func (*AuditSubscriptionActionVM) GetPeriodStartOk ¶

func (o *AuditSubscriptionActionVM) GetPeriodStartOk() (*time.Time, bool)

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

func (*AuditSubscriptionActionVM) GetPlanId ¶

func (o *AuditSubscriptionActionVM) GetPlanId() string

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

func (*AuditSubscriptionActionVM) GetPlanIdOk ¶

func (o *AuditSubscriptionActionVM) GetPlanIdOk() (*string, bool)

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

func (*AuditSubscriptionActionVM) HasPeriodEnd ¶

func (o *AuditSubscriptionActionVM) HasPeriodEnd() bool

HasPeriodEnd returns a boolean if a field has been set.

func (*AuditSubscriptionActionVM) HasPeriodStart ¶

func (o *AuditSubscriptionActionVM) HasPeriodStart() bool

HasPeriodStart returns a boolean if a field has been set.

func (*AuditSubscriptionActionVM) HasPlanId ¶

func (o *AuditSubscriptionActionVM) HasPlanId() bool

HasPlanId returns a boolean if a field has been set.

func (AuditSubscriptionActionVM) MarshalJSON ¶

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

func (*AuditSubscriptionActionVM) SetPeriodEnd ¶

func (o *AuditSubscriptionActionVM) SetPeriodEnd(v time.Time)

SetPeriodEnd gets a reference to the given time.Time and assigns it to the PeriodEnd field.

func (*AuditSubscriptionActionVM) SetPeriodStart ¶

func (o *AuditSubscriptionActionVM) SetPeriodStart(v time.Time)

SetPeriodStart gets a reference to the given time.Time and assigns it to the PeriodStart field.

func (*AuditSubscriptionActionVM) SetPlanId ¶

func (o *AuditSubscriptionActionVM) SetPlanId(v string)

SetPlanId gets a reference to the given NullableString and assigns it to the PlanId field.

func (*AuditSubscriptionActionVM) SetPlanIdNil ¶

func (o *AuditSubscriptionActionVM) SetPlanIdNil()

SetPlanIdNil sets the value for PlanId to be an explicit nil

func (AuditSubscriptionActionVM) ToMap ¶

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

func (*AuditSubscriptionActionVM) UnsetPlanId ¶

func (o *AuditSubscriptionActionVM) UnsetPlanId()

UnsetPlanId ensures that no value is present for PlanId, not even an explicit nil

type AuditTaskActionVM ¶

type AuditTaskActionVM struct {
	MessageId NullableString `json:"messageId,omitempty"`
}

AuditTaskActionVM struct for AuditTaskActionVM

func NewAuditTaskActionVM ¶

func NewAuditTaskActionVM(t string) *AuditTaskActionVM

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

func NewAuditTaskActionVMWithDefaults ¶

func NewAuditTaskActionVMWithDefaults() *AuditTaskActionVM

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

func (*AuditTaskActionVM) GetMessageId ¶

func (o *AuditTaskActionVM) GetMessageId() string

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

func (*AuditTaskActionVM) GetMessageIdOk ¶

func (o *AuditTaskActionVM) GetMessageIdOk() (*string, bool)

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

func (*AuditTaskActionVM) HasMessageId ¶

func (o *AuditTaskActionVM) HasMessageId() bool

HasMessageId returns a boolean if a field has been set.

func (AuditTaskActionVM) MarshalJSON ¶

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

func (*AuditTaskActionVM) SetMessageId ¶

func (o *AuditTaskActionVM) SetMessageId(v string)

SetMessageId gets a reference to the given NullableString and assigns it to the MessageId field.

func (*AuditTaskActionVM) SetMessageIdNil ¶

func (o *AuditTaskActionVM) SetMessageIdNil()

SetMessageIdNil sets the value for MessageId to be an explicit nil

func (AuditTaskActionVM) ToMap ¶

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

func (*AuditTaskActionVM) UnsetMessageId ¶

func (o *AuditTaskActionVM) UnsetMessageId()

UnsetMessageId ensures that no value is present for MessageId, not even an explicit nil

type AuditType ¶

type AuditType string

AuditType the model 'AuditType'

const (
	TASK_CREATED_EXPORT_TEMPLATE       AuditType = "Task_Created_ExportTemplate"
	TASK_CREATED_EXPORT_REPORT         AuditType = "Task_Created_ExportReport"
	TASK_CREATED_PREPARE_TEMPLATE      AuditType = "Task_Created_PrepareTemplate"
	TASK_CREATED_FETCH                 AuditType = "Task_Created_Fetch"
	TASK_CREATED_EMAIL                 AuditType = "Task_Created_Email"
	TASK_CREATED_WEBHOOK               AuditType = "Task_Created_Webhook"
	TASK_DELETED_EXPORT_TEMPLATE       AuditType = "Task_Deleted_ExportTemplate"
	TASK_DELETED_EXPORT_REPORT         AuditType = "Task_Deleted_ExportReport"
	TASK_DELETED_PREPARE_TEMPLATE      AuditType = "Task_Deleted_PrepareTemplate"
	TASK_DELETED_FETCH                 AuditType = "Task_Deleted_Fetch"
	TASK_DELETED_EMAIL                 AuditType = "Task_Deleted_Email"
	TASK_DELETED_WEBHOOK               AuditType = "Task_Deleted_Webhook"
	TASK_UPDATED_EXPORT_TEMPLATE       AuditType = "Task_Updated_ExportTemplate"
	TASK_UPDATED_EXPORT_REPORT         AuditType = "Task_Updated_ExportReport"
	TASK_UPDATED_PREPARE_TEMPLATE      AuditType = "Task_Updated_PrepareTemplate"
	TASK_UPDATED_FETCH                 AuditType = "Task_Updated_Fetch"
	TASK_UPDATED_EMAIL                 AuditType = "Task_Updated_Email"
	TASK_UPDATED_WEBHOOK               AuditType = "Task_Updated_Webhook"
	TASK_IN_QUEUE_EXPORT_TEMPLATE      AuditType = "Task_InQueue_ExportTemplate"
	TASK_IN_QUEUE_EXPORT_REPORT        AuditType = "Task_InQueue_ExportReport"
	TASK_IN_QUEUE_PREPARE_TEMPLATE     AuditType = "Task_InQueue_PrepareTemplate"
	TASK_IN_QUEUE_FETCH                AuditType = "Task_InQueue_Fetch"
	TASK_IN_QUEUE_EMAIL                AuditType = "Task_InQueue_Email"
	TASK_IN_QUEUE_WEBHOOK              AuditType = "Task_InQueue_Webhook"
	TASK_IN_PROCESS_EXPORT_TEMPLATE    AuditType = "Task_InProcess_ExportTemplate"
	TASK_IN_PROCESS_EXPORT_REPORT      AuditType = "Task_InProcess_ExportReport"
	TASK_IN_PROCESS_PREPARE_TEMPLATE   AuditType = "Task_InProcess_PrepareTemplate"
	TASK_IN_PROCESS_FETCH              AuditType = "Task_InProcess_Fetch"
	TASK_IN_PROCESS_EMAIL              AuditType = "Task_InProcess_Email"
	TASK_IN_PROCESS_WEBHOOK            AuditType = "Task_InProcess_Webhook"
	TASK_SUCCESS_EXPORT_TEMPLATE       AuditType = "Task_Success_ExportTemplate"
	TASK_SUCCESS_EXPORT_REPORT         AuditType = "Task_Success_ExportReport"
	TASK_SUCCESS_PREPARE_TEMPLATE      AuditType = "Task_Success_PrepareTemplate"
	TASK_SUCCESS_FETCH                 AuditType = "Task_Success_Fetch"
	TASK_SUCCESS_EMAIL                 AuditType = "Task_Success_Email"
	TASK_SUCCESS_WEBHOOK               AuditType = "Task_Success_Webhook"
	TASK_FAILED_EXPORT_TEMPLATE        AuditType = "Task_Failed_ExportTemplate"
	TASK_FAILED_EXPORT_REPORT          AuditType = "Task_Failed_ExportReport"
	TASK_FAILED_PREPARE_TEMPLATE       AuditType = "Task_Failed_PrepareTemplate"
	TASK_FAILED_FETCH                  AuditType = "Task_Failed_Fetch"
	TASK_FAILED_EMAIL                  AuditType = "Task_Failed_Email"
	TASK_FAILED_WEBHOOK                AuditType = "Task_Failed_Webhook"
	TASK_CREATED_THUMBNAIL_REPORT      AuditType = "Task_Created_ThumbnailReport"
	TASK_DELETED_THUMBNAIL_REPORT      AuditType = "Task_Deleted_ThumbnailReport"
	TASK_UPDATED_THUMBNAIL_REPORT      AuditType = "Task_Updated_ThumbnailReport"
	TASK_IN_QUEUE_THUMBNAIL_REPORT     AuditType = "Task_InQueue_ThumbnailReport"
	TASK_IN_PROCESS_THUMBNAIL_REPORT   AuditType = "Task_InProcess_ThumbnailReport"
	TASK_SUCCESS_THUMBNAIL_REPORT      AuditType = "Task_Success_ThumbnailReport"
	TASK_FAIL_THUMBNAIL_REPORT         AuditType = "Task_Fail_ThumbnailReport"
	TASK_CREATED_THUMBNAIL_TEMPLATE    AuditType = "Task_Created_ThumbnailTemplate"
	TASK_DELETED_THUMBNAIL_TEMPLATE    AuditType = "Task_Deleted_ThumbnailTemplate"
	TASK_UPDATED_THUMBNAIL_TEMPLATE    AuditType = "Task_Updated_ThumbnailTemplate"
	TASK_IN_QUEUE_THUMBNAIL_TEMPLATE   AuditType = "Task_InQueue_ThumbnailTemplate"
	TASK_IN_PROCESS_THUMBNAIL_TEMPLATE AuditType = "Task_InProcess_ThumbnailTemplate"
	TASK_SUCCESS_THUMBNAIL_TEMPLATE    AuditType = "Task_Success_ThumbnailTemplate"
	TASK_FAIL_THUMBNAIL_TEMPLATE       AuditType = "Task_Fail_ThumbnailTemplate"
	SUBSCRIPTION_RENEWED               AuditType = "Subscription_Renewed"
	SUBSCRIPTION_CREATED               AuditType = "Subscription_Created"
	FILE_RENAMED                       AuditType = "File_Renamed"
	FILE_CONTENT_UPDATED               AuditType = "File_Content_Updated"
	FILE_DELETED                       AuditType = "File_Deleted"
	FILE_MOVED                         AuditType = "File_Moved"
	FILE_COPIED                        AuditType = "File_Copied"
	FILE_TAGS_UPDATED                  AuditType = "File_Tags_Updated"
	FILE_PERMISSIONS_UPDATED           AuditType = "File_Permissions_Updated"
	FILE_RESTORED                      AuditType = "File_Restored"
	FILE_MOVED_TO_BIN                  AuditType = "File_MovedToBin"
	FILE_UPDATED                       AuditType = "File_Updated"
	TASK_CREATED_FTP_UPLOAD            AuditType = "Task_Created_FTPUpload"
	TASK_DELETED_FTP_UPLOAD            AuditType = "Task_Deleted_FTPUpload"
	TASK_UPDATED_FTP_UPLOAD            AuditType = "Task_Updated_FTPUpload"
	TASK_IN_QUEUE_FTP_UPLOAD           AuditType = "Task_InQueue_FTPUpload"
	TASK_IN_PROCESS_FTP_UPLOAD         AuditType = "Task_InProcess_FTPUpload"
	TASK_SUCCESS_FTP_UPLOAD            AuditType = "Task_Success_FTPUpload"
	TASK_FAIL_FTP_UPLOAD               AuditType = "Task_Fail_FTPUpload"
	FILE_CREATED                       AuditType = "File_Created"
)

List of AuditType

func NewAuditTypeFromValue ¶

func NewAuditTypeFromValue(v string) (*AuditType, error)

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

func (AuditType) IsValid ¶

func (v AuditType) IsValid() bool

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

func (AuditType) Ptr ¶

func (v AuditType) Ptr() *AuditType

Ptr returns reference to AuditType value

func (*AuditType) UnmarshalJSON ¶

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

type AuthConfigVM ¶

type AuthConfigVM struct {
	UseLocal  *bool          `json:"useLocal,omitempty"`
	UseOpenId *bool          `json:"useOpenId,omitempty"`
	Authority NullableString `json:"authority,omitempty"`
}

AuthConfigVM struct for AuthConfigVM

func NewAuthConfigVM ¶

func NewAuthConfigVM() *AuthConfigVM

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

func NewAuthConfigVMWithDefaults ¶

func NewAuthConfigVMWithDefaults() *AuthConfigVM

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

func (*AuthConfigVM) GetAuthority ¶

func (o *AuthConfigVM) GetAuthority() string

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

func (*AuthConfigVM) GetAuthorityOk ¶

func (o *AuthConfigVM) GetAuthorityOk() (*string, bool)

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

func (*AuthConfigVM) GetUseLocal ¶

func (o *AuthConfigVM) GetUseLocal() bool

GetUseLocal returns the UseLocal field value if set, zero value otherwise.

func (*AuthConfigVM) GetUseLocalOk ¶

func (o *AuthConfigVM) GetUseLocalOk() (*bool, bool)

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

func (*AuthConfigVM) GetUseOpenId ¶

func (o *AuthConfigVM) GetUseOpenId() bool

GetUseOpenId returns the UseOpenId field value if set, zero value otherwise.

func (*AuthConfigVM) GetUseOpenIdOk ¶

func (o *AuthConfigVM) GetUseOpenIdOk() (*bool, bool)

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

func (*AuthConfigVM) HasAuthority ¶

func (o *AuthConfigVM) HasAuthority() bool

HasAuthority returns a boolean if a field has been set.

func (*AuthConfigVM) HasUseLocal ¶

func (o *AuthConfigVM) HasUseLocal() bool

HasUseLocal returns a boolean if a field has been set.

func (*AuthConfigVM) HasUseOpenId ¶

func (o *AuthConfigVM) HasUseOpenId() bool

HasUseOpenId returns a boolean if a field has been set.

func (AuthConfigVM) MarshalJSON ¶

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

func (*AuthConfigVM) SetAuthority ¶

func (o *AuthConfigVM) SetAuthority(v string)

SetAuthority gets a reference to the given NullableString and assigns it to the Authority field.

func (*AuthConfigVM) SetAuthorityNil ¶

func (o *AuthConfigVM) SetAuthorityNil()

SetAuthorityNil sets the value for Authority to be an explicit nil

func (*AuthConfigVM) SetUseLocal ¶

func (o *AuthConfigVM) SetUseLocal(v bool)

SetUseLocal gets a reference to the given bool and assigns it to the UseLocal field.

func (*AuthConfigVM) SetUseOpenId ¶

func (o *AuthConfigVM) SetUseOpenId(v bool)

SetUseOpenId gets a reference to the given bool and assigns it to the UseOpenId field.

func (AuthConfigVM) ToMap ¶

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

func (*AuthConfigVM) UnsetAuthority ¶

func (o *AuthConfigVM) UnsetAuthority()

UnsetAuthority ensures that no value is present for Authority, not even an explicit nil

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 BreadcrumbsModel struct {
	Id   NullableString `json:"id,omitempty"`
	Name NullableString `json:"name,omitempty"`
}

BreadcrumbsModel struct for BreadcrumbsModel

func NewBreadcrumbsModel ¶

func NewBreadcrumbsModel() *BreadcrumbsModel

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

func NewBreadcrumbsModelWithDefaults ¶

func NewBreadcrumbsModelWithDefaults() *BreadcrumbsModel

NewBreadcrumbsModelWithDefaults instantiates a new BreadcrumbsModel object This constructor 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 *BreadcrumbsModel) GetId() string

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

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

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

func (o *BreadcrumbsModel) GetName() string

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

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

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

func (o *BreadcrumbsModel) HasId() bool

HasId returns a boolean if a field has been set.

func (o *BreadcrumbsModel) HasName() bool

HasName returns a boolean if a field has been set.

func (o BreadcrumbsModel) MarshalJSON() ([]byte, error)
func (o *BreadcrumbsModel) SetId(v string)

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

func (o *BreadcrumbsModel) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (o *BreadcrumbsModel) SetName(v string)

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

func (o *BreadcrumbsModel) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (o BreadcrumbsModel) ToMap() (map[string]interface{}, error)
func (o *BreadcrumbsModel) UnsetId()

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

func (o *BreadcrumbsModel) UnsetName()

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

type BreadcrumbsVM struct {
	Breadcrumbs []BreadcrumbsModel `json:"breadcrumbs,omitempty"`
}

BreadcrumbsVM struct for BreadcrumbsVM

func NewBreadcrumbsVM ¶

func NewBreadcrumbsVM() *BreadcrumbsVM

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

func NewBreadcrumbsVMWithDefaults ¶

func NewBreadcrumbsVMWithDefaults() *BreadcrumbsVM

NewBreadcrumbsVMWithDefaults instantiates a new BreadcrumbsVM object This constructor 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 *BreadcrumbsVM) GetBreadcrumbs() []BreadcrumbsModel

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

func (o *BreadcrumbsVM) GetBreadcrumbsOk() ([]BreadcrumbsModel, bool)

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

func (o *BreadcrumbsVM) HasBreadcrumbs() bool

HasBreadcrumbs returns a boolean if a field has been set.

func (o BreadcrumbsVM) MarshalJSON() ([]byte, error)
func (o *BreadcrumbsVM) SetBreadcrumbs(v []BreadcrumbsModel)

SetBreadcrumbs gets a reference to the given []BreadcrumbsModel and assigns it to the Breadcrumbs field.

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

type ClearNotificationsVM ¶

type ClearNotificationsVM struct {
	Update *bool `json:"update,omitempty"`
}

ClearNotificationsVM struct for ClearNotificationsVM

func NewClearNotificationsVM ¶

func NewClearNotificationsVM() *ClearNotificationsVM

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

func NewClearNotificationsVMWithDefaults ¶

func NewClearNotificationsVMWithDefaults() *ClearNotificationsVM

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

func (*ClearNotificationsVM) GetUpdate ¶

func (o *ClearNotificationsVM) GetUpdate() bool

GetUpdate returns the Update field value if set, zero value otherwise.

func (*ClearNotificationsVM) GetUpdateOk ¶

func (o *ClearNotificationsVM) GetUpdateOk() (*bool, bool)

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

func (*ClearNotificationsVM) HasUpdate ¶

func (o *ClearNotificationsVM) HasUpdate() bool

HasUpdate returns a boolean if a field has been set.

func (ClearNotificationsVM) MarshalJSON ¶

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

func (*ClearNotificationsVM) SetUpdate ¶

func (o *ClearNotificationsVM) SetUpdate(v bool)

SetUpdate gets a reference to the given bool and assigns it to the Update field.

func (ClearNotificationsVM) ToMap ¶

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

type Configuration ¶

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration ¶

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader ¶

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL ¶

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext ¶

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ConfigurationApiService ¶

type ConfigurationApiService service

ConfigurationApiService ConfigurationApi service

func (*ConfigurationApiService) ConfigurationGet ¶

ConfigurationGet returns information about server configuration

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

func (*ConfigurationApiService) ConfigurationGetExecute ¶

Execute executes the request

@return ServerConfigurationVM

type ContactGroupVM ¶

type ContactGroupVM struct {
	Id             NullableString `json:"id,omitempty"`
	Name           NullableString `json:"name,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
	CreatedTime    *time.Time     `json:"createdTime,omitempty"`
	CreatorUserId  NullableString `json:"creatorUserId,omitempty"`
	EditedTime     *time.Time     `json:"editedTime,omitempty"`
	EditorUserId   NullableString `json:"editorUserId,omitempty"`
}

ContactGroupVM struct for ContactGroupVM

func NewContactGroupVM ¶

func NewContactGroupVM() *ContactGroupVM

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

func NewContactGroupVMWithDefaults ¶

func NewContactGroupVMWithDefaults() *ContactGroupVM

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

func (*ContactGroupVM) GetCreatedTime ¶

func (o *ContactGroupVM) GetCreatedTime() time.Time

GetCreatedTime returns the CreatedTime field value if set, zero value otherwise.

func (*ContactGroupVM) GetCreatedTimeOk ¶

func (o *ContactGroupVM) GetCreatedTimeOk() (*time.Time, bool)

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

func (*ContactGroupVM) GetCreatorUserId ¶

func (o *ContactGroupVM) GetCreatorUserId() string

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

func (*ContactGroupVM) GetCreatorUserIdOk ¶

func (o *ContactGroupVM) GetCreatorUserIdOk() (*string, bool)

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

func (*ContactGroupVM) GetEditedTime ¶

func (o *ContactGroupVM) GetEditedTime() time.Time

GetEditedTime returns the EditedTime field value if set, zero value otherwise.

func (*ContactGroupVM) GetEditedTimeOk ¶

func (o *ContactGroupVM) GetEditedTimeOk() (*time.Time, bool)

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

func (*ContactGroupVM) GetEditorUserId ¶

func (o *ContactGroupVM) GetEditorUserId() string

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

func (*ContactGroupVM) GetEditorUserIdOk ¶

func (o *ContactGroupVM) GetEditorUserIdOk() (*string, bool)

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

func (*ContactGroupVM) GetId ¶

func (o *ContactGroupVM) GetId() string

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

func (*ContactGroupVM) GetIdOk ¶

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

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

func (*ContactGroupVM) GetName ¶

func (o *ContactGroupVM) GetName() string

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

func (*ContactGroupVM) GetNameOk ¶

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

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

func (*ContactGroupVM) GetSubscriptionId ¶

func (o *ContactGroupVM) GetSubscriptionId() string

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

func (*ContactGroupVM) GetSubscriptionIdOk ¶

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

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

func (*ContactGroupVM) HasCreatedTime ¶

func (o *ContactGroupVM) HasCreatedTime() bool

HasCreatedTime returns a boolean if a field has been set.

func (*ContactGroupVM) HasCreatorUserId ¶

func (o *ContactGroupVM) HasCreatorUserId() bool

HasCreatorUserId returns a boolean if a field has been set.

func (*ContactGroupVM) HasEditedTime ¶

func (o *ContactGroupVM) HasEditedTime() bool

HasEditedTime returns a boolean if a field has been set.

func (*ContactGroupVM) HasEditorUserId ¶

func (o *ContactGroupVM) HasEditorUserId() bool

HasEditorUserId returns a boolean if a field has been set.

func (*ContactGroupVM) HasId ¶

func (o *ContactGroupVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*ContactGroupVM) HasName ¶

func (o *ContactGroupVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*ContactGroupVM) HasSubscriptionId ¶

func (o *ContactGroupVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (ContactGroupVM) MarshalJSON ¶

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

func (*ContactGroupVM) SetCreatedTime ¶

func (o *ContactGroupVM) SetCreatedTime(v time.Time)

SetCreatedTime gets a reference to the given time.Time and assigns it to the CreatedTime field.

func (*ContactGroupVM) SetCreatorUserId ¶

func (o *ContactGroupVM) SetCreatorUserId(v string)

SetCreatorUserId gets a reference to the given NullableString and assigns it to the CreatorUserId field.

func (*ContactGroupVM) SetCreatorUserIdNil ¶

func (o *ContactGroupVM) SetCreatorUserIdNil()

SetCreatorUserIdNil sets the value for CreatorUserId to be an explicit nil

func (*ContactGroupVM) SetEditedTime ¶

func (o *ContactGroupVM) SetEditedTime(v time.Time)

SetEditedTime gets a reference to the given time.Time and assigns it to the EditedTime field.

func (*ContactGroupVM) SetEditorUserId ¶

func (o *ContactGroupVM) SetEditorUserId(v string)

SetEditorUserId gets a reference to the given NullableString and assigns it to the EditorUserId field.

func (*ContactGroupVM) SetEditorUserIdNil ¶

func (o *ContactGroupVM) SetEditorUserIdNil()

SetEditorUserIdNil sets the value for EditorUserId to be an explicit nil

func (*ContactGroupVM) SetId ¶

func (o *ContactGroupVM) SetId(v string)

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

func (*ContactGroupVM) SetIdNil ¶

func (o *ContactGroupVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ContactGroupVM) SetName ¶

func (o *ContactGroupVM) SetName(v string)

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

func (*ContactGroupVM) SetNameNil ¶

func (o *ContactGroupVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ContactGroupVM) SetSubscriptionId ¶

func (o *ContactGroupVM) SetSubscriptionId(v string)

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

func (*ContactGroupVM) SetSubscriptionIdNil ¶

func (o *ContactGroupVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (ContactGroupVM) ToMap ¶

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

func (*ContactGroupVM) UnsetCreatorUserId ¶

func (o *ContactGroupVM) UnsetCreatorUserId()

UnsetCreatorUserId ensures that no value is present for CreatorUserId, not even an explicit nil

func (*ContactGroupVM) UnsetEditorUserId ¶

func (o *ContactGroupVM) UnsetEditorUserId()

UnsetEditorUserId ensures that no value is present for EditorUserId, not even an explicit nil

func (*ContactGroupVM) UnsetId ¶

func (o *ContactGroupVM) UnsetId()

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

func (*ContactGroupVM) UnsetName ¶

func (o *ContactGroupVM) UnsetName()

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

func (*ContactGroupVM) UnsetSubscriptionId ¶

func (o *ContactGroupVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type ContactGroupsApiService ¶

type ContactGroupsApiService service

ContactGroupsApiService ContactGroupsApi service

func (*ContactGroupsApiService) ContactGroupsCreate ¶

ContactGroupsCreate Creates contact group

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

func (*ContactGroupsApiService) ContactGroupsCreateExecute ¶

Execute executes the request

@return ContactGroupVM

func (*ContactGroupsApiService) ContactGroupsDelete ¶

ContactGroupsDelete Removes contact by id

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

func (*ContactGroupsApiService) ContactGroupsDeleteExecute ¶

func (a *ContactGroupsApiService) ContactGroupsDeleteExecute(r ApiContactGroupsDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ContactGroupsApiService) ContactGroupsGet ¶

ContactGroupsGet Returns contact group by id

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

func (*ContactGroupsApiService) ContactGroupsGetExecute ¶

Execute executes the request

@return ContactGroupVM

func (*ContactGroupsApiService) ContactGroupsGetList ¶

func (a *ContactGroupsApiService) ContactGroupsGetList(ctx context.Context, subscriptionId string) ApiContactGroupsGetListRequest

ContactGroupsGetList Returns contact groups by subscriptionId

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

func (*ContactGroupsApiService) ContactGroupsGetListExecute ¶

Execute executes the request

@return ContactGroupsVM

func (*ContactGroupsApiService) ContactGroupsUpdate ¶

ContactGroupsUpdate Updates contact group by id

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

func (*ContactGroupsApiService) ContactGroupsUpdateExecute ¶

Execute executes the request

@return ContactGroupVM

type ContactGroupsVM ¶

type ContactGroupsVM struct {
	Groups []ContactGroupVM `json:"groups,omitempty"`
	Skip   *int32           `json:"skip,omitempty"`
	Take   *int32           `json:"take,omitempty"`
	Count  *int64           `json:"count,omitempty"`
}

ContactGroupsVM struct for ContactGroupsVM

func NewContactGroupsVM ¶

func NewContactGroupsVM() *ContactGroupsVM

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

func NewContactGroupsVMWithDefaults ¶

func NewContactGroupsVMWithDefaults() *ContactGroupsVM

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

func (*ContactGroupsVM) GetCount ¶

func (o *ContactGroupsVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ContactGroupsVM) GetCountOk ¶

func (o *ContactGroupsVM) GetCountOk() (*int64, bool)

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

func (*ContactGroupsVM) GetGroups ¶

func (o *ContactGroupsVM) GetGroups() []ContactGroupVM

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

func (*ContactGroupsVM) GetGroupsOk ¶

func (o *ContactGroupsVM) GetGroupsOk() ([]ContactGroupVM, bool)

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

func (*ContactGroupsVM) GetSkip ¶

func (o *ContactGroupsVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*ContactGroupsVM) GetSkipOk ¶

func (o *ContactGroupsVM) GetSkipOk() (*int32, bool)

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

func (*ContactGroupsVM) GetTake ¶

func (o *ContactGroupsVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*ContactGroupsVM) GetTakeOk ¶

func (o *ContactGroupsVM) GetTakeOk() (*int32, bool)

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

func (*ContactGroupsVM) HasCount ¶

func (o *ContactGroupsVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ContactGroupsVM) HasGroups ¶

func (o *ContactGroupsVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*ContactGroupsVM) HasSkip ¶

func (o *ContactGroupsVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*ContactGroupsVM) HasTake ¶

func (o *ContactGroupsVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (ContactGroupsVM) MarshalJSON ¶

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

func (*ContactGroupsVM) SetCount ¶

func (o *ContactGroupsVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ContactGroupsVM) SetGroups ¶

func (o *ContactGroupsVM) SetGroups(v []ContactGroupVM)

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

func (*ContactGroupsVM) SetSkip ¶

func (o *ContactGroupsVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*ContactGroupsVM) SetTake ¶

func (o *ContactGroupsVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (ContactGroupsVM) ToMap ¶

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

type ContactVM ¶

type ContactVM struct {
	Id             NullableString `json:"id,omitempty"`
	Name           NullableString `json:"name,omitempty"`
	Email          NullableString `json:"email,omitempty"`
	Groups         []string       `json:"groups,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
	CreatedTime    *time.Time     `json:"createdTime,omitempty"`
	CreatorUserId  NullableString `json:"creatorUserId,omitempty"`
	EditedTime     *time.Time     `json:"editedTime,omitempty"`
	EditorUserId   NullableString `json:"editorUserId,omitempty"`
}

ContactVM struct for ContactVM

func NewContactVM ¶

func NewContactVM() *ContactVM

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

func NewContactVMWithDefaults ¶

func NewContactVMWithDefaults() *ContactVM

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

func (*ContactVM) GetCreatedTime ¶

func (o *ContactVM) GetCreatedTime() time.Time

GetCreatedTime returns the CreatedTime field value if set, zero value otherwise.

func (*ContactVM) GetCreatedTimeOk ¶

func (o *ContactVM) GetCreatedTimeOk() (*time.Time, bool)

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

func (*ContactVM) GetCreatorUserId ¶

func (o *ContactVM) GetCreatorUserId() string

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

func (*ContactVM) GetCreatorUserIdOk ¶

func (o *ContactVM) GetCreatorUserIdOk() (*string, bool)

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

func (*ContactVM) GetEditedTime ¶

func (o *ContactVM) GetEditedTime() time.Time

GetEditedTime returns the EditedTime field value if set, zero value otherwise.

func (*ContactVM) GetEditedTimeOk ¶

func (o *ContactVM) GetEditedTimeOk() (*time.Time, bool)

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

func (*ContactVM) GetEditorUserId ¶

func (o *ContactVM) GetEditorUserId() string

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

func (*ContactVM) GetEditorUserIdOk ¶

func (o *ContactVM) GetEditorUserIdOk() (*string, bool)

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

func (*ContactVM) GetEmail ¶

func (o *ContactVM) GetEmail() string

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

func (*ContactVM) GetEmailOk ¶

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

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

func (*ContactVM) GetGroups ¶

func (o *ContactVM) GetGroups() []string

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

func (*ContactVM) GetGroupsOk ¶

func (o *ContactVM) GetGroupsOk() ([]string, bool)

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

func (*ContactVM) GetId ¶

func (o *ContactVM) GetId() string

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

func (*ContactVM) GetIdOk ¶

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

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

func (*ContactVM) GetName ¶

func (o *ContactVM) GetName() string

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

func (*ContactVM) GetNameOk ¶

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

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

func (*ContactVM) GetSubscriptionId ¶

func (o *ContactVM) GetSubscriptionId() string

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

func (*ContactVM) GetSubscriptionIdOk ¶

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

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

func (*ContactVM) HasCreatedTime ¶

func (o *ContactVM) HasCreatedTime() bool

HasCreatedTime returns a boolean if a field has been set.

func (*ContactVM) HasCreatorUserId ¶

func (o *ContactVM) HasCreatorUserId() bool

HasCreatorUserId returns a boolean if a field has been set.

func (*ContactVM) HasEditedTime ¶

func (o *ContactVM) HasEditedTime() bool

HasEditedTime returns a boolean if a field has been set.

func (*ContactVM) HasEditorUserId ¶

func (o *ContactVM) HasEditorUserId() bool

HasEditorUserId returns a boolean if a field has been set.

func (*ContactVM) HasEmail ¶

func (o *ContactVM) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ContactVM) HasGroups ¶

func (o *ContactVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*ContactVM) HasId ¶

func (o *ContactVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*ContactVM) HasName ¶

func (o *ContactVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*ContactVM) HasSubscriptionId ¶

func (o *ContactVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (ContactVM) MarshalJSON ¶

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

func (*ContactVM) SetCreatedTime ¶

func (o *ContactVM) SetCreatedTime(v time.Time)

SetCreatedTime gets a reference to the given time.Time and assigns it to the CreatedTime field.

func (*ContactVM) SetCreatorUserId ¶

func (o *ContactVM) SetCreatorUserId(v string)

SetCreatorUserId gets a reference to the given NullableString and assigns it to the CreatorUserId field.

func (*ContactVM) SetCreatorUserIdNil ¶

func (o *ContactVM) SetCreatorUserIdNil()

SetCreatorUserIdNil sets the value for CreatorUserId to be an explicit nil

func (*ContactVM) SetEditedTime ¶

func (o *ContactVM) SetEditedTime(v time.Time)

SetEditedTime gets a reference to the given time.Time and assigns it to the EditedTime field.

func (*ContactVM) SetEditorUserId ¶

func (o *ContactVM) SetEditorUserId(v string)

SetEditorUserId gets a reference to the given NullableString and assigns it to the EditorUserId field.

func (*ContactVM) SetEditorUserIdNil ¶

func (o *ContactVM) SetEditorUserIdNil()

SetEditorUserIdNil sets the value for EditorUserId to be an explicit nil

func (*ContactVM) SetEmail ¶

func (o *ContactVM) SetEmail(v string)

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

func (*ContactVM) SetEmailNil ¶

func (o *ContactVM) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*ContactVM) SetGroups ¶

func (o *ContactVM) SetGroups(v []string)

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

func (*ContactVM) SetId ¶

func (o *ContactVM) SetId(v string)

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

func (*ContactVM) SetIdNil ¶

func (o *ContactVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ContactVM) SetName ¶

func (o *ContactVM) SetName(v string)

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

func (*ContactVM) SetNameNil ¶

func (o *ContactVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ContactVM) SetSubscriptionId ¶

func (o *ContactVM) SetSubscriptionId(v string)

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

func (*ContactVM) SetSubscriptionIdNil ¶

func (o *ContactVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (ContactVM) ToMap ¶

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

func (*ContactVM) UnsetCreatorUserId ¶

func (o *ContactVM) UnsetCreatorUserId()

UnsetCreatorUserId ensures that no value is present for CreatorUserId, not even an explicit nil

func (*ContactVM) UnsetEditorUserId ¶

func (o *ContactVM) UnsetEditorUserId()

UnsetEditorUserId ensures that no value is present for EditorUserId, not even an explicit nil

func (*ContactVM) UnsetEmail ¶

func (o *ContactVM) UnsetEmail()

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

func (*ContactVM) UnsetId ¶

func (o *ContactVM) UnsetId()

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

func (*ContactVM) UnsetName ¶

func (o *ContactVM) UnsetName()

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

func (*ContactVM) UnsetSubscriptionId ¶

func (o *ContactVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type ContactsApiService ¶

type ContactsApiService service

ContactsApiService ContactsApi service

func (*ContactsApiService) ContactsCreate ¶

ContactsCreate Creates new contact

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

func (*ContactsApiService) ContactsCreateExecute ¶

func (a *ContactsApiService) ContactsCreateExecute(r ApiContactsCreateRequest) (*ContactVM, *http.Response, error)

Execute executes the request

@return ContactVM

func (*ContactsApiService) ContactsDelete ¶

ContactsDelete Removes contact by id

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

func (*ContactsApiService) ContactsDeleteExecute ¶

func (a *ContactsApiService) ContactsDeleteExecute(r ApiContactsDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ContactsApiService) ContactsGet ¶

ContactsGet Returns contact group by id

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

func (*ContactsApiService) ContactsGetByGroup ¶

func (a *ContactsApiService) ContactsGetByGroup(ctx context.Context, groupId string) ApiContactsGetByGroupRequest

ContactsGetByGroup Returns contacts by group id

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

func (*ContactsApiService) ContactsGetByGroupExecute ¶

func (a *ContactsApiService) ContactsGetByGroupExecute(r ApiContactsGetByGroupRequest) (*ContactsVM, *http.Response, error)

Execute executes the request

@return ContactsVM

func (*ContactsApiService) ContactsGetExecute ¶

func (a *ContactsApiService) ContactsGetExecute(r ApiContactsGetRequest) (*ContactVM, *http.Response, error)

Execute executes the request

@return ContactVM

func (*ContactsApiService) ContactsGetList ¶

func (a *ContactsApiService) ContactsGetList(ctx context.Context, subscriptionId string) ApiContactsGetListRequest

ContactsGetList Allows to search for contacts

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

func (*ContactsApiService) ContactsGetListExecute ¶

func (a *ContactsApiService) ContactsGetListExecute(r ApiContactsGetListRequest) (*ContactsVM, *http.Response, error)

Execute executes the request

@return ContactsVM

func (*ContactsApiService) ContactsUpdate ¶

ContactsUpdate Updates contact by id

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

func (*ContactsApiService) ContactsUpdateExecute ¶

func (a *ContactsApiService) ContactsUpdateExecute(r ApiContactsUpdateRequest) (*ContactVM, *http.Response, error)

Execute executes the request

@return ContactVM

type ContactsVM ¶

type ContactsVM struct {
	Contacts []ContactVM `json:"contacts,omitempty"`
	Skip     *int32      `json:"skip,omitempty"`
	Take     *int32      `json:"take,omitempty"`
	Count    *int64      `json:"count,omitempty"`
}

ContactsVM struct for ContactsVM

func NewContactsVM ¶

func NewContactsVM() *ContactsVM

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

func NewContactsVMWithDefaults ¶

func NewContactsVMWithDefaults() *ContactsVM

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

func (*ContactsVM) GetContacts ¶

func (o *ContactsVM) GetContacts() []ContactVM

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

func (*ContactsVM) GetContactsOk ¶

func (o *ContactsVM) GetContactsOk() ([]ContactVM, bool)

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

func (*ContactsVM) GetCount ¶

func (o *ContactsVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ContactsVM) GetCountOk ¶

func (o *ContactsVM) GetCountOk() (*int64, bool)

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

func (*ContactsVM) GetSkip ¶

func (o *ContactsVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*ContactsVM) GetSkipOk ¶

func (o *ContactsVM) GetSkipOk() (*int32, bool)

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

func (*ContactsVM) GetTake ¶

func (o *ContactsVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*ContactsVM) GetTakeOk ¶

func (o *ContactsVM) GetTakeOk() (*int32, bool)

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

func (*ContactsVM) HasContacts ¶

func (o *ContactsVM) HasContacts() bool

HasContacts returns a boolean if a field has been set.

func (*ContactsVM) HasCount ¶

func (o *ContactsVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ContactsVM) HasSkip ¶

func (o *ContactsVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*ContactsVM) HasTake ¶

func (o *ContactsVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (ContactsVM) MarshalJSON ¶

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

func (*ContactsVM) SetContacts ¶

func (o *ContactsVM) SetContacts(v []ContactVM)

SetContacts gets a reference to the given []ContactVM and assigns it to the Contacts field.

func (*ContactsVM) SetCount ¶

func (o *ContactsVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ContactsVM) SetSkip ¶

func (o *ContactsVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*ContactsVM) SetTake ¶

func (o *ContactsVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (ContactsVM) ToMap ¶

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

type CountVM ¶

type CountVM struct {
	Count *int64 `json:"count,omitempty"`
}

CountVM struct for CountVM

func NewCountVM ¶

func NewCountVM() *CountVM

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

func NewCountVMWithDefaults ¶

func NewCountVMWithDefaults() *CountVM

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

func (*CountVM) GetCount ¶

func (o *CountVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*CountVM) GetCountOk ¶

func (o *CountVM) GetCountOk() (*int64, bool)

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

func (*CountVM) HasCount ¶

func (o *CountVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (CountVM) MarshalJSON ¶

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

func (*CountVM) SetCount ¶

func (o *CountVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (CountVM) ToMap ¶

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

type CreateApiKeyVM ¶

type CreateApiKeyVM struct {
	Description NullableString `json:"description,omitempty"`
	Expired     time.Time      `json:"expired"`
}

CreateApiKeyVM struct for CreateApiKeyVM

func NewCreateApiKeyVM ¶

func NewCreateApiKeyVM(expired time.Time) *CreateApiKeyVM

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

func NewCreateApiKeyVMWithDefaults ¶

func NewCreateApiKeyVMWithDefaults() *CreateApiKeyVM

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

func (*CreateApiKeyVM) GetDescription ¶

func (o *CreateApiKeyVM) GetDescription() string

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

func (*CreateApiKeyVM) GetDescriptionOk ¶

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

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

func (*CreateApiKeyVM) GetExpired ¶

func (o *CreateApiKeyVM) GetExpired() time.Time

GetExpired returns the Expired field value

func (*CreateApiKeyVM) GetExpiredOk ¶

func (o *CreateApiKeyVM) GetExpiredOk() (*time.Time, bool)

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

func (*CreateApiKeyVM) HasDescription ¶

func (o *CreateApiKeyVM) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (CreateApiKeyVM) MarshalJSON ¶

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

func (*CreateApiKeyVM) SetDescription ¶

func (o *CreateApiKeyVM) SetDescription(v string)

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

func (*CreateApiKeyVM) SetDescriptionNil ¶

func (o *CreateApiKeyVM) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*CreateApiKeyVM) SetExpired ¶

func (o *CreateApiKeyVM) SetExpired(v time.Time)

SetExpired sets field value

func (CreateApiKeyVM) ToMap ¶

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

func (*CreateApiKeyVM) UnsetDescription ¶

func (o *CreateApiKeyVM) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type CreateContactGroupVM ¶

type CreateContactGroupVM struct {
	Name           string         `json:"name"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
}

CreateContactGroupVM struct for CreateContactGroupVM

func NewCreateContactGroupVM ¶

func NewCreateContactGroupVM(name string) *CreateContactGroupVM

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

func NewCreateContactGroupVMWithDefaults ¶

func NewCreateContactGroupVMWithDefaults() *CreateContactGroupVM

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

func (*CreateContactGroupVM) GetName ¶

func (o *CreateContactGroupVM) GetName() string

GetName returns the Name field value

func (*CreateContactGroupVM) GetNameOk ¶

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

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

func (*CreateContactGroupVM) GetSubscriptionId ¶

func (o *CreateContactGroupVM) GetSubscriptionId() string

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

func (*CreateContactGroupVM) GetSubscriptionIdOk ¶

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

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

func (*CreateContactGroupVM) HasSubscriptionId ¶

func (o *CreateContactGroupVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (CreateContactGroupVM) MarshalJSON ¶

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

func (*CreateContactGroupVM) SetName ¶

func (o *CreateContactGroupVM) SetName(v string)

SetName sets field value

func (*CreateContactGroupVM) SetSubscriptionId ¶

func (o *CreateContactGroupVM) SetSubscriptionId(v string)

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

func (*CreateContactGroupVM) SetSubscriptionIdNil ¶

func (o *CreateContactGroupVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (CreateContactGroupVM) ToMap ¶

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

func (*CreateContactGroupVM) UnsetSubscriptionId ¶

func (o *CreateContactGroupVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type CreateContactVM ¶

type CreateContactVM struct {
	Name           NullableString `json:"name,omitempty"`
	Email          NullableString `json:"email,omitempty"`
	Groups         []string       `json:"groups,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
}

CreateContactVM struct for CreateContactVM

func NewCreateContactVM ¶

func NewCreateContactVM() *CreateContactVM

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

func NewCreateContactVMWithDefaults ¶

func NewCreateContactVMWithDefaults() *CreateContactVM

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

func (*CreateContactVM) GetEmail ¶

func (o *CreateContactVM) GetEmail() string

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

func (*CreateContactVM) GetEmailOk ¶

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

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

func (*CreateContactVM) GetGroups ¶

func (o *CreateContactVM) GetGroups() []string

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

func (*CreateContactVM) GetGroupsOk ¶

func (o *CreateContactVM) GetGroupsOk() ([]string, bool)

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

func (*CreateContactVM) GetName ¶

func (o *CreateContactVM) GetName() string

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

func (*CreateContactVM) GetNameOk ¶

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

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

func (*CreateContactVM) GetSubscriptionId ¶

func (o *CreateContactVM) GetSubscriptionId() string

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

func (*CreateContactVM) GetSubscriptionIdOk ¶

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

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

func (*CreateContactVM) HasEmail ¶

func (o *CreateContactVM) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*CreateContactVM) HasGroups ¶

func (o *CreateContactVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*CreateContactVM) HasName ¶

func (o *CreateContactVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateContactVM) HasSubscriptionId ¶

func (o *CreateContactVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (CreateContactVM) MarshalJSON ¶

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

func (*CreateContactVM) SetEmail ¶

func (o *CreateContactVM) SetEmail(v string)

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

func (*CreateContactVM) SetEmailNil ¶

func (o *CreateContactVM) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*CreateContactVM) SetGroups ¶

func (o *CreateContactVM) SetGroups(v []string)

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

func (*CreateContactVM) SetName ¶

func (o *CreateContactVM) SetName(v string)

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

func (*CreateContactVM) SetNameNil ¶

func (o *CreateContactVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateContactVM) SetSubscriptionId ¶

func (o *CreateContactVM) SetSubscriptionId(v string)

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

func (*CreateContactVM) SetSubscriptionIdNil ¶

func (o *CreateContactVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (CreateContactVM) ToMap ¶

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

func (*CreateContactVM) UnsetEmail ¶

func (o *CreateContactVM) UnsetEmail()

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

func (*CreateContactVM) UnsetName ¶

func (o *CreateContactVM) UnsetName()

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

func (*CreateContactVM) UnsetSubscriptionId ¶

func (o *CreateContactVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type CreateDataSourceAdminVM ¶

type CreateDataSourceAdminVM struct {
	OwnerId string `json:"ownerId"`
}

CreateDataSourceAdminVM struct for CreateDataSourceAdminVM

func NewCreateDataSourceAdminVM ¶

func NewCreateDataSourceAdminVM(ownerId string, connectionString string, subscriptionId string) *CreateDataSourceAdminVM

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

func NewCreateDataSourceAdminVMWithDefaults ¶

func NewCreateDataSourceAdminVMWithDefaults() *CreateDataSourceAdminVM

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

func (*CreateDataSourceAdminVM) GetOwnerId ¶

func (o *CreateDataSourceAdminVM) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*CreateDataSourceAdminVM) GetOwnerIdOk ¶

func (o *CreateDataSourceAdminVM) GetOwnerIdOk() (*string, bool)

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

func (CreateDataSourceAdminVM) MarshalJSON ¶

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

func (*CreateDataSourceAdminVM) SetOwnerId ¶

func (o *CreateDataSourceAdminVM) SetOwnerId(v string)

SetOwnerId sets field value

func (CreateDataSourceAdminVM) ToMap ¶

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

type CreateDataSourceVM ¶

type CreateDataSourceVM struct {
	Name             NullableString            `json:"name,omitempty"`
	ConnectionString string                    `json:"connectionString"`
	SubscriptionId   string                    `json:"subscriptionId"`
	ConnectionType   *DataSourceConnectionType `json:"connectionType,omitempty"`
}

CreateDataSourceVM struct for CreateDataSourceVM

func NewCreateDataSourceVM ¶

func NewCreateDataSourceVM(connectionString string, subscriptionId string) *CreateDataSourceVM

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

func NewCreateDataSourceVMWithDefaults ¶

func NewCreateDataSourceVMWithDefaults() *CreateDataSourceVM

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

func (*CreateDataSourceVM) GetConnectionString ¶

func (o *CreateDataSourceVM) GetConnectionString() string

GetConnectionString returns the ConnectionString field value

func (*CreateDataSourceVM) GetConnectionStringOk ¶

func (o *CreateDataSourceVM) GetConnectionStringOk() (*string, bool)

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

func (*CreateDataSourceVM) GetConnectionType ¶

func (o *CreateDataSourceVM) GetConnectionType() DataSourceConnectionType

GetConnectionType returns the ConnectionType field value if set, zero value otherwise.

func (*CreateDataSourceVM) GetConnectionTypeOk ¶

func (o *CreateDataSourceVM) GetConnectionTypeOk() (*DataSourceConnectionType, bool)

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

func (*CreateDataSourceVM) GetName ¶

func (o *CreateDataSourceVM) GetName() string

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

func (*CreateDataSourceVM) GetNameOk ¶

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

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

func (*CreateDataSourceVM) GetSubscriptionId ¶

func (o *CreateDataSourceVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value

func (*CreateDataSourceVM) GetSubscriptionIdOk ¶

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

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

func (*CreateDataSourceVM) HasConnectionType ¶

func (o *CreateDataSourceVM) HasConnectionType() bool

HasConnectionType returns a boolean if a field has been set.

func (*CreateDataSourceVM) HasName ¶

func (o *CreateDataSourceVM) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateDataSourceVM) MarshalJSON ¶

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

func (*CreateDataSourceVM) SetConnectionString ¶

func (o *CreateDataSourceVM) SetConnectionString(v string)

SetConnectionString sets field value

func (*CreateDataSourceVM) SetConnectionType ¶

func (o *CreateDataSourceVM) SetConnectionType(v DataSourceConnectionType)

SetConnectionType gets a reference to the given DataSourceConnectionType and assigns it to the ConnectionType field.

func (*CreateDataSourceVM) SetName ¶

func (o *CreateDataSourceVM) SetName(v string)

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

func (*CreateDataSourceVM) SetNameNil ¶

func (o *CreateDataSourceVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateDataSourceVM) SetSubscriptionId ¶

func (o *CreateDataSourceVM) SetSubscriptionId(v string)

SetSubscriptionId sets field value

func (CreateDataSourceVM) ToMap ¶

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

func (*CreateDataSourceVM) UnsetName ¶

func (o *CreateDataSourceVM) UnsetName()

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

type CreateEmailTaskVM ¶

type CreateEmailTaskVM struct {
	Body       NullableString `json:"body,omitempty"`
	EnableSsl  *bool          `json:"enableSsl,omitempty"`
	From       NullableString `json:"from,omitempty"`
	IsBodyHtml *bool          `json:"isBodyHtml,omitempty"`
	Password   NullableString `json:"password,omitempty"`
	Port       *int32         `json:"port,omitempty"`
	Server     NullableString `json:"server,omitempty"`
	Subject    NullableString `json:"subject,omitempty"`
	To         []string       `json:"to,omitempty"`
	Username   NullableString `json:"username,omitempty"`
}

CreateEmailTaskVM struct for CreateEmailTaskVM

func NewCreateEmailTaskVM ¶

func NewCreateEmailTaskVM(t string) *CreateEmailTaskVM

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

func NewCreateEmailTaskVMWithDefaults ¶

func NewCreateEmailTaskVMWithDefaults() *CreateEmailTaskVM

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

func (*CreateEmailTaskVM) GetBody ¶

func (o *CreateEmailTaskVM) GetBody() string

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

func (*CreateEmailTaskVM) GetBodyOk ¶

func (o *CreateEmailTaskVM) GetBodyOk() (*string, bool)

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

func (*CreateEmailTaskVM) GetEnableSsl ¶

func (o *CreateEmailTaskVM) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise.

func (*CreateEmailTaskVM) GetEnableSslOk ¶

func (o *CreateEmailTaskVM) GetEnableSslOk() (*bool, bool)

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

func (*CreateEmailTaskVM) GetFrom ¶

func (o *CreateEmailTaskVM) GetFrom() string

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

func (*CreateEmailTaskVM) GetFromOk ¶

func (o *CreateEmailTaskVM) GetFromOk() (*string, bool)

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

func (*CreateEmailTaskVM) GetIsBodyHtml ¶

func (o *CreateEmailTaskVM) GetIsBodyHtml() bool

GetIsBodyHtml returns the IsBodyHtml field value if set, zero value otherwise.

func (*CreateEmailTaskVM) GetIsBodyHtmlOk ¶

func (o *CreateEmailTaskVM) GetIsBodyHtmlOk() (*bool, bool)

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

func (*CreateEmailTaskVM) GetPassword ¶

func (o *CreateEmailTaskVM) GetPassword() string

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

func (*CreateEmailTaskVM) GetPasswordOk ¶

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

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

func (*CreateEmailTaskVM) GetPort ¶

func (o *CreateEmailTaskVM) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*CreateEmailTaskVM) GetPortOk ¶

func (o *CreateEmailTaskVM) GetPortOk() (*int32, bool)

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

func (*CreateEmailTaskVM) GetServer ¶

func (o *CreateEmailTaskVM) GetServer() string

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

func (*CreateEmailTaskVM) GetServerOk ¶

func (o *CreateEmailTaskVM) GetServerOk() (*string, bool)

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

func (*CreateEmailTaskVM) GetSubject ¶

func (o *CreateEmailTaskVM) GetSubject() string

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

func (*CreateEmailTaskVM) GetSubjectOk ¶

func (o *CreateEmailTaskVM) GetSubjectOk() (*string, bool)

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

func (*CreateEmailTaskVM) GetTo ¶

func (o *CreateEmailTaskVM) GetTo() []string

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

func (*CreateEmailTaskVM) GetToOk ¶

func (o *CreateEmailTaskVM) GetToOk() ([]string, bool)

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

func (*CreateEmailTaskVM) GetUsername ¶

func (o *CreateEmailTaskVM) GetUsername() string

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

func (*CreateEmailTaskVM) GetUsernameOk ¶

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

func (*CreateEmailTaskVM) HasBody ¶

func (o *CreateEmailTaskVM) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasEnableSsl ¶

func (o *CreateEmailTaskVM) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasFrom ¶

func (o *CreateEmailTaskVM) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasIsBodyHtml ¶

func (o *CreateEmailTaskVM) HasIsBodyHtml() bool

HasIsBodyHtml returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasPassword ¶

func (o *CreateEmailTaskVM) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasPort ¶

func (o *CreateEmailTaskVM) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasServer ¶

func (o *CreateEmailTaskVM) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasSubject ¶

func (o *CreateEmailTaskVM) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasTo ¶

func (o *CreateEmailTaskVM) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*CreateEmailTaskVM) HasUsername ¶

func (o *CreateEmailTaskVM) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (CreateEmailTaskVM) MarshalJSON ¶

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

func (*CreateEmailTaskVM) SetBody ¶

func (o *CreateEmailTaskVM) SetBody(v string)

SetBody gets a reference to the given NullableString and assigns it to the Body field.

func (*CreateEmailTaskVM) SetBodyNil ¶

func (o *CreateEmailTaskVM) SetBodyNil()

SetBodyNil sets the value for Body to be an explicit nil

func (*CreateEmailTaskVM) SetEnableSsl ¶

func (o *CreateEmailTaskVM) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given bool and assigns it to the EnableSsl field.

func (*CreateEmailTaskVM) SetFrom ¶

func (o *CreateEmailTaskVM) SetFrom(v string)

SetFrom gets a reference to the given NullableString and assigns it to the From field.

func (*CreateEmailTaskVM) SetFromNil ¶

func (o *CreateEmailTaskVM) SetFromNil()

SetFromNil sets the value for From to be an explicit nil

func (*CreateEmailTaskVM) SetIsBodyHtml ¶

func (o *CreateEmailTaskVM) SetIsBodyHtml(v bool)

SetIsBodyHtml gets a reference to the given bool and assigns it to the IsBodyHtml field.

func (*CreateEmailTaskVM) SetPassword ¶

func (o *CreateEmailTaskVM) SetPassword(v string)

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

func (*CreateEmailTaskVM) SetPasswordNil ¶

func (o *CreateEmailTaskVM) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*CreateEmailTaskVM) SetPort ¶

func (o *CreateEmailTaskVM) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*CreateEmailTaskVM) SetServer ¶

func (o *CreateEmailTaskVM) SetServer(v string)

SetServer gets a reference to the given NullableString and assigns it to the Server field.

func (*CreateEmailTaskVM) SetServerNil ¶

func (o *CreateEmailTaskVM) SetServerNil()

SetServerNil sets the value for Server to be an explicit nil

func (*CreateEmailTaskVM) SetSubject ¶

func (o *CreateEmailTaskVM) SetSubject(v string)

SetSubject gets a reference to the given NullableString and assigns it to the Subject field.

func (*CreateEmailTaskVM) SetSubjectNil ¶

func (o *CreateEmailTaskVM) SetSubjectNil()

SetSubjectNil sets the value for Subject to be an explicit nil

func (*CreateEmailTaskVM) SetTo ¶

func (o *CreateEmailTaskVM) SetTo(v []string)

SetTo gets a reference to the given []string and assigns it to the To field.

func (*CreateEmailTaskVM) SetUsername ¶

func (o *CreateEmailTaskVM) SetUsername(v string)

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

func (*CreateEmailTaskVM) SetUsernameNil ¶

func (o *CreateEmailTaskVM) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (CreateEmailTaskVM) ToMap ¶

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

func (*CreateEmailTaskVM) UnsetBody ¶

func (o *CreateEmailTaskVM) UnsetBody()

UnsetBody ensures that no value is present for Body, not even an explicit nil

func (*CreateEmailTaskVM) UnsetFrom ¶

func (o *CreateEmailTaskVM) UnsetFrom()

UnsetFrom ensures that no value is present for From, not even an explicit nil

func (*CreateEmailTaskVM) UnsetPassword ¶

func (o *CreateEmailTaskVM) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*CreateEmailTaskVM) UnsetServer ¶

func (o *CreateEmailTaskVM) UnsetServer()

UnsetServer ensures that no value is present for Server, not even an explicit nil

func (*CreateEmailTaskVM) UnsetSubject ¶

func (o *CreateEmailTaskVM) UnsetSubject()

UnsetSubject ensures that no value is present for Subject, not even an explicit nil

func (*CreateEmailTaskVM) UnsetUsername ¶

func (o *CreateEmailTaskVM) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type CreateExportReportTaskVM ¶

type CreateExportReportTaskVM struct {
	ExportParameters map[string]string `json:"exportParameters,omitempty"`
	Format           *ExportFormat     `json:"format,omitempty"`
	PagesCount       *int32            `json:"pagesCount,omitempty"`
	T                string            `json:"$t"`
}

CreateExportReportTaskVM struct for CreateExportReportTaskVM

func NewCreateExportReportTaskVM ¶

func NewCreateExportReportTaskVM(t string) *CreateExportReportTaskVM

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

func NewCreateExportReportTaskVMWithDefaults ¶

func NewCreateExportReportTaskVMWithDefaults() *CreateExportReportTaskVM

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

func (*CreateExportReportTaskVM) GetExportParameters ¶

func (o *CreateExportReportTaskVM) GetExportParameters() map[string]string

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

func (*CreateExportReportTaskVM) GetExportParametersOk ¶

func (o *CreateExportReportTaskVM) GetExportParametersOk() (*map[string]string, bool)

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

func (*CreateExportReportTaskVM) GetFormat ¶

func (o *CreateExportReportTaskVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*CreateExportReportTaskVM) GetFormatOk ¶

func (o *CreateExportReportTaskVM) GetFormatOk() (*ExportFormat, bool)

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

func (*CreateExportReportTaskVM) GetPagesCount ¶

func (o *CreateExportReportTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise.

func (*CreateExportReportTaskVM) GetPagesCountOk ¶

func (o *CreateExportReportTaskVM) GetPagesCountOk() (*int32, bool)

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

func (*CreateExportReportTaskVM) GetT ¶

func (o *CreateExportReportTaskVM) GetT() string

GetT returns the T field value

func (*CreateExportReportTaskVM) GetTOk ¶

func (o *CreateExportReportTaskVM) GetTOk() (*string, bool)

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

func (*CreateExportReportTaskVM) HasExportParameters ¶

func (o *CreateExportReportTaskVM) HasExportParameters() bool

HasExportParameters returns a boolean if a field has been set.

func (*CreateExportReportTaskVM) HasFormat ¶

func (o *CreateExportReportTaskVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*CreateExportReportTaskVM) HasPagesCount ¶

func (o *CreateExportReportTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (CreateExportReportTaskVM) MarshalJSON ¶

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

func (*CreateExportReportTaskVM) SetExportParameters ¶

func (o *CreateExportReportTaskVM) SetExportParameters(v map[string]string)

SetExportParameters gets a reference to the given map[string]string and assigns it to the ExportParameters field.

func (*CreateExportReportTaskVM) SetFormat ¶

func (o *CreateExportReportTaskVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given ExportFormat and assigns it to the Format field.

func (*CreateExportReportTaskVM) SetPagesCount ¶

func (o *CreateExportReportTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given int32 and assigns it to the PagesCount field.

func (*CreateExportReportTaskVM) SetT ¶

func (o *CreateExportReportTaskVM) SetT(v string)

SetT sets field value

func (CreateExportReportTaskVM) ToMap ¶

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

type CreateExportTemplateTaskVM ¶

type CreateExportTemplateTaskVM struct {
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

CreateExportTemplateTaskVM struct for CreateExportTemplateTaskVM

func NewCreateExportTemplateTaskVM ¶

func NewCreateExportTemplateTaskVM(t string) *CreateExportTemplateTaskVM

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

func NewCreateExportTemplateTaskVMWithDefaults ¶

func NewCreateExportTemplateTaskVMWithDefaults() *CreateExportTemplateTaskVM

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

func (*CreateExportTemplateTaskVM) GetReportParameters ¶

func (o *CreateExportTemplateTaskVM) GetReportParameters() map[string]string

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

func (*CreateExportTemplateTaskVM) GetReportParametersOk ¶

func (o *CreateExportTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

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

func (*CreateExportTemplateTaskVM) HasReportParameters ¶

func (o *CreateExportTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (CreateExportTemplateTaskVM) MarshalJSON ¶

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

func (*CreateExportTemplateTaskVM) SetReportParameters ¶

func (o *CreateExportTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (CreateExportTemplateTaskVM) ToMap ¶

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

type CreateFTPUploadTaskVM ¶

type CreateFTPUploadTaskVM struct {
	Archive           *bool          `json:"archive,omitempty"`
	ArchiveName       NullableString `json:"archiveName,omitempty"`
	DestinationFolder NullableString `json:"destinationFolder,omitempty"`
	FtpHost           NullableString `json:"ftpHost,omitempty"`
	FtpPassword       NullableString `json:"ftpPassword,omitempty"`
	FtpPort           *int32         `json:"ftpPort,omitempty"`
	FtpUsername       NullableString `json:"ftpUsername,omitempty"`
	UseSFTP           *bool          `json:"useSFTP,omitempty"`
}

CreateFTPUploadTaskVM struct for CreateFTPUploadTaskVM

func NewCreateFTPUploadTaskVM ¶

func NewCreateFTPUploadTaskVM(t string) *CreateFTPUploadTaskVM

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

func NewCreateFTPUploadTaskVMWithDefaults ¶

func NewCreateFTPUploadTaskVMWithDefaults() *CreateFTPUploadTaskVM

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

func (*CreateFTPUploadTaskVM) GetArchive ¶

func (o *CreateFTPUploadTaskVM) GetArchive() bool

GetArchive returns the Archive field value if set, zero value otherwise.

func (*CreateFTPUploadTaskVM) GetArchiveName ¶

func (o *CreateFTPUploadTaskVM) GetArchiveName() string

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

func (*CreateFTPUploadTaskVM) GetArchiveNameOk ¶

func (o *CreateFTPUploadTaskVM) GetArchiveNameOk() (*string, bool)

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

func (*CreateFTPUploadTaskVM) GetArchiveOk ¶

func (o *CreateFTPUploadTaskVM) GetArchiveOk() (*bool, bool)

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

func (*CreateFTPUploadTaskVM) GetDestinationFolder ¶

func (o *CreateFTPUploadTaskVM) GetDestinationFolder() string

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

func (*CreateFTPUploadTaskVM) GetDestinationFolderOk ¶

func (o *CreateFTPUploadTaskVM) GetDestinationFolderOk() (*string, bool)

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

func (*CreateFTPUploadTaskVM) GetFtpHost ¶

func (o *CreateFTPUploadTaskVM) GetFtpHost() string

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

func (*CreateFTPUploadTaskVM) GetFtpHostOk ¶

func (o *CreateFTPUploadTaskVM) GetFtpHostOk() (*string, bool)

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

func (*CreateFTPUploadTaskVM) GetFtpPassword ¶

func (o *CreateFTPUploadTaskVM) GetFtpPassword() string

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

func (*CreateFTPUploadTaskVM) GetFtpPasswordOk ¶

func (o *CreateFTPUploadTaskVM) GetFtpPasswordOk() (*string, bool)

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

func (*CreateFTPUploadTaskVM) GetFtpPort ¶

func (o *CreateFTPUploadTaskVM) GetFtpPort() int32

GetFtpPort returns the FtpPort field value if set, zero value otherwise.

func (*CreateFTPUploadTaskVM) GetFtpPortOk ¶

func (o *CreateFTPUploadTaskVM) GetFtpPortOk() (*int32, bool)

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

func (*CreateFTPUploadTaskVM) GetFtpUsername ¶

func (o *CreateFTPUploadTaskVM) GetFtpUsername() string

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

func (*CreateFTPUploadTaskVM) GetFtpUsernameOk ¶

func (o *CreateFTPUploadTaskVM) GetFtpUsernameOk() (*string, bool)

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

func (*CreateFTPUploadTaskVM) GetUseSFTP ¶

func (o *CreateFTPUploadTaskVM) GetUseSFTP() bool

GetUseSFTP returns the UseSFTP field value if set, zero value otherwise.

func (*CreateFTPUploadTaskVM) GetUseSFTPOk ¶

func (o *CreateFTPUploadTaskVM) GetUseSFTPOk() (*bool, bool)

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

func (*CreateFTPUploadTaskVM) HasArchive ¶

func (o *CreateFTPUploadTaskVM) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasArchiveName ¶

func (o *CreateFTPUploadTaskVM) HasArchiveName() bool

HasArchiveName returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasDestinationFolder ¶

func (o *CreateFTPUploadTaskVM) HasDestinationFolder() bool

HasDestinationFolder returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasFtpHost ¶

func (o *CreateFTPUploadTaskVM) HasFtpHost() bool

HasFtpHost returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasFtpPassword ¶

func (o *CreateFTPUploadTaskVM) HasFtpPassword() bool

HasFtpPassword returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasFtpPort ¶

func (o *CreateFTPUploadTaskVM) HasFtpPort() bool

HasFtpPort returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasFtpUsername ¶

func (o *CreateFTPUploadTaskVM) HasFtpUsername() bool

HasFtpUsername returns a boolean if a field has been set.

func (*CreateFTPUploadTaskVM) HasUseSFTP ¶

func (o *CreateFTPUploadTaskVM) HasUseSFTP() bool

HasUseSFTP returns a boolean if a field has been set.

func (CreateFTPUploadTaskVM) MarshalJSON ¶

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

func (*CreateFTPUploadTaskVM) SetArchive ¶

func (o *CreateFTPUploadTaskVM) SetArchive(v bool)

SetArchive gets a reference to the given bool and assigns it to the Archive field.

func (*CreateFTPUploadTaskVM) SetArchiveName ¶

func (o *CreateFTPUploadTaskVM) SetArchiveName(v string)

SetArchiveName gets a reference to the given NullableString and assigns it to the ArchiveName field.

func (*CreateFTPUploadTaskVM) SetArchiveNameNil ¶

func (o *CreateFTPUploadTaskVM) SetArchiveNameNil()

SetArchiveNameNil sets the value for ArchiveName to be an explicit nil

func (*CreateFTPUploadTaskVM) SetDestinationFolder ¶

func (o *CreateFTPUploadTaskVM) SetDestinationFolder(v string)

SetDestinationFolder gets a reference to the given NullableString and assigns it to the DestinationFolder field.

func (*CreateFTPUploadTaskVM) SetDestinationFolderNil ¶

func (o *CreateFTPUploadTaskVM) SetDestinationFolderNil()

SetDestinationFolderNil sets the value for DestinationFolder to be an explicit nil

func (*CreateFTPUploadTaskVM) SetFtpHost ¶

func (o *CreateFTPUploadTaskVM) SetFtpHost(v string)

SetFtpHost gets a reference to the given NullableString and assigns it to the FtpHost field.

func (*CreateFTPUploadTaskVM) SetFtpHostNil ¶

func (o *CreateFTPUploadTaskVM) SetFtpHostNil()

SetFtpHostNil sets the value for FtpHost to be an explicit nil

func (*CreateFTPUploadTaskVM) SetFtpPassword ¶

func (o *CreateFTPUploadTaskVM) SetFtpPassword(v string)

SetFtpPassword gets a reference to the given NullableString and assigns it to the FtpPassword field.

func (*CreateFTPUploadTaskVM) SetFtpPasswordNil ¶

func (o *CreateFTPUploadTaskVM) SetFtpPasswordNil()

SetFtpPasswordNil sets the value for FtpPassword to be an explicit nil

func (*CreateFTPUploadTaskVM) SetFtpPort ¶

func (o *CreateFTPUploadTaskVM) SetFtpPort(v int32)

SetFtpPort gets a reference to the given int32 and assigns it to the FtpPort field.

func (*CreateFTPUploadTaskVM) SetFtpUsername ¶

func (o *CreateFTPUploadTaskVM) SetFtpUsername(v string)

SetFtpUsername gets a reference to the given NullableString and assigns it to the FtpUsername field.

func (*CreateFTPUploadTaskVM) SetFtpUsernameNil ¶

func (o *CreateFTPUploadTaskVM) SetFtpUsernameNil()

SetFtpUsernameNil sets the value for FtpUsername to be an explicit nil

func (*CreateFTPUploadTaskVM) SetUseSFTP ¶

func (o *CreateFTPUploadTaskVM) SetUseSFTP(v bool)

SetUseSFTP gets a reference to the given bool and assigns it to the UseSFTP field.

func (CreateFTPUploadTaskVM) ToMap ¶

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

func (*CreateFTPUploadTaskVM) UnsetArchiveName ¶

func (o *CreateFTPUploadTaskVM) UnsetArchiveName()

UnsetArchiveName ensures that no value is present for ArchiveName, not even an explicit nil

func (*CreateFTPUploadTaskVM) UnsetDestinationFolder ¶

func (o *CreateFTPUploadTaskVM) UnsetDestinationFolder()

UnsetDestinationFolder ensures that no value is present for DestinationFolder, not even an explicit nil

func (*CreateFTPUploadTaskVM) UnsetFtpHost ¶

func (o *CreateFTPUploadTaskVM) UnsetFtpHost()

UnsetFtpHost ensures that no value is present for FtpHost, not even an explicit nil

func (*CreateFTPUploadTaskVM) UnsetFtpPassword ¶

func (o *CreateFTPUploadTaskVM) UnsetFtpPassword()

UnsetFtpPassword ensures that no value is present for FtpPassword, not even an explicit nil

func (*CreateFTPUploadTaskVM) UnsetFtpUsername ¶

func (o *CreateFTPUploadTaskVM) UnsetFtpUsername()

UnsetFtpUsername ensures that no value is present for FtpUsername, not even an explicit nil

type CreateFetchTaskVM ¶

type CreateFetchTaskVM struct {
	DataSourceId NullableString `json:"dataSourceId,omitempty"`
}

CreateFetchTaskVM struct for CreateFetchTaskVM

func NewCreateFetchTaskVM ¶

func NewCreateFetchTaskVM(t string) *CreateFetchTaskVM

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

func NewCreateFetchTaskVMWithDefaults ¶

func NewCreateFetchTaskVMWithDefaults() *CreateFetchTaskVM

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

func (*CreateFetchTaskVM) GetDataSourceId ¶

func (o *CreateFetchTaskVM) GetDataSourceId() string

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

func (*CreateFetchTaskVM) GetDataSourceIdOk ¶

func (o *CreateFetchTaskVM) GetDataSourceIdOk() (*string, bool)

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

func (*CreateFetchTaskVM) HasDataSourceId ¶

func (o *CreateFetchTaskVM) HasDataSourceId() bool

HasDataSourceId returns a boolean if a field has been set.

func (CreateFetchTaskVM) MarshalJSON ¶

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

func (*CreateFetchTaskVM) SetDataSourceId ¶

func (o *CreateFetchTaskVM) SetDataSourceId(v string)

SetDataSourceId gets a reference to the given NullableString and assigns it to the DataSourceId field.

func (*CreateFetchTaskVM) SetDataSourceIdNil ¶

func (o *CreateFetchTaskVM) SetDataSourceIdNil()

SetDataSourceIdNil sets the value for DataSourceId to be an explicit nil

func (CreateFetchTaskVM) ToMap ¶

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

func (*CreateFetchTaskVM) UnsetDataSourceId ¶

func (o *CreateFetchTaskVM) UnsetDataSourceId()

UnsetDataSourceId ensures that no value is present for DataSourceId, not even an explicit nil

type CreateGroupAdminVM ¶

type CreateGroupAdminVM struct {
	OwnerId NullableString `json:"ownerId,omitempty"`
}

CreateGroupAdminVM struct for CreateGroupAdminVM

func NewCreateGroupAdminVM ¶

func NewCreateGroupAdminVM(name string) *CreateGroupAdminVM

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

func NewCreateGroupAdminVMWithDefaults ¶

func NewCreateGroupAdminVMWithDefaults() *CreateGroupAdminVM

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

func (*CreateGroupAdminVM) GetOwnerId ¶

func (o *CreateGroupAdminVM) GetOwnerId() string

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

func (*CreateGroupAdminVM) GetOwnerIdOk ¶

func (o *CreateGroupAdminVM) GetOwnerIdOk() (*string, bool)

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

func (*CreateGroupAdminVM) HasOwnerId ¶

func (o *CreateGroupAdminVM) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (CreateGroupAdminVM) MarshalJSON ¶

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

func (*CreateGroupAdminVM) SetOwnerId ¶

func (o *CreateGroupAdminVM) SetOwnerId(v string)

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*CreateGroupAdminVM) SetOwnerIdNil ¶

func (o *CreateGroupAdminVM) SetOwnerIdNil()

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (CreateGroupAdminVM) ToMap ¶

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

func (*CreateGroupAdminVM) UnsetOwnerId ¶

func (o *CreateGroupAdminVM) UnsetOwnerId()

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

type CreateGroupVM ¶

type CreateGroupVM struct {
	Name           string         `json:"name"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
}

CreateGroupVM struct for CreateGroupVM

func NewCreateGroupVM ¶

func NewCreateGroupVM(name string) *CreateGroupVM

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

func NewCreateGroupVMWithDefaults ¶

func NewCreateGroupVMWithDefaults() *CreateGroupVM

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

func (*CreateGroupVM) GetName ¶

func (o *CreateGroupVM) GetName() string

GetName returns the Name field value

func (*CreateGroupVM) GetNameOk ¶

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

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

func (*CreateGroupVM) GetSubscriptionId ¶

func (o *CreateGroupVM) GetSubscriptionId() string

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

func (*CreateGroupVM) GetSubscriptionIdOk ¶

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

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

func (*CreateGroupVM) HasSubscriptionId ¶

func (o *CreateGroupVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (CreateGroupVM) MarshalJSON ¶

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

func (*CreateGroupVM) SetName ¶

func (o *CreateGroupVM) SetName(v string)

SetName sets field value

func (*CreateGroupVM) SetSubscriptionId ¶

func (o *CreateGroupVM) SetSubscriptionId(v string)

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

func (*CreateGroupVM) SetSubscriptionIdNil ¶

func (o *CreateGroupVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (CreateGroupVM) ToMap ¶

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

func (*CreateGroupVM) UnsetSubscriptionId ¶

func (o *CreateGroupVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type CreatePrepareTemplateTaskVM ¶

type CreatePrepareTemplateTaskVM struct {
	Exports          []CreateExportReportTaskVM `json:"exports,omitempty"`
	PagesCount       *int32                     `json:"pagesCount,omitempty"`
	ReportParameters map[string]string          `json:"reportParameters,omitempty"`
}

CreatePrepareTemplateTaskVM struct for CreatePrepareTemplateTaskVM

func NewCreatePrepareTemplateTaskVM ¶

func NewCreatePrepareTemplateTaskVM(t string) *CreatePrepareTemplateTaskVM

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

func NewCreatePrepareTemplateTaskVMWithDefaults ¶

func NewCreatePrepareTemplateTaskVMWithDefaults() *CreatePrepareTemplateTaskVM

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

func (*CreatePrepareTemplateTaskVM) GetExports ¶

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

func (*CreatePrepareTemplateTaskVM) GetExportsOk ¶

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

func (*CreatePrepareTemplateTaskVM) GetPagesCount ¶

func (o *CreatePrepareTemplateTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise.

func (*CreatePrepareTemplateTaskVM) GetPagesCountOk ¶

func (o *CreatePrepareTemplateTaskVM) GetPagesCountOk() (*int32, bool)

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

func (*CreatePrepareTemplateTaskVM) GetReportParameters ¶

func (o *CreatePrepareTemplateTaskVM) GetReportParameters() map[string]string

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

func (*CreatePrepareTemplateTaskVM) GetReportParametersOk ¶

func (o *CreatePrepareTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

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

func (*CreatePrepareTemplateTaskVM) HasExports ¶

func (o *CreatePrepareTemplateTaskVM) HasExports() bool

HasExports returns a boolean if a field has been set.

func (*CreatePrepareTemplateTaskVM) HasPagesCount ¶

func (o *CreatePrepareTemplateTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (*CreatePrepareTemplateTaskVM) HasReportParameters ¶

func (o *CreatePrepareTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (CreatePrepareTemplateTaskVM) MarshalJSON ¶

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

func (*CreatePrepareTemplateTaskVM) SetExports ¶

SetExports gets a reference to the given []CreateExportReportTaskVM and assigns it to the Exports field.

func (*CreatePrepareTemplateTaskVM) SetPagesCount ¶

func (o *CreatePrepareTemplateTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given int32 and assigns it to the PagesCount field.

func (*CreatePrepareTemplateTaskVM) SetReportParameters ¶

func (o *CreatePrepareTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (CreatePrepareTemplateTaskVM) ToMap ¶

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

type CreateSubscriptionInviteVM ¶

type CreateSubscriptionInviteVM struct {
	Usages      *int64     `json:"usages,omitempty"`
	Durable     *bool      `json:"durable,omitempty"`
	ExpiredDate *time.Time `json:"expiredDate,omitempty"`
}

CreateSubscriptionInviteVM struct for CreateSubscriptionInviteVM

func NewCreateSubscriptionInviteVM ¶

func NewCreateSubscriptionInviteVM() *CreateSubscriptionInviteVM

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

func NewCreateSubscriptionInviteVMWithDefaults ¶

func NewCreateSubscriptionInviteVMWithDefaults() *CreateSubscriptionInviteVM

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

func (*CreateSubscriptionInviteVM) GetDurable ¶

func (o *CreateSubscriptionInviteVM) GetDurable() bool

GetDurable returns the Durable field value if set, zero value otherwise.

func (*CreateSubscriptionInviteVM) GetDurableOk ¶

func (o *CreateSubscriptionInviteVM) GetDurableOk() (*bool, bool)

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

func (*CreateSubscriptionInviteVM) GetExpiredDate ¶

func (o *CreateSubscriptionInviteVM) GetExpiredDate() time.Time

GetExpiredDate returns the ExpiredDate field value if set, zero value otherwise.

func (*CreateSubscriptionInviteVM) GetExpiredDateOk ¶

func (o *CreateSubscriptionInviteVM) GetExpiredDateOk() (*time.Time, bool)

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

func (*CreateSubscriptionInviteVM) GetUsages ¶

func (o *CreateSubscriptionInviteVM) GetUsages() int64

GetUsages returns the Usages field value if set, zero value otherwise.

func (*CreateSubscriptionInviteVM) GetUsagesOk ¶

func (o *CreateSubscriptionInviteVM) GetUsagesOk() (*int64, bool)

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

func (*CreateSubscriptionInviteVM) HasDurable ¶

func (o *CreateSubscriptionInviteVM) HasDurable() bool

HasDurable returns a boolean if a field has been set.

func (*CreateSubscriptionInviteVM) HasExpiredDate ¶

func (o *CreateSubscriptionInviteVM) HasExpiredDate() bool

HasExpiredDate returns a boolean if a field has been set.

func (*CreateSubscriptionInviteVM) HasUsages ¶

func (o *CreateSubscriptionInviteVM) HasUsages() bool

HasUsages returns a boolean if a field has been set.

func (CreateSubscriptionInviteVM) MarshalJSON ¶

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

func (*CreateSubscriptionInviteVM) SetDurable ¶

func (o *CreateSubscriptionInviteVM) SetDurable(v bool)

SetDurable gets a reference to the given bool and assigns it to the Durable field.

func (*CreateSubscriptionInviteVM) SetExpiredDate ¶

func (o *CreateSubscriptionInviteVM) SetExpiredDate(v time.Time)

SetExpiredDate gets a reference to the given time.Time and assigns it to the ExpiredDate field.

func (*CreateSubscriptionInviteVM) SetUsages ¶

func (o *CreateSubscriptionInviteVM) SetUsages(v int64)

SetUsages gets a reference to the given int64 and assigns it to the Usages field.

func (CreateSubscriptionInviteVM) ToMap ¶

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

type CreateTaskBaseVM ¶

type CreateTaskBaseVM struct {
	CronExpression NullableString `json:"cronExpression,omitempty"`
	DelayedRunTime NullableTime   `json:"delayedRunTime,omitempty"`
	Name           NullableString `json:"name,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
	T              string         `json:"$t"`
}

CreateTaskBaseVM struct for CreateTaskBaseVM

func NewCreateTaskBaseVM ¶

func NewCreateTaskBaseVM(t string) *CreateTaskBaseVM

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

func NewCreateTaskBaseVMWithDefaults ¶

func NewCreateTaskBaseVMWithDefaults() *CreateTaskBaseVM

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

func (*CreateTaskBaseVM) GetCronExpression ¶

func (o *CreateTaskBaseVM) GetCronExpression() string

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

func (*CreateTaskBaseVM) GetCronExpressionOk ¶

func (o *CreateTaskBaseVM) GetCronExpressionOk() (*string, bool)

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

func (*CreateTaskBaseVM) GetDelayedRunTime ¶

func (o *CreateTaskBaseVM) GetDelayedRunTime() time.Time

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

func (*CreateTaskBaseVM) GetDelayedRunTimeOk ¶

func (o *CreateTaskBaseVM) GetDelayedRunTimeOk() (*time.Time, bool)

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

func (*CreateTaskBaseVM) GetName ¶

func (o *CreateTaskBaseVM) GetName() string

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

func (*CreateTaskBaseVM) GetNameOk ¶

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

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

func (*CreateTaskBaseVM) GetSubscriptionId ¶

func (o *CreateTaskBaseVM) GetSubscriptionId() string

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

func (*CreateTaskBaseVM) GetSubscriptionIdOk ¶

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

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

func (*CreateTaskBaseVM) GetT ¶

func (o *CreateTaskBaseVM) GetT() string

GetT returns the T field value

func (*CreateTaskBaseVM) GetTOk ¶

func (o *CreateTaskBaseVM) GetTOk() (*string, bool)

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

func (*CreateTaskBaseVM) HasCronExpression ¶

func (o *CreateTaskBaseVM) HasCronExpression() bool

HasCronExpression returns a boolean if a field has been set.

func (*CreateTaskBaseVM) HasDelayedRunTime ¶

func (o *CreateTaskBaseVM) HasDelayedRunTime() bool

HasDelayedRunTime returns a boolean if a field has been set.

func (*CreateTaskBaseVM) HasName ¶

func (o *CreateTaskBaseVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateTaskBaseVM) HasSubscriptionId ¶

func (o *CreateTaskBaseVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (CreateTaskBaseVM) MarshalJSON ¶

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

func (*CreateTaskBaseVM) SetCronExpression ¶

func (o *CreateTaskBaseVM) SetCronExpression(v string)

SetCronExpression gets a reference to the given NullableString and assigns it to the CronExpression field.

func (*CreateTaskBaseVM) SetCronExpressionNil ¶

func (o *CreateTaskBaseVM) SetCronExpressionNil()

SetCronExpressionNil sets the value for CronExpression to be an explicit nil

func (*CreateTaskBaseVM) SetDelayedRunTime ¶

func (o *CreateTaskBaseVM) SetDelayedRunTime(v time.Time)

SetDelayedRunTime gets a reference to the given NullableTime and assigns it to the DelayedRunTime field.

func (*CreateTaskBaseVM) SetDelayedRunTimeNil ¶

func (o *CreateTaskBaseVM) SetDelayedRunTimeNil()

SetDelayedRunTimeNil sets the value for DelayedRunTime to be an explicit nil

func (*CreateTaskBaseVM) SetName ¶

func (o *CreateTaskBaseVM) SetName(v string)

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

func (*CreateTaskBaseVM) SetNameNil ¶

func (o *CreateTaskBaseVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateTaskBaseVM) SetSubscriptionId ¶

func (o *CreateTaskBaseVM) SetSubscriptionId(v string)

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

func (*CreateTaskBaseVM) SetSubscriptionIdNil ¶

func (o *CreateTaskBaseVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*CreateTaskBaseVM) SetT ¶

func (o *CreateTaskBaseVM) SetT(v string)

SetT sets field value

func (CreateTaskBaseVM) ToMap ¶

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

func (*CreateTaskBaseVM) UnsetCronExpression ¶

func (o *CreateTaskBaseVM) UnsetCronExpression()

UnsetCronExpression ensures that no value is present for CronExpression, not even an explicit nil

func (*CreateTaskBaseVM) UnsetDelayedRunTime ¶

func (o *CreateTaskBaseVM) UnsetDelayedRunTime()

UnsetDelayedRunTime ensures that no value is present for DelayedRunTime, not even an explicit nil

func (*CreateTaskBaseVM) UnsetName ¶

func (o *CreateTaskBaseVM) UnsetName()

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

func (*CreateTaskBaseVM) UnsetSubscriptionId ¶

func (o *CreateTaskBaseVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type CreateThumbnailReportTaskVM ¶

type CreateThumbnailReportTaskVM struct {
	ReportId NullableString `json:"reportId,omitempty"`
}

CreateThumbnailReportTaskVM struct for CreateThumbnailReportTaskVM

func NewCreateThumbnailReportTaskVM ¶

func NewCreateThumbnailReportTaskVM(t string) *CreateThumbnailReportTaskVM

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

func NewCreateThumbnailReportTaskVMWithDefaults ¶

func NewCreateThumbnailReportTaskVMWithDefaults() *CreateThumbnailReportTaskVM

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

func (*CreateThumbnailReportTaskVM) GetReportId ¶

func (o *CreateThumbnailReportTaskVM) GetReportId() string

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

func (*CreateThumbnailReportTaskVM) GetReportIdOk ¶

func (o *CreateThumbnailReportTaskVM) GetReportIdOk() (*string, bool)

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

func (*CreateThumbnailReportTaskVM) HasReportId ¶

func (o *CreateThumbnailReportTaskVM) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (CreateThumbnailReportTaskVM) MarshalJSON ¶

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

func (*CreateThumbnailReportTaskVM) SetReportId ¶

func (o *CreateThumbnailReportTaskVM) SetReportId(v string)

SetReportId gets a reference to the given NullableString and assigns it to the ReportId field.

func (*CreateThumbnailReportTaskVM) SetReportIdNil ¶

func (o *CreateThumbnailReportTaskVM) SetReportIdNil()

SetReportIdNil sets the value for ReportId to be an explicit nil

func (CreateThumbnailReportTaskVM) ToMap ¶

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

func (*CreateThumbnailReportTaskVM) UnsetReportId ¶

func (o *CreateThumbnailReportTaskVM) UnsetReportId()

UnsetReportId ensures that no value is present for ReportId, not even an explicit nil

type CreateThumbnailTemplateTaskVM ¶

type CreateThumbnailTemplateTaskVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
}

CreateThumbnailTemplateTaskVM struct for CreateThumbnailTemplateTaskVM

func NewCreateThumbnailTemplateTaskVM ¶

func NewCreateThumbnailTemplateTaskVM(t string) *CreateThumbnailTemplateTaskVM

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

func NewCreateThumbnailTemplateTaskVMWithDefaults ¶

func NewCreateThumbnailTemplateTaskVMWithDefaults() *CreateThumbnailTemplateTaskVM

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

func (*CreateThumbnailTemplateTaskVM) GetTemplateId ¶

func (o *CreateThumbnailTemplateTaskVM) GetTemplateId() string

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

func (*CreateThumbnailTemplateTaskVM) GetTemplateIdOk ¶

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

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

func (*CreateThumbnailTemplateTaskVM) HasTemplateId ¶

func (o *CreateThumbnailTemplateTaskVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (CreateThumbnailTemplateTaskVM) MarshalJSON ¶

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

func (*CreateThumbnailTemplateTaskVM) SetTemplateId ¶

func (o *CreateThumbnailTemplateTaskVM) SetTemplateId(v string)

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

func (*CreateThumbnailTemplateTaskVM) SetTemplateIdNil ¶

func (o *CreateThumbnailTemplateTaskVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (CreateThumbnailTemplateTaskVM) ToMap ¶

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

func (*CreateThumbnailTemplateTaskVM) UnsetTemplateId ¶

func (o *CreateThumbnailTemplateTaskVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type CreateTransformTaskBaseVM ¶

type CreateTransformTaskBaseVM struct {
	InputFile  *InputFileVM                `json:"inputFile,omitempty"`
	Locale     NullableString              `json:"locale,omitempty"`
	OutputFile *OutputFileVM               `json:"outputFile,omitempty"`
	Transports []CreateTransportTaskBaseVM `json:"transports,omitempty"`
	T          string                      `json:"$t"`
}

CreateTransformTaskBaseVM struct for CreateTransformTaskBaseVM

func NewCreateTransformTaskBaseVM ¶

func NewCreateTransformTaskBaseVM(t string) *CreateTransformTaskBaseVM

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

func NewCreateTransformTaskBaseVMWithDefaults ¶

func NewCreateTransformTaskBaseVMWithDefaults() *CreateTransformTaskBaseVM

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

func (*CreateTransformTaskBaseVM) GetInputFile ¶

func (o *CreateTransformTaskBaseVM) GetInputFile() InputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*CreateTransformTaskBaseVM) GetInputFileOk ¶

func (o *CreateTransformTaskBaseVM) GetInputFileOk() (*InputFileVM, bool)

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

func (*CreateTransformTaskBaseVM) GetLocale ¶

func (o *CreateTransformTaskBaseVM) GetLocale() string

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

func (*CreateTransformTaskBaseVM) GetLocaleOk ¶

func (o *CreateTransformTaskBaseVM) GetLocaleOk() (*string, bool)

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

func (*CreateTransformTaskBaseVM) GetOutputFile ¶

func (o *CreateTransformTaskBaseVM) GetOutputFile() OutputFileVM

GetOutputFile returns the OutputFile field value if set, zero value otherwise.

func (*CreateTransformTaskBaseVM) GetOutputFileOk ¶

func (o *CreateTransformTaskBaseVM) GetOutputFileOk() (*OutputFileVM, bool)

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

func (*CreateTransformTaskBaseVM) GetT ¶

GetT returns the T field value

func (*CreateTransformTaskBaseVM) GetTOk ¶

func (o *CreateTransformTaskBaseVM) GetTOk() (*string, bool)

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

func (*CreateTransformTaskBaseVM) GetTransports ¶

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

func (*CreateTransformTaskBaseVM) GetTransportsOk ¶

func (o *CreateTransformTaskBaseVM) GetTransportsOk() ([]CreateTransportTaskBaseVM, bool)

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

func (*CreateTransformTaskBaseVM) HasInputFile ¶

func (o *CreateTransformTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (*CreateTransformTaskBaseVM) HasLocale ¶

func (o *CreateTransformTaskBaseVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*CreateTransformTaskBaseVM) HasOutputFile ¶

func (o *CreateTransformTaskBaseVM) HasOutputFile() bool

HasOutputFile returns a boolean if a field has been set.

func (*CreateTransformTaskBaseVM) HasTransports ¶

func (o *CreateTransformTaskBaseVM) HasTransports() bool

HasTransports returns a boolean if a field has been set.

func (CreateTransformTaskBaseVM) MarshalJSON ¶

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

func (*CreateTransformTaskBaseVM) SetInputFile ¶

func (o *CreateTransformTaskBaseVM) SetInputFile(v InputFileVM)

SetInputFile gets a reference to the given InputFileVM and assigns it to the InputFile field.

func (*CreateTransformTaskBaseVM) SetLocale ¶

func (o *CreateTransformTaskBaseVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*CreateTransformTaskBaseVM) SetLocaleNil ¶

func (o *CreateTransformTaskBaseVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*CreateTransformTaskBaseVM) SetOutputFile ¶

func (o *CreateTransformTaskBaseVM) SetOutputFile(v OutputFileVM)

SetOutputFile gets a reference to the given OutputFileVM and assigns it to the OutputFile field.

func (*CreateTransformTaskBaseVM) SetT ¶

func (o *CreateTransformTaskBaseVM) SetT(v string)

SetT sets field value

func (*CreateTransformTaskBaseVM) SetTransports ¶

SetTransports gets a reference to the given []CreateTransportTaskBaseVM and assigns it to the Transports field.

func (CreateTransformTaskBaseVM) ToMap ¶

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

func (*CreateTransformTaskBaseVM) UnsetLocale ¶

func (o *CreateTransformTaskBaseVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

type CreateTransportTaskBaseVM ¶

type CreateTransportTaskBaseVM struct {
	InputFile *InputFileVM `json:"inputFile,omitempty"`
	T         string       `json:"$t"`
}

CreateTransportTaskBaseVM struct for CreateTransportTaskBaseVM

func NewCreateTransportTaskBaseVM ¶

func NewCreateTransportTaskBaseVM(t string) *CreateTransportTaskBaseVM

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

func NewCreateTransportTaskBaseVMWithDefaults ¶

func NewCreateTransportTaskBaseVMWithDefaults() *CreateTransportTaskBaseVM

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

func (*CreateTransportTaskBaseVM) GetInputFile ¶

func (o *CreateTransportTaskBaseVM) GetInputFile() InputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*CreateTransportTaskBaseVM) GetInputFileOk ¶

func (o *CreateTransportTaskBaseVM) GetInputFileOk() (*InputFileVM, bool)

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

func (*CreateTransportTaskBaseVM) GetT ¶

GetT returns the T field value

func (*CreateTransportTaskBaseVM) GetTOk ¶

func (o *CreateTransportTaskBaseVM) GetTOk() (*string, bool)

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

func (*CreateTransportTaskBaseVM) HasInputFile ¶

func (o *CreateTransportTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (CreateTransportTaskBaseVM) MarshalJSON ¶

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

func (*CreateTransportTaskBaseVM) SetInputFile ¶

func (o *CreateTransportTaskBaseVM) SetInputFile(v InputFileVM)

SetInputFile gets a reference to the given InputFileVM and assigns it to the InputFile field.

func (*CreateTransportTaskBaseVM) SetT ¶

func (o *CreateTransportTaskBaseVM) SetT(v string)

SetT sets field value

func (CreateTransportTaskBaseVM) ToMap ¶

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

type CreateWebhookTaskVM ¶

type CreateWebhookTaskVM struct {
	Headers map[string]string `json:"headers,omitempty"`
	Url     NullableString    `json:"url,omitempty"`
}

CreateWebhookTaskVM struct for CreateWebhookTaskVM

func NewCreateWebhookTaskVM ¶

func NewCreateWebhookTaskVM(t string) *CreateWebhookTaskVM

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

func NewCreateWebhookTaskVMWithDefaults ¶

func NewCreateWebhookTaskVMWithDefaults() *CreateWebhookTaskVM

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

func (*CreateWebhookTaskVM) GetHeaders ¶

func (o *CreateWebhookTaskVM) GetHeaders() map[string]string

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

func (*CreateWebhookTaskVM) GetHeadersOk ¶

func (o *CreateWebhookTaskVM) GetHeadersOk() (*map[string]string, bool)

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

func (*CreateWebhookTaskVM) GetUrl ¶

func (o *CreateWebhookTaskVM) GetUrl() string

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

func (*CreateWebhookTaskVM) GetUrlOk ¶

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

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

func (*CreateWebhookTaskVM) HasHeaders ¶

func (o *CreateWebhookTaskVM) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*CreateWebhookTaskVM) HasUrl ¶

func (o *CreateWebhookTaskVM) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (CreateWebhookTaskVM) MarshalJSON ¶

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

func (*CreateWebhookTaskVM) SetHeaders ¶

func (o *CreateWebhookTaskVM) SetHeaders(v map[string]string)

SetHeaders gets a reference to the given map[string]string and assigns it to the Headers field.

func (*CreateWebhookTaskVM) SetUrl ¶

func (o *CreateWebhookTaskVM) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*CreateWebhookTaskVM) SetUrlNil ¶

func (o *CreateWebhookTaskVM) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (CreateWebhookTaskVM) ToMap ¶

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

func (*CreateWebhookTaskVM) UnsetUrl ¶

func (o *CreateWebhookTaskVM) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type DataSourceAdministrate ¶

type DataSourceAdministrate int32

DataSourceAdministrate the model 'DataSourceAdministrate'

func NewDataSourceAdministrateFromValue ¶

func NewDataSourceAdministrateFromValue(v int32) (*DataSourceAdministrate, error)

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

func (DataSourceAdministrate) IsValid ¶

func (v DataSourceAdministrate) IsValid() bool

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

func (DataSourceAdministrate) Ptr ¶

Ptr returns reference to DataSourceAdministrate value

func (*DataSourceAdministrate) UnmarshalJSON ¶

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

type DataSourceConnectionType ¶

type DataSourceConnectionType string

DataSourceConnectionType the model 'DataSourceConnectionType'

const (
	JSON        DataSourceConnectionType = "JSON"
	MSSQL       DataSourceConnectionType = "MSSQL"
	CSV         DataSourceConnectionType = "CSV"
	XML         DataSourceConnectionType = "XML"
	MY_SQL      DataSourceConnectionType = "MySQL"
	POSTGRES    DataSourceConnectionType = "Postgres"
	ORACLE_DB   DataSourceConnectionType = "OracleDB"
	FIREBIRD_DB DataSourceConnectionType = "FirebirdDB"
	MONGO_DB    DataSourceConnectionType = "MongoDB"
	CLICK_HOUSE DataSourceConnectionType = "ClickHouse"
)

List of DataSourceConnectionType

func NewDataSourceConnectionTypeFromValue ¶

func NewDataSourceConnectionTypeFromValue(v string) (*DataSourceConnectionType, error)

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

func (DataSourceConnectionType) IsValid ¶

func (v DataSourceConnectionType) IsValid() bool

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

func (DataSourceConnectionType) Ptr ¶

Ptr returns reference to DataSourceConnectionType value

func (*DataSourceConnectionType) UnmarshalJSON ¶

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

type DataSourceCreate ¶

type DataSourceCreate int32

DataSourceCreate the model 'DataSourceCreate'

func NewDataSourceCreateFromValue ¶

func NewDataSourceCreateFromValue(v int32) (*DataSourceCreate, error)

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

func (DataSourceCreate) IsValid ¶

func (v DataSourceCreate) IsValid() bool

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

func (DataSourceCreate) Ptr ¶

Ptr returns reference to DataSourceCreate value

func (*DataSourceCreate) UnmarshalJSON ¶

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

type DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission ¶

type DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission struct {
	Create       *DataSourceCreate       `json:"create,omitempty"`
	Delete       *DataSourceDelete       `json:"delete,omitempty"`
	Execute      *DataSourceExecute      `json:"execute,omitempty"`
	Get          *DataSourceGet          `json:"get,omitempty"`
	Update       *DataSourceUpdate       `json:"update,omitempty"`
	Administrate *DataSourceAdministrate `json:"administrate,omitempty"`
}

DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission struct for DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission

func NewDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission ¶

func NewDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission() *DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission

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

func NewDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissionWithDefaults ¶

func NewDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissionWithDefaults() *DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetAdministrate ¶

GetAdministrate returns the Administrate field value if set, zero value otherwise.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetAdministrateOk ¶

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetCreate ¶

GetCreate returns the Create field value if set, zero value otherwise.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetCreateOk ¶

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetDelete ¶

GetDelete returns the Delete field value if set, zero value otherwise.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetDeleteOk ¶

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetExecute ¶

GetExecute returns the Execute field value if set, zero value otherwise.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetExecuteOk ¶

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetGet ¶

GetGet returns the Get field value if set, zero value otherwise.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetGetOk ¶

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetUpdate ¶

GetUpdate returns the Update field value if set, zero value otherwise.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) GetUpdateOk ¶

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

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) HasAdministrate ¶

HasAdministrate returns a boolean if a field has been set.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) HasCreate ¶

HasCreate returns a boolean if a field has been set.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) HasDelete ¶

HasDelete returns a boolean if a field has been set.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) HasExecute ¶

HasExecute returns a boolean if a field has been set.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) HasGet ¶

HasGet returns a boolean if a field has been set.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) HasUpdate ¶

HasUpdate returns a boolean if a field has been set.

func (DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) MarshalJSON ¶

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) SetAdministrate ¶

SetAdministrate gets a reference to the given DataSourceAdministrate and assigns it to the Administrate field.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) SetCreate ¶

SetCreate gets a reference to the given DataSourceCreate and assigns it to the Create field.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) SetDelete ¶

SetDelete gets a reference to the given DataSourceDelete and assigns it to the Delete field.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) SetExecute ¶

SetExecute gets a reference to the given DataSourceExecute and assigns it to the Execute field.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) SetGet ¶

SetGet gets a reference to the given DataSourceGet and assigns it to the Get field.

func (*DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) SetUpdate ¶

SetUpdate gets a reference to the given DataSourceUpdate and assigns it to the Update field.

func (DataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) ToMap ¶

type DataSourceDelete ¶

type DataSourceDelete int32

DataSourceDelete the model 'DataSourceDelete'

func NewDataSourceDeleteFromValue ¶

func NewDataSourceDeleteFromValue(v int32) (*DataSourceDelete, error)

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

func (DataSourceDelete) IsValid ¶

func (v DataSourceDelete) IsValid() bool

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

func (DataSourceDelete) Ptr ¶

Ptr returns reference to DataSourceDelete value

func (*DataSourceDelete) UnmarshalJSON ¶

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

type DataSourceExecute ¶

type DataSourceExecute int32

DataSourceExecute the model 'DataSourceExecute'

func NewDataSourceExecuteFromValue ¶

func NewDataSourceExecuteFromValue(v int32) (*DataSourceExecute, error)

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

func (DataSourceExecute) IsValid ¶

func (v DataSourceExecute) IsValid() bool

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

func (DataSourceExecute) Ptr ¶

Ptr returns reference to DataSourceExecute value

func (*DataSourceExecute) UnmarshalJSON ¶

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

type DataSourceGet ¶

type DataSourceGet int32

DataSourceGet the model 'DataSourceGet'

func NewDataSourceGetFromValue ¶

func NewDataSourceGetFromValue(v int32) (*DataSourceGet, error)

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

func (DataSourceGet) IsValid ¶

func (v DataSourceGet) IsValid() bool

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

func (DataSourceGet) Ptr ¶

func (v DataSourceGet) Ptr() *DataSourceGet

Ptr returns reference to DataSourceGet value

func (*DataSourceGet) UnmarshalJSON ¶

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

type DataSourcePermission ¶

type DataSourcePermission struct {
}

DataSourcePermission struct for DataSourcePermission

func NewDataSourcePermission ¶

func NewDataSourcePermission() *DataSourcePermission

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

func NewDataSourcePermissionWithDefaults ¶

func NewDataSourcePermissionWithDefaults() *DataSourcePermission

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

func (DataSourcePermission) MarshalJSON ¶

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

func (DataSourcePermission) ToMap ¶

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

type DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions ¶

type DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions struct {
	OwnerId NullableString                  `json:"ownerId,omitempty"`
	Owner   *DataSourcePermission           `json:"owner,omitempty"`
	Groups  map[string]DataSourcePermission `json:"groups,omitempty"`
	Other   *DataSourcePermission           `json:"other,omitempty"`
	Anon    *DataSourcePermission           `json:"anon,omitempty"`
}

DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions struct for DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions

func NewDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions ¶

func NewDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions() *DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions

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

func NewDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissionsWithDefaults ¶

func NewDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissionsWithDefaults() *DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetAnon ¶

GetAnon returns the Anon field value if set, zero value otherwise.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetAnonOk ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetGroups ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetGroupsOk ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetOther ¶

GetOther returns the Other field value if set, zero value otherwise.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetOtherOk ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetOwnerId ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetOwnerIdOk ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) GetOwnerOk ¶

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

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) HasAnon ¶

HasAnon returns a boolean if a field has been set.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) HasGroups ¶

HasGroups returns a boolean if a field has been set.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) HasOther ¶

HasOther returns a boolean if a field has been set.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) HasOwnerId ¶

HasOwnerId returns a boolean if a field has been set.

func (DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) MarshalJSON ¶

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) SetAnon ¶

SetAnon gets a reference to the given DataSourcePermission and assigns it to the Anon field.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) SetGroups ¶

SetGroups gets a reference to the given map[string]DataSourcePermission and assigns it to the Groups field.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) SetOther ¶

SetOther gets a reference to the given DataSourcePermission and assigns it to the Other field.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) SetOwner ¶

SetOwner gets a reference to the given DataSourcePermission and assigns it to the Owner field.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) SetOwnerId ¶

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) SetOwnerIdNil ¶

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) ToMap ¶

func (*DataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) UnsetOwnerId ¶

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

type DataSourcePermissions ¶

type DataSourcePermissions struct {
}

DataSourcePermissions struct for DataSourcePermissions

func NewDataSourcePermissions ¶

func NewDataSourcePermissions() *DataSourcePermissions

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

func NewDataSourcePermissionsWithDefaults ¶

func NewDataSourcePermissionsWithDefaults() *DataSourcePermissions

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

func (DataSourcePermissions) MarshalJSON ¶

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

func (DataSourcePermissions) ToMap ¶

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

type DataSourcePermissionsVM ¶

type DataSourcePermissionsVM struct {
	Permissions *DataSourcePermissions `json:"permissions,omitempty"`
}

DataSourcePermissionsVM struct for DataSourcePermissionsVM

func NewDataSourcePermissionsVM ¶

func NewDataSourcePermissionsVM() *DataSourcePermissionsVM

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

func NewDataSourcePermissionsVMWithDefaults ¶

func NewDataSourcePermissionsVMWithDefaults() *DataSourcePermissionsVM

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

func (*DataSourcePermissionsVM) GetPermissions ¶

func (o *DataSourcePermissionsVM) GetPermissions() DataSourcePermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*DataSourcePermissionsVM) GetPermissionsOk ¶

func (o *DataSourcePermissionsVM) GetPermissionsOk() (*DataSourcePermissions, bool)

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

func (*DataSourcePermissionsVM) HasPermissions ¶

func (o *DataSourcePermissionsVM) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (DataSourcePermissionsVM) MarshalJSON ¶

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

func (*DataSourcePermissionsVM) SetPermissions ¶

func (o *DataSourcePermissionsVM) SetPermissions(v DataSourcePermissions)

SetPermissions gets a reference to the given DataSourcePermissions and assigns it to the Permissions field.

func (DataSourcePermissionsVM) ToMap ¶

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

type DataSourceSorting ¶

type DataSourceSorting string

DataSourceSorting the model 'DataSourceSorting'

const (
	NONE         DataSourceSorting = "None"
	CREATED_TIME DataSourceSorting = "CreatedTime"
	EDITED_TIME  DataSourceSorting = "EditedTime"
	NAME         DataSourceSorting = "Name"
)

List of DataSourceSorting

func NewDataSourceSortingFromValue ¶

func NewDataSourceSortingFromValue(v string) (*DataSourceSorting, error)

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

func (DataSourceSorting) IsValid ¶

func (v DataSourceSorting) IsValid() bool

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

func (DataSourceSorting) Ptr ¶

Ptr returns reference to DataSourceSorting value

func (*DataSourceSorting) UnmarshalJSON ¶

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

type DataSourceStatus ¶

type DataSourceStatus string

DataSourceStatus the model 'DataSourceStatus'

const (
	CONNECTED DataSourceStatus = "Connected"
	ERROR     DataSourceStatus = "Error"
	UPDATING  DataSourceStatus = "Updating"
)

List of DataSourceStatus

func NewDataSourceStatusFromValue ¶

func NewDataSourceStatusFromValue(v string) (*DataSourceStatus, error)

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

func (DataSourceStatus) IsValid ¶

func (v DataSourceStatus) IsValid() bool

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

func (DataSourceStatus) Ptr ¶

Ptr returns reference to DataSourceStatus value

func (*DataSourceStatus) UnmarshalJSON ¶

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

type DataSourceUpdate ¶

type DataSourceUpdate int32

DataSourceUpdate the model 'DataSourceUpdate'

func NewDataSourceUpdateFromValue ¶

func NewDataSourceUpdateFromValue(v int32) (*DataSourceUpdate, error)

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

func (DataSourceUpdate) IsValid ¶

func (v DataSourceUpdate) IsValid() bool

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

func (DataSourceUpdate) Ptr ¶

Ptr returns reference to DataSourceUpdate value

func (*DataSourceUpdate) UnmarshalJSON ¶

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

type DataSourceVM ¶

type DataSourceVM struct {
	Id               NullableString            `json:"id,omitempty"`
	Name             NullableString            `json:"name,omitempty"`
	ConnectionType   *DataSourceConnectionType `json:"connectionType,omitempty"`
	ConnectionString NullableString            `json:"connectionString,omitempty"`
	DataStructure    NullableString            `json:"dataStructure,omitempty"`
	SubscriptionId   NullableString            `json:"subscriptionId,omitempty"`
	EditedTime       *time.Time                `json:"editedTime,omitempty"`
	EditorUserId     NullableString            `json:"editorUserId,omitempty"`
	CreatedTime      *time.Time                `json:"createdTime,omitempty"`
	CreatorUserId    NullableString            `json:"creatorUserId,omitempty"`
	Status           *DataSourceStatus         `json:"status,omitempty"`
	ErrorMessage     NullableString            `json:"errorMessage,omitempty"`
}

DataSourceVM struct for DataSourceVM

func NewDataSourceVM ¶

func NewDataSourceVM() *DataSourceVM

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

func NewDataSourceVMWithDefaults ¶

func NewDataSourceVMWithDefaults() *DataSourceVM

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

func (*DataSourceVM) GetConnectionString ¶

func (o *DataSourceVM) GetConnectionString() string

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

func (*DataSourceVM) GetConnectionStringOk ¶

func (o *DataSourceVM) GetConnectionStringOk() (*string, bool)

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

func (*DataSourceVM) GetConnectionType ¶

func (o *DataSourceVM) GetConnectionType() DataSourceConnectionType

GetConnectionType returns the ConnectionType field value if set, zero value otherwise.

func (*DataSourceVM) GetConnectionTypeOk ¶

func (o *DataSourceVM) GetConnectionTypeOk() (*DataSourceConnectionType, bool)

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

func (*DataSourceVM) GetCreatedTime ¶

func (o *DataSourceVM) GetCreatedTime() time.Time

GetCreatedTime returns the CreatedTime field value if set, zero value otherwise.

func (*DataSourceVM) GetCreatedTimeOk ¶

func (o *DataSourceVM) GetCreatedTimeOk() (*time.Time, bool)

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

func (*DataSourceVM) GetCreatorUserId ¶

func (o *DataSourceVM) GetCreatorUserId() string

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

func (*DataSourceVM) GetCreatorUserIdOk ¶

func (o *DataSourceVM) GetCreatorUserIdOk() (*string, bool)

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

func (*DataSourceVM) GetDataStructure ¶

func (o *DataSourceVM) GetDataStructure() string

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

func (*DataSourceVM) GetDataStructureOk ¶

func (o *DataSourceVM) GetDataStructureOk() (*string, bool)

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

func (*DataSourceVM) GetEditedTime ¶

func (o *DataSourceVM) GetEditedTime() time.Time

GetEditedTime returns the EditedTime field value if set, zero value otherwise.

func (*DataSourceVM) GetEditedTimeOk ¶

func (o *DataSourceVM) GetEditedTimeOk() (*time.Time, bool)

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

func (*DataSourceVM) GetEditorUserId ¶

func (o *DataSourceVM) GetEditorUserId() string

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

func (*DataSourceVM) GetEditorUserIdOk ¶

func (o *DataSourceVM) GetEditorUserIdOk() (*string, bool)

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

func (*DataSourceVM) GetErrorMessage ¶

func (o *DataSourceVM) GetErrorMessage() string

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

func (*DataSourceVM) GetErrorMessageOk ¶

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

func (*DataSourceVM) GetId ¶

func (o *DataSourceVM) GetId() string

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

func (*DataSourceVM) GetIdOk ¶

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

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

func (*DataSourceVM) GetName ¶

func (o *DataSourceVM) GetName() string

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

func (*DataSourceVM) GetNameOk ¶

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

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

func (*DataSourceVM) GetStatus ¶

func (o *DataSourceVM) GetStatus() DataSourceStatus

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

func (*DataSourceVM) GetStatusOk ¶

func (o *DataSourceVM) GetStatusOk() (*DataSourceStatus, 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 (*DataSourceVM) GetSubscriptionId ¶

func (o *DataSourceVM) GetSubscriptionId() string

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

func (*DataSourceVM) GetSubscriptionIdOk ¶

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

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

func (*DataSourceVM) HasConnectionString ¶

func (o *DataSourceVM) HasConnectionString() bool

HasConnectionString returns a boolean if a field has been set.

func (*DataSourceVM) HasConnectionType ¶

func (o *DataSourceVM) HasConnectionType() bool

HasConnectionType returns a boolean if a field has been set.

func (*DataSourceVM) HasCreatedTime ¶

func (o *DataSourceVM) HasCreatedTime() bool

HasCreatedTime returns a boolean if a field has been set.

func (*DataSourceVM) HasCreatorUserId ¶

func (o *DataSourceVM) HasCreatorUserId() bool

HasCreatorUserId returns a boolean if a field has been set.

func (*DataSourceVM) HasDataStructure ¶

func (o *DataSourceVM) HasDataStructure() bool

HasDataStructure returns a boolean if a field has been set.

func (*DataSourceVM) HasEditedTime ¶

func (o *DataSourceVM) HasEditedTime() bool

HasEditedTime returns a boolean if a field has been set.

func (*DataSourceVM) HasEditorUserId ¶

func (o *DataSourceVM) HasEditorUserId() bool

HasEditorUserId returns a boolean if a field has been set.

func (*DataSourceVM) HasErrorMessage ¶

func (o *DataSourceVM) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*DataSourceVM) HasId ¶

func (o *DataSourceVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*DataSourceVM) HasName ¶

func (o *DataSourceVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*DataSourceVM) HasStatus ¶

func (o *DataSourceVM) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DataSourceVM) HasSubscriptionId ¶

func (o *DataSourceVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (DataSourceVM) MarshalJSON ¶

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

func (*DataSourceVM) SetConnectionString ¶

func (o *DataSourceVM) SetConnectionString(v string)

SetConnectionString gets a reference to the given NullableString and assigns it to the ConnectionString field.

func (*DataSourceVM) SetConnectionStringNil ¶

func (o *DataSourceVM) SetConnectionStringNil()

SetConnectionStringNil sets the value for ConnectionString to be an explicit nil

func (*DataSourceVM) SetConnectionType ¶

func (o *DataSourceVM) SetConnectionType(v DataSourceConnectionType)

SetConnectionType gets a reference to the given DataSourceConnectionType and assigns it to the ConnectionType field.

func (*DataSourceVM) SetCreatedTime ¶

func (o *DataSourceVM) SetCreatedTime(v time.Time)

SetCreatedTime gets a reference to the given time.Time and assigns it to the CreatedTime field.

func (*DataSourceVM) SetCreatorUserId ¶

func (o *DataSourceVM) SetCreatorUserId(v string)

SetCreatorUserId gets a reference to the given NullableString and assigns it to the CreatorUserId field.

func (*DataSourceVM) SetCreatorUserIdNil ¶

func (o *DataSourceVM) SetCreatorUserIdNil()

SetCreatorUserIdNil sets the value for CreatorUserId to be an explicit nil

func (*DataSourceVM) SetDataStructure ¶

func (o *DataSourceVM) SetDataStructure(v string)

SetDataStructure gets a reference to the given NullableString and assigns it to the DataStructure field.

func (*DataSourceVM) SetDataStructureNil ¶

func (o *DataSourceVM) SetDataStructureNil()

SetDataStructureNil sets the value for DataStructure to be an explicit nil

func (*DataSourceVM) SetEditedTime ¶

func (o *DataSourceVM) SetEditedTime(v time.Time)

SetEditedTime gets a reference to the given time.Time and assigns it to the EditedTime field.

func (*DataSourceVM) SetEditorUserId ¶

func (o *DataSourceVM) SetEditorUserId(v string)

SetEditorUserId gets a reference to the given NullableString and assigns it to the EditorUserId field.

func (*DataSourceVM) SetEditorUserIdNil ¶

func (o *DataSourceVM) SetEditorUserIdNil()

SetEditorUserIdNil sets the value for EditorUserId to be an explicit nil

func (*DataSourceVM) SetErrorMessage ¶

func (o *DataSourceVM) SetErrorMessage(v string)

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

func (*DataSourceVM) SetErrorMessageNil ¶

func (o *DataSourceVM) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*DataSourceVM) SetId ¶

func (o *DataSourceVM) SetId(v string)

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

func (*DataSourceVM) SetIdNil ¶

func (o *DataSourceVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*DataSourceVM) SetName ¶

func (o *DataSourceVM) SetName(v string)

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

func (*DataSourceVM) SetNameNil ¶

func (o *DataSourceVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*DataSourceVM) SetStatus ¶

func (o *DataSourceVM) SetStatus(v DataSourceStatus)

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

func (*DataSourceVM) SetSubscriptionId ¶

func (o *DataSourceVM) SetSubscriptionId(v string)

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

func (*DataSourceVM) SetSubscriptionIdNil ¶

func (o *DataSourceVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (DataSourceVM) ToMap ¶

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

func (*DataSourceVM) UnsetConnectionString ¶

func (o *DataSourceVM) UnsetConnectionString()

UnsetConnectionString ensures that no value is present for ConnectionString, not even an explicit nil

func (*DataSourceVM) UnsetCreatorUserId ¶

func (o *DataSourceVM) UnsetCreatorUserId()

UnsetCreatorUserId ensures that no value is present for CreatorUserId, not even an explicit nil

func (*DataSourceVM) UnsetDataStructure ¶

func (o *DataSourceVM) UnsetDataStructure()

UnsetDataStructure ensures that no value is present for DataStructure, not even an explicit nil

func (*DataSourceVM) UnsetEditorUserId ¶

func (o *DataSourceVM) UnsetEditorUserId()

UnsetEditorUserId ensures that no value is present for EditorUserId, not even an explicit nil

func (*DataSourceVM) UnsetErrorMessage ¶

func (o *DataSourceVM) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*DataSourceVM) UnsetId ¶

func (o *DataSourceVM) UnsetId()

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

func (*DataSourceVM) UnsetName ¶

func (o *DataSourceVM) UnsetName()

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

func (*DataSourceVM) UnsetSubscriptionId ¶

func (o *DataSourceVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type DataSourcesApiService ¶

type DataSourcesApiService service

DataSourcesApiService DataSourcesApi service

func (*DataSourcesApiService) DataSourcesCountDataSourcesAsync ¶

func (a *DataSourcesApiService) DataSourcesCountDataSourcesAsync(ctx context.Context, subscriptionId string) ApiDataSourcesCountDataSourcesAsyncRequest

DataSourcesCountDataSourcesAsync Returns a number of data sources in subscription

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

func (*DataSourcesApiService) DataSourcesCountDataSourcesAsyncExecute ¶

func (a *DataSourcesApiService) DataSourcesCountDataSourcesAsyncExecute(r ApiDataSourcesCountDataSourcesAsyncRequest) (int64, *http.Response, error)

Execute executes the request

@return int64

func (*DataSourcesApiService) DataSourcesCreateDataSource ¶

func (a *DataSourcesApiService) DataSourcesCreateDataSource(ctx context.Context) ApiDataSourcesCreateDataSourceRequest

DataSourcesCreateDataSource Create new data source

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

func (*DataSourcesApiService) DataSourcesCreateDataSourceExecute ¶

func (a *DataSourcesApiService) DataSourcesCreateDataSourceExecute(r ApiDataSourcesCreateDataSourceRequest) (*DataSourceVM, *http.Response, error)

Execute executes the request

@return DataSourceVM

func (*DataSourcesApiService) DataSourcesDeleteDataSource ¶

func (a *DataSourcesApiService) DataSourcesDeleteDataSource(ctx context.Context, id string) ApiDataSourcesDeleteDataSourceRequest

DataSourcesDeleteDataSource Delete data source by id

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

func (*DataSourcesApiService) DataSourcesDeleteDataSourceExecute ¶

func (a *DataSourcesApiService) DataSourcesDeleteDataSourceExecute(r ApiDataSourcesDeleteDataSourceRequest) (*http.Response, error)

Execute executes the request

func (*DataSourcesApiService) DataSourcesFetchData ¶

DataSourcesFetchData This should connect to a database and set data structure

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

func (*DataSourcesApiService) DataSourcesFetchDataExecute ¶

func (a *DataSourcesApiService) DataSourcesFetchDataExecute(r ApiDataSourcesFetchDataRequest) (*http.Response, error)

Execute executes the request

func (*DataSourcesApiService) DataSourcesGetAvailableDataSources ¶

func (a *DataSourcesApiService) DataSourcesGetAvailableDataSources(ctx context.Context) ApiDataSourcesGetAvailableDataSourcesRequest

DataSourcesGetAvailableDataSources Returns all of the data sources, that current user have permission for in a subscription <br /> The method will return minimal infomration about the datasources: <br /> id, name, editedTime, status.

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

func (*DataSourcesApiService) DataSourcesGetAvailableDataSourcesExecute ¶

func (a *DataSourcesApiService) DataSourcesGetAvailableDataSourcesExecute(r ApiDataSourcesGetAvailableDataSourcesRequest) (*DataSourcesVM, *http.Response, error)

Execute executes the request

@return DataSourcesVM

func (*DataSourcesApiService) DataSourcesGetDataSource ¶

func (a *DataSourcesApiService) DataSourcesGetDataSource(ctx context.Context, id string) ApiDataSourcesGetDataSourceRequest

DataSourcesGetDataSource Get data source by id

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

func (*DataSourcesApiService) DataSourcesGetDataSourceExecute ¶

func (a *DataSourcesApiService) DataSourcesGetDataSourceExecute(r ApiDataSourcesGetDataSourceRequest) (*DataSourceVM, *http.Response, error)

Execute executes the request

@return DataSourceVM

func (*DataSourcesApiService) DataSourcesGetPermissions ¶

func (a *DataSourcesApiService) DataSourcesGetPermissions(ctx context.Context, id string) ApiDataSourcesGetPermissionsRequest

DataSourcesGetPermissions Get all Data source permissions

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

func (*DataSourcesApiService) DataSourcesGetPermissionsExecute ¶

Execute executes the request

@return DataSourcePermissionsVM

func (*DataSourcesApiService) DataSourcesRenameDataSource ¶

func (a *DataSourcesApiService) DataSourcesRenameDataSource(ctx context.Context, id string) ApiDataSourcesRenameDataSourceRequest

DataSourcesRenameDataSource Rename data source by id

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

func (*DataSourcesApiService) DataSourcesRenameDataSourceExecute ¶

func (a *DataSourcesApiService) DataSourcesRenameDataSourceExecute(r ApiDataSourcesRenameDataSourceRequest) (*DataSourceVM, *http.Response, error)

Execute executes the request

@return DataSourceVM

func (*DataSourcesApiService) DataSourcesUpdateConnectionString ¶

func (a *DataSourcesApiService) DataSourcesUpdateConnectionString(ctx context.Context, id string) ApiDataSourcesUpdateConnectionStringRequest

DataSourcesUpdateConnectionString Update data source's connection string by id

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

func (*DataSourcesApiService) DataSourcesUpdateConnectionStringExecute ¶

func (a *DataSourcesApiService) DataSourcesUpdateConnectionStringExecute(r ApiDataSourcesUpdateConnectionStringRequest) (*DataSourceVM, *http.Response, error)

Execute executes the request

@return DataSourceVM

func (*DataSourcesApiService) DataSourcesUpdatePermissions ¶

func (a *DataSourcesApiService) DataSourcesUpdatePermissions(ctx context.Context, id string) ApiDataSourcesUpdatePermissionsRequest

DataSourcesUpdatePermissions Update permissions

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

func (*DataSourcesApiService) DataSourcesUpdatePermissionsExecute ¶

func (a *DataSourcesApiService) DataSourcesUpdatePermissionsExecute(r ApiDataSourcesUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*DataSourcesApiService) DataSourcesUpdateSubscriptionDataSource ¶

func (a *DataSourcesApiService) DataSourcesUpdateSubscriptionDataSource(ctx context.Context, id string) ApiDataSourcesUpdateSubscriptionDataSourceRequest

DataSourcesUpdateSubscriptionDataSource Update data source's subscription

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

func (*DataSourcesApiService) DataSourcesUpdateSubscriptionDataSourceExecute ¶

func (a *DataSourcesApiService) DataSourcesUpdateSubscriptionDataSourceExecute(r ApiDataSourcesUpdateSubscriptionDataSourceRequest) (*http.Response, error)

Execute executes the request

type DataSourcesVM ¶

type DataSourcesVM struct {
	DataSources []DataSourceVM `json:"dataSources,omitempty"`
	Count       *int64         `json:"count,omitempty"`
	Skip        *int32         `json:"skip,omitempty"`
	Take        *int32         `json:"take,omitempty"`
}

DataSourcesVM struct for DataSourcesVM

func NewDataSourcesVM ¶

func NewDataSourcesVM() *DataSourcesVM

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

func NewDataSourcesVMWithDefaults ¶

func NewDataSourcesVMWithDefaults() *DataSourcesVM

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

func (*DataSourcesVM) GetCount ¶

func (o *DataSourcesVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*DataSourcesVM) GetCountOk ¶

func (o *DataSourcesVM) GetCountOk() (*int64, bool)

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

func (*DataSourcesVM) GetDataSources ¶

func (o *DataSourcesVM) GetDataSources() []DataSourceVM

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

func (*DataSourcesVM) GetDataSourcesOk ¶

func (o *DataSourcesVM) GetDataSourcesOk() ([]DataSourceVM, bool)

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

func (*DataSourcesVM) GetSkip ¶

func (o *DataSourcesVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*DataSourcesVM) GetSkipOk ¶

func (o *DataSourcesVM) GetSkipOk() (*int32, bool)

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

func (*DataSourcesVM) GetTake ¶

func (o *DataSourcesVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*DataSourcesVM) GetTakeOk ¶

func (o *DataSourcesVM) GetTakeOk() (*int32, bool)

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

func (*DataSourcesVM) HasCount ¶

func (o *DataSourcesVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*DataSourcesVM) HasDataSources ¶

func (o *DataSourcesVM) HasDataSources() bool

HasDataSources returns a boolean if a field has been set.

func (*DataSourcesVM) HasSkip ¶

func (o *DataSourcesVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*DataSourcesVM) HasTake ¶

func (o *DataSourcesVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (DataSourcesVM) MarshalJSON ¶

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

func (*DataSourcesVM) SetCount ¶

func (o *DataSourcesVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*DataSourcesVM) SetDataSources ¶

func (o *DataSourcesVM) SetDataSources(v []DataSourceVM)

SetDataSources gets a reference to the given []DataSourceVM and assigns it to the DataSources field.

func (*DataSourcesVM) SetSkip ¶

func (o *DataSourcesVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*DataSourcesVM) SetTake ¶

func (o *DataSourcesVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (DataSourcesVM) ToMap ¶

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

type DefaultPermissionsVM ¶

type DefaultPermissionsVM struct {
	FilePermissions       *FilePermissions       `json:"filePermissions,omitempty"`
	DataSourcePermissions *DataSourcePermissions `json:"dataSourcePermissions,omitempty"`
	GroupPermissions      *GroupPermissions      `json:"groupPermissions,omitempty"`
	TaskPermissions       *TaskPermissions       `json:"taskPermissions,omitempty"`
}

DefaultPermissionsVM struct for DefaultPermissionsVM

func NewDefaultPermissionsVM ¶

func NewDefaultPermissionsVM() *DefaultPermissionsVM

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

func NewDefaultPermissionsVMWithDefaults ¶

func NewDefaultPermissionsVMWithDefaults() *DefaultPermissionsVM

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

func (*DefaultPermissionsVM) GetDataSourcePermissions ¶

func (o *DefaultPermissionsVM) GetDataSourcePermissions() DataSourcePermissions

GetDataSourcePermissions returns the DataSourcePermissions field value if set, zero value otherwise.

func (*DefaultPermissionsVM) GetDataSourcePermissionsOk ¶

func (o *DefaultPermissionsVM) GetDataSourcePermissionsOk() (*DataSourcePermissions, bool)

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

func (*DefaultPermissionsVM) GetFilePermissions ¶

func (o *DefaultPermissionsVM) GetFilePermissions() FilePermissions

GetFilePermissions returns the FilePermissions field value if set, zero value otherwise.

func (*DefaultPermissionsVM) GetFilePermissionsOk ¶

func (o *DefaultPermissionsVM) GetFilePermissionsOk() (*FilePermissions, bool)

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

func (*DefaultPermissionsVM) GetGroupPermissions ¶

func (o *DefaultPermissionsVM) GetGroupPermissions() GroupPermissions

GetGroupPermissions returns the GroupPermissions field value if set, zero value otherwise.

func (*DefaultPermissionsVM) GetGroupPermissionsOk ¶

func (o *DefaultPermissionsVM) GetGroupPermissionsOk() (*GroupPermissions, bool)

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

func (*DefaultPermissionsVM) GetTaskPermissions ¶

func (o *DefaultPermissionsVM) GetTaskPermissions() TaskPermissions

GetTaskPermissions returns the TaskPermissions field value if set, zero value otherwise.

func (*DefaultPermissionsVM) GetTaskPermissionsOk ¶

func (o *DefaultPermissionsVM) GetTaskPermissionsOk() (*TaskPermissions, bool)

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

func (*DefaultPermissionsVM) HasDataSourcePermissions ¶

func (o *DefaultPermissionsVM) HasDataSourcePermissions() bool

HasDataSourcePermissions returns a boolean if a field has been set.

func (*DefaultPermissionsVM) HasFilePermissions ¶

func (o *DefaultPermissionsVM) HasFilePermissions() bool

HasFilePermissions returns a boolean if a field has been set.

func (*DefaultPermissionsVM) HasGroupPermissions ¶

func (o *DefaultPermissionsVM) HasGroupPermissions() bool

HasGroupPermissions returns a boolean if a field has been set.

func (*DefaultPermissionsVM) HasTaskPermissions ¶

func (o *DefaultPermissionsVM) HasTaskPermissions() bool

HasTaskPermissions returns a boolean if a field has been set.

func (DefaultPermissionsVM) MarshalJSON ¶

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

func (*DefaultPermissionsVM) SetDataSourcePermissions ¶

func (o *DefaultPermissionsVM) SetDataSourcePermissions(v DataSourcePermissions)

SetDataSourcePermissions gets a reference to the given DataSourcePermissions and assigns it to the DataSourcePermissions field.

func (*DefaultPermissionsVM) SetFilePermissions ¶

func (o *DefaultPermissionsVM) SetFilePermissions(v FilePermissions)

SetFilePermissions gets a reference to the given FilePermissions and assigns it to the FilePermissions field.

func (*DefaultPermissionsVM) SetGroupPermissions ¶

func (o *DefaultPermissionsVM) SetGroupPermissions(v GroupPermissions)

SetGroupPermissions gets a reference to the given GroupPermissions and assigns it to the GroupPermissions field.

func (*DefaultPermissionsVM) SetTaskPermissions ¶

func (o *DefaultPermissionsVM) SetTaskPermissions(v TaskPermissions)

SetTaskPermissions gets a reference to the given TaskPermissions and assigns it to the TaskPermissions field.

func (DefaultPermissionsVM) ToMap ¶

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

type DeleteApiKeyVM ¶

type DeleteApiKeyVM struct {
	ApiKey string `json:"apiKey"`
}

DeleteApiKeyVM struct for DeleteApiKeyVM

func NewDeleteApiKeyVM ¶

func NewDeleteApiKeyVM(apiKey string) *DeleteApiKeyVM

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

func NewDeleteApiKeyVMWithDefaults ¶

func NewDeleteApiKeyVMWithDefaults() *DeleteApiKeyVM

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

func (*DeleteApiKeyVM) GetApiKey ¶

func (o *DeleteApiKeyVM) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*DeleteApiKeyVM) GetApiKeyOk ¶

func (o *DeleteApiKeyVM) GetApiKeyOk() (*string, bool)

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

func (DeleteApiKeyVM) MarshalJSON ¶

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

func (*DeleteApiKeyVM) SetApiKey ¶

func (o *DeleteApiKeyVM) SetApiKey(v string)

SetApiKey sets field value

func (DeleteApiKeyVM) ToMap ¶

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

type DownloadApiService ¶

type DownloadApiService service

DownloadApiService DownloadApi service

func (*DownloadApiService) DownloadGetExport ¶

DownloadGetExport Returns a export file with specified id

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

func (*DownloadApiService) DownloadGetExportExecute ¶

func (a *DownloadApiService) DownloadGetExportExecute(r ApiDownloadGetExportRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetExportThumbnail ¶

func (a *DownloadApiService) DownloadGetExportThumbnail(ctx context.Context, id string) ApiDownloadGetExportThumbnailRequest

DownloadGetExportThumbnail Returns export's thumbnail

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

func (*DownloadApiService) DownloadGetExportThumbnailExecute ¶

func (a *DownloadApiService) DownloadGetExportThumbnailExecute(r ApiDownloadGetExportThumbnailRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetExports ¶

func (a *DownloadApiService) DownloadGetExports(ctx context.Context, archiveName string) ApiDownloadGetExportsRequest

DownloadGetExports Returns a zip archive with selected ids

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param archiveName name of the created archive
@return ApiDownloadGetExportsRequest

func (*DownloadApiService) DownloadGetExportsExecute ¶

func (a *DownloadApiService) DownloadGetExportsExecute(r ApiDownloadGetExportsRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetLastSVGExport ¶

func (a *DownloadApiService) DownloadGetLastSVGExport(ctx context.Context, reportId string) ApiDownloadGetLastSVGExportRequest

DownloadGetLastSVGExport returns export, that was created from report with specified id. INTERNAL USAGE ONLY!

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

func (*DownloadApiService) DownloadGetLastSVGExportExecute ¶

func (a *DownloadApiService) DownloadGetLastSVGExportExecute(r ApiDownloadGetLastSVGExportRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetReport ¶

DownloadGetReport Returns a prepared file with specified id

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

func (*DownloadApiService) DownloadGetReportExecute ¶

func (a *DownloadApiService) DownloadGetReportExecute(r ApiDownloadGetReportRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetReportThumbnail ¶

func (a *DownloadApiService) DownloadGetReportThumbnail(ctx context.Context, id string) ApiDownloadGetReportThumbnailRequest

DownloadGetReportThumbnail Returns report's thumbnail

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

func (*DownloadApiService) DownloadGetReportThumbnailExecute ¶

func (a *DownloadApiService) DownloadGetReportThumbnailExecute(r ApiDownloadGetReportThumbnailRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetReports ¶

func (a *DownloadApiService) DownloadGetReports(ctx context.Context, archiveName string) ApiDownloadGetReportsRequest

DownloadGetReports Returns a zip archive with selected files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param archiveName name of the created archive
@return ApiDownloadGetReportsRequest

func (*DownloadApiService) DownloadGetReportsExecute ¶

func (a *DownloadApiService) DownloadGetReportsExecute(r ApiDownloadGetReportsRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetTemplate ¶

func (a *DownloadApiService) DownloadGetTemplate(ctx context.Context, id string) ApiDownloadGetTemplateRequest

DownloadGetTemplate Returns a Template file with specified id

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

func (*DownloadApiService) DownloadGetTemplateExecute ¶

func (a *DownloadApiService) DownloadGetTemplateExecute(r ApiDownloadGetTemplateRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetTemplateThumbnail ¶

func (a *DownloadApiService) DownloadGetTemplateThumbnail(ctx context.Context, id string) ApiDownloadGetTemplateThumbnailRequest

DownloadGetTemplateThumbnail Returns template's thumbnail

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

func (*DownloadApiService) DownloadGetTemplateThumbnailExecute ¶

func (a *DownloadApiService) DownloadGetTemplateThumbnailExecute(r ApiDownloadGetTemplateThumbnailRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DownloadApiService) DownloadGetTemplates ¶

func (a *DownloadApiService) DownloadGetTemplates(ctx context.Context, archiveName string) ApiDownloadGetTemplatesRequest

DownloadGetTemplates Returns a zip archive with selected files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param archiveName name of the created archive
@return ApiDownloadGetTemplatesRequest

func (*DownloadApiService) DownloadGetTemplatesExecute ¶

func (a *DownloadApiService) DownloadGetTemplatesExecute(r ApiDownloadGetTemplatesRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

type EmailTaskVM ¶

type EmailTaskVM struct {
	Body       NullableString `json:"body,omitempty"`
	EnableSsl  *bool          `json:"enableSsl,omitempty"`
	From       NullableString `json:"from,omitempty"`
	IsBodyHtml *bool          `json:"isBodyHtml,omitempty"`
	Port       *int32         `json:"port,omitempty"`
	Server     NullableString `json:"server,omitempty"`
	Subject    NullableString `json:"subject,omitempty"`
	To         []string       `json:"to,omitempty"`
	Username   NullableString `json:"username,omitempty"`
}

EmailTaskVM struct for EmailTaskVM

func NewEmailTaskVM ¶

func NewEmailTaskVM(t string) *EmailTaskVM

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

func NewEmailTaskVMWithDefaults ¶

func NewEmailTaskVMWithDefaults() *EmailTaskVM

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

func (*EmailTaskVM) GetBody ¶

func (o *EmailTaskVM) GetBody() string

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

func (*EmailTaskVM) GetBodyOk ¶

func (o *EmailTaskVM) GetBodyOk() (*string, bool)

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

func (*EmailTaskVM) GetEnableSsl ¶

func (o *EmailTaskVM) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise.

func (*EmailTaskVM) GetEnableSslOk ¶

func (o *EmailTaskVM) GetEnableSslOk() (*bool, bool)

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

func (*EmailTaskVM) GetFrom ¶

func (o *EmailTaskVM) GetFrom() string

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

func (*EmailTaskVM) GetFromOk ¶

func (o *EmailTaskVM) GetFromOk() (*string, bool)

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

func (*EmailTaskVM) GetIsBodyHtml ¶

func (o *EmailTaskVM) GetIsBodyHtml() bool

GetIsBodyHtml returns the IsBodyHtml field value if set, zero value otherwise.

func (*EmailTaskVM) GetIsBodyHtmlOk ¶

func (o *EmailTaskVM) GetIsBodyHtmlOk() (*bool, bool)

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

func (*EmailTaskVM) GetPort ¶

func (o *EmailTaskVM) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*EmailTaskVM) GetPortOk ¶

func (o *EmailTaskVM) GetPortOk() (*int32, bool)

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

func (*EmailTaskVM) GetServer ¶

func (o *EmailTaskVM) GetServer() string

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

func (*EmailTaskVM) GetServerOk ¶

func (o *EmailTaskVM) GetServerOk() (*string, bool)

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

func (*EmailTaskVM) GetSubject ¶

func (o *EmailTaskVM) GetSubject() string

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

func (*EmailTaskVM) GetSubjectOk ¶

func (o *EmailTaskVM) GetSubjectOk() (*string, bool)

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

func (*EmailTaskVM) GetTo ¶

func (o *EmailTaskVM) GetTo() []string

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

func (*EmailTaskVM) GetToOk ¶

func (o *EmailTaskVM) GetToOk() ([]string, bool)

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

func (*EmailTaskVM) GetUsername ¶

func (o *EmailTaskVM) GetUsername() string

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

func (*EmailTaskVM) GetUsernameOk ¶

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

func (*EmailTaskVM) HasBody ¶

func (o *EmailTaskVM) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*EmailTaskVM) HasEnableSsl ¶

func (o *EmailTaskVM) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*EmailTaskVM) HasFrom ¶

func (o *EmailTaskVM) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*EmailTaskVM) HasIsBodyHtml ¶

func (o *EmailTaskVM) HasIsBodyHtml() bool

HasIsBodyHtml returns a boolean if a field has been set.

func (*EmailTaskVM) HasPort ¶

func (o *EmailTaskVM) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*EmailTaskVM) HasServer ¶

func (o *EmailTaskVM) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*EmailTaskVM) HasSubject ¶

func (o *EmailTaskVM) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*EmailTaskVM) HasTo ¶

func (o *EmailTaskVM) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*EmailTaskVM) HasUsername ¶

func (o *EmailTaskVM) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (EmailTaskVM) MarshalJSON ¶

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

func (*EmailTaskVM) SetBody ¶

func (o *EmailTaskVM) SetBody(v string)

SetBody gets a reference to the given NullableString and assigns it to the Body field.

func (*EmailTaskVM) SetBodyNil ¶

func (o *EmailTaskVM) SetBodyNil()

SetBodyNil sets the value for Body to be an explicit nil

func (*EmailTaskVM) SetEnableSsl ¶

func (o *EmailTaskVM) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given bool and assigns it to the EnableSsl field.

func (*EmailTaskVM) SetFrom ¶

func (o *EmailTaskVM) SetFrom(v string)

SetFrom gets a reference to the given NullableString and assigns it to the From field.

func (*EmailTaskVM) SetFromNil ¶

func (o *EmailTaskVM) SetFromNil()

SetFromNil sets the value for From to be an explicit nil

func (*EmailTaskVM) SetIsBodyHtml ¶

func (o *EmailTaskVM) SetIsBodyHtml(v bool)

SetIsBodyHtml gets a reference to the given bool and assigns it to the IsBodyHtml field.

func (*EmailTaskVM) SetPort ¶

func (o *EmailTaskVM) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*EmailTaskVM) SetServer ¶

func (o *EmailTaskVM) SetServer(v string)

SetServer gets a reference to the given NullableString and assigns it to the Server field.

func (*EmailTaskVM) SetServerNil ¶

func (o *EmailTaskVM) SetServerNil()

SetServerNil sets the value for Server to be an explicit nil

func (*EmailTaskVM) SetSubject ¶

func (o *EmailTaskVM) SetSubject(v string)

SetSubject gets a reference to the given NullableString and assigns it to the Subject field.

func (*EmailTaskVM) SetSubjectNil ¶

func (o *EmailTaskVM) SetSubjectNil()

SetSubjectNil sets the value for Subject to be an explicit nil

func (*EmailTaskVM) SetTo ¶

func (o *EmailTaskVM) SetTo(v []string)

SetTo gets a reference to the given []string and assigns it to the To field.

func (*EmailTaskVM) SetUsername ¶

func (o *EmailTaskVM) SetUsername(v string)

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

func (*EmailTaskVM) SetUsernameNil ¶

func (o *EmailTaskVM) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (EmailTaskVM) ToMap ¶

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

func (*EmailTaskVM) UnsetBody ¶

func (o *EmailTaskVM) UnsetBody()

UnsetBody ensures that no value is present for Body, not even an explicit nil

func (*EmailTaskVM) UnsetFrom ¶

func (o *EmailTaskVM) UnsetFrom()

UnsetFrom ensures that no value is present for From, not even an explicit nil

func (*EmailTaskVM) UnsetServer ¶

func (o *EmailTaskVM) UnsetServer()

UnsetServer ensures that no value is present for Server, not even an explicit nil

func (*EmailTaskVM) UnsetSubject ¶

func (o *EmailTaskVM) UnsetSubject()

UnsetSubject ensures that no value is present for Subject, not even an explicit nil

func (*EmailTaskVM) UnsetUsername ¶

func (o *EmailTaskVM) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type EntityType ¶

type EntityType string

EntityType the model 'EntityType'

const (
	NONE            EntityType = "None"
	TEMPLATE        EntityType = "Template"
	TEMPLATE_FOLDER EntityType = "TemplateFolder"
	REPORT          EntityType = "Report"
	REPORT_FOLDER   EntityType = "ReportFolder"
	EXPORT          EntityType = "Export"
	EXPORT_FOLDER   EntityType = "ExportFolder"
)

List of EntityType

func NewEntityTypeFromValue ¶

func NewEntityTypeFromValue(v string) (*EntityType, error)

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

func (EntityType) IsValid ¶

func (v EntityType) IsValid() bool

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

func (EntityType) Ptr ¶

func (v EntityType) Ptr() *EntityType

Ptr returns reference to EntityType value

func (*EntityType) UnmarshalJSON ¶

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

type EntityVM ¶

type EntityVM struct {
	Id            NullableString `json:"id,omitempty"`
	CreatedTime   *time.Time     `json:"createdTime,omitempty"`
	CreatorUserId NullableString `json:"creatorUserId,omitempty"`
	EditedTime    *time.Time     `json:"editedTime,omitempty"`
	EditorUserId  NullableString `json:"editorUserId,omitempty"`
}

EntityVM struct for EntityVM

func NewEntityVM ¶

func NewEntityVM() *EntityVM

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

func NewEntityVMWithDefaults ¶

func NewEntityVMWithDefaults() *EntityVM

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

func (*EntityVM) GetCreatedTime ¶

func (o *EntityVM) GetCreatedTime() time.Time

GetCreatedTime returns the CreatedTime field value if set, zero value otherwise.

func (*EntityVM) GetCreatedTimeOk ¶

func (o *EntityVM) GetCreatedTimeOk() (*time.Time, bool)

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

func (*EntityVM) GetCreatorUserId ¶

func (o *EntityVM) GetCreatorUserId() string

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

func (*EntityVM) GetCreatorUserIdOk ¶

func (o *EntityVM) GetCreatorUserIdOk() (*string, bool)

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

func (*EntityVM) GetEditedTime ¶

func (o *EntityVM) GetEditedTime() time.Time

GetEditedTime returns the EditedTime field value if set, zero value otherwise.

func (*EntityVM) GetEditedTimeOk ¶

func (o *EntityVM) GetEditedTimeOk() (*time.Time, bool)

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

func (*EntityVM) GetEditorUserId ¶

func (o *EntityVM) GetEditorUserId() string

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

func (*EntityVM) GetEditorUserIdOk ¶

func (o *EntityVM) GetEditorUserIdOk() (*string, bool)

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

func (*EntityVM) GetId ¶

func (o *EntityVM) GetId() string

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

func (*EntityVM) GetIdOk ¶

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

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

func (*EntityVM) HasCreatedTime ¶

func (o *EntityVM) HasCreatedTime() bool

HasCreatedTime returns a boolean if a field has been set.

func (*EntityVM) HasCreatorUserId ¶

func (o *EntityVM) HasCreatorUserId() bool

HasCreatorUserId returns a boolean if a field has been set.

func (*EntityVM) HasEditedTime ¶

func (o *EntityVM) HasEditedTime() bool

HasEditedTime returns a boolean if a field has been set.

func (*EntityVM) HasEditorUserId ¶

func (o *EntityVM) HasEditorUserId() bool

HasEditorUserId returns a boolean if a field has been set.

func (*EntityVM) HasId ¶

func (o *EntityVM) HasId() bool

HasId returns a boolean if a field has been set.

func (EntityVM) MarshalJSON ¶

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

func (*EntityVM) SetCreatedTime ¶

func (o *EntityVM) SetCreatedTime(v time.Time)

SetCreatedTime gets a reference to the given time.Time and assigns it to the CreatedTime field.

func (*EntityVM) SetCreatorUserId ¶

func (o *EntityVM) SetCreatorUserId(v string)

SetCreatorUserId gets a reference to the given NullableString and assigns it to the CreatorUserId field.

func (*EntityVM) SetCreatorUserIdNil ¶

func (o *EntityVM) SetCreatorUserIdNil()

SetCreatorUserIdNil sets the value for CreatorUserId to be an explicit nil

func (*EntityVM) SetEditedTime ¶

func (o *EntityVM) SetEditedTime(v time.Time)

SetEditedTime gets a reference to the given time.Time and assigns it to the EditedTime field.

func (*EntityVM) SetEditorUserId ¶

func (o *EntityVM) SetEditorUserId(v string)

SetEditorUserId gets a reference to the given NullableString and assigns it to the EditorUserId field.

func (*EntityVM) SetEditorUserIdNil ¶

func (o *EntityVM) SetEditorUserIdNil()

SetEditorUserIdNil sets the value for EditorUserId to be an explicit nil

func (*EntityVM) SetId ¶

func (o *EntityVM) SetId(v string)

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

func (*EntityVM) SetIdNil ¶

func (o *EntityVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (EntityVM) ToMap ¶

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

func (*EntityVM) UnsetCreatorUserId ¶

func (o *EntityVM) UnsetCreatorUserId()

UnsetCreatorUserId ensures that no value is present for CreatorUserId, not even an explicit nil

func (*EntityVM) UnsetEditorUserId ¶

func (o *EntityVM) UnsetEditorUserId()

UnsetEditorUserId ensures that no value is present for EditorUserId, not even an explicit nil

func (*EntityVM) UnsetId ¶

func (o *EntityVM) UnsetId()

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

type ExportCreateAdminVM ¶

type ExportCreateAdminVM struct {
	OwnerId  string `json:"ownerId"`
	ParentId string `json:"parentId"`
}

ExportCreateAdminVM struct for ExportCreateAdminVM

func NewExportCreateAdminVM ¶

func NewExportCreateAdminVM(ownerId string, parentId string) *ExportCreateAdminVM

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

func NewExportCreateAdminVMWithDefaults ¶

func NewExportCreateAdminVMWithDefaults() *ExportCreateAdminVM

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

func (*ExportCreateAdminVM) GetOwnerId ¶

func (o *ExportCreateAdminVM) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*ExportCreateAdminVM) GetOwnerIdOk ¶

func (o *ExportCreateAdminVM) GetOwnerIdOk() (*string, bool)

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

func (*ExportCreateAdminVM) GetParentId ¶

func (o *ExportCreateAdminVM) GetParentId() string

GetParentId returns the ParentId field value

func (*ExportCreateAdminVM) GetParentIdOk ¶

func (o *ExportCreateAdminVM) GetParentIdOk() (*string, bool)

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

func (ExportCreateAdminVM) MarshalJSON ¶

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

func (*ExportCreateAdminVM) SetOwnerId ¶

func (o *ExportCreateAdminVM) SetOwnerId(v string)

SetOwnerId sets field value

func (*ExportCreateAdminVM) SetParentId ¶

func (o *ExportCreateAdminVM) SetParentId(v string)

SetParentId sets field value

func (ExportCreateAdminVM) ToMap ¶

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

type ExportCreateVM ¶

type ExportCreateVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
	ReportId   NullableString `json:"reportId,omitempty"`
}

ExportCreateVM struct for ExportCreateVM

func NewExportCreateVM ¶

func NewExportCreateVM() *ExportCreateVM

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

func NewExportCreateVMWithDefaults ¶

func NewExportCreateVMWithDefaults() *ExportCreateVM

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

func (*ExportCreateVM) GetReportId ¶

func (o *ExportCreateVM) GetReportId() string

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

func (*ExportCreateVM) GetReportIdOk ¶

func (o *ExportCreateVM) GetReportIdOk() (*string, bool)

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

func (*ExportCreateVM) GetTemplateId ¶

func (o *ExportCreateVM) GetTemplateId() string

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

func (*ExportCreateVM) GetTemplateIdOk ¶

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

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

func (*ExportCreateVM) HasReportId ¶

func (o *ExportCreateVM) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*ExportCreateVM) HasTemplateId ¶

func (o *ExportCreateVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (ExportCreateVM) MarshalJSON ¶

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

func (*ExportCreateVM) SetReportId ¶

func (o *ExportCreateVM) SetReportId(v string)

SetReportId gets a reference to the given NullableString and assigns it to the ReportId field.

func (*ExportCreateVM) SetReportIdNil ¶

func (o *ExportCreateVM) SetReportIdNil()

SetReportIdNil sets the value for ReportId to be an explicit nil

func (*ExportCreateVM) SetTemplateId ¶

func (o *ExportCreateVM) SetTemplateId(v string)

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

func (*ExportCreateVM) SetTemplateIdNil ¶

func (o *ExportCreateVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (ExportCreateVM) ToMap ¶

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

func (*ExportCreateVM) UnsetReportId ¶

func (o *ExportCreateVM) UnsetReportId()

UnsetReportId ensures that no value is present for ReportId, not even an explicit nil

func (*ExportCreateVM) UnsetTemplateId ¶

func (o *ExportCreateVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type ExportFolderCreateVM ¶

type ExportFolderCreateVM struct {
}

ExportFolderCreateVM struct for ExportFolderCreateVM

func NewExportFolderCreateVM ¶

func NewExportFolderCreateVM() *ExportFolderCreateVM

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

func NewExportFolderCreateVMWithDefaults ¶

func NewExportFolderCreateVMWithDefaults() *ExportFolderCreateVM

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

func (ExportFolderCreateVM) MarshalJSON ¶

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

func (ExportFolderCreateVM) ToMap ¶

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

type ExportFormat ¶

type ExportFormat string

ExportFormat the model 'ExportFormat'

const (
	PDF      ExportFormat = "Pdf"
	HTML     ExportFormat = "Html"
	MHT      ExportFormat = "Mht"
	IMAGE    ExportFormat = "Image"
	BIFF8    ExportFormat = "Biff8"
	CSV      ExportFormat = "Csv"
	DBF      ExportFormat = "Dbf"
	JSON     ExportFormat = "Json"
	LA_TE_X  ExportFormat = "LaTeX"
	ODT      ExportFormat = "Odt"
	ODS      ExportFormat = "Ods"
	DOCX     ExportFormat = "Docx"
	PPTX     ExportFormat = "Pptx"
	XLSX     ExportFormat = "Xlsx"
	XPS      ExportFormat = "Xps"
	PPML     ExportFormat = "Ppml"
	PS       ExportFormat = "PS"
	RICHTEXT ExportFormat = "Richtext"
	SVG      ExportFormat = "Svg"
	TEXT     ExportFormat = "Text"
	XAML     ExportFormat = "Xaml"
	XML      ExportFormat = "Xml"
	ZPL      ExportFormat = "Zpl"
)

List of ExportFormat

func NewExportFormatFromValue ¶

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

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

func (ExportFormat) IsValid ¶

func (v ExportFormat) IsValid() bool

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

func (ExportFormat) Ptr ¶

func (v ExportFormat) Ptr() *ExportFormat

Ptr returns reference to ExportFormat value

func (*ExportFormat) UnmarshalJSON ¶

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

type ExportReportTaskVM ¶

type ExportReportTaskVM struct {
	ExportParameters map[string]string `json:"exportParameters,omitempty"`
	Format           *ExportFormat     `json:"format,omitempty"`
	PagesCount       *int32            `json:"pagesCount,omitempty"`
	T                string            `json:"$t"`
}

ExportReportTaskVM struct for ExportReportTaskVM

func NewExportReportTaskVM ¶

func NewExportReportTaskVM(t string) *ExportReportTaskVM

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

func NewExportReportTaskVMWithDefaults ¶

func NewExportReportTaskVMWithDefaults() *ExportReportTaskVM

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

func (*ExportReportTaskVM) GetExportParameters ¶

func (o *ExportReportTaskVM) GetExportParameters() map[string]string

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

func (*ExportReportTaskVM) GetExportParametersOk ¶

func (o *ExportReportTaskVM) GetExportParametersOk() (*map[string]string, bool)

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

func (*ExportReportTaskVM) GetFormat ¶

func (o *ExportReportTaskVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*ExportReportTaskVM) GetFormatOk ¶

func (o *ExportReportTaskVM) GetFormatOk() (*ExportFormat, bool)

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

func (*ExportReportTaskVM) GetPagesCount ¶

func (o *ExportReportTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise.

func (*ExportReportTaskVM) GetPagesCountOk ¶

func (o *ExportReportTaskVM) GetPagesCountOk() (*int32, bool)

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

func (*ExportReportTaskVM) GetT ¶

func (o *ExportReportTaskVM) GetT() string

GetT returns the T field value

func (*ExportReportTaskVM) GetTOk ¶

func (o *ExportReportTaskVM) GetTOk() (*string, bool)

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

func (*ExportReportTaskVM) HasExportParameters ¶

func (o *ExportReportTaskVM) HasExportParameters() bool

HasExportParameters returns a boolean if a field has been set.

func (*ExportReportTaskVM) HasFormat ¶

func (o *ExportReportTaskVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*ExportReportTaskVM) HasPagesCount ¶

func (o *ExportReportTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (ExportReportTaskVM) MarshalJSON ¶

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

func (*ExportReportTaskVM) SetExportParameters ¶

func (o *ExportReportTaskVM) SetExportParameters(v map[string]string)

SetExportParameters gets a reference to the given map[string]string and assigns it to the ExportParameters field.

func (*ExportReportTaskVM) SetFormat ¶

func (o *ExportReportTaskVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given ExportFormat and assigns it to the Format field.

func (*ExportReportTaskVM) SetPagesCount ¶

func (o *ExportReportTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given int32 and assigns it to the PagesCount field.

func (*ExportReportTaskVM) SetT ¶

func (o *ExportReportTaskVM) SetT(v string)

SetT sets field value

func (ExportReportTaskVM) ToMap ¶

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

type ExportReportVM ¶

type ExportReportVM struct {
	FileName         NullableString    `json:"fileName,omitempty"`
	FolderId         NullableString    `json:"folderId,omitempty"`
	Locale           NullableString    `json:"locale,omitempty"`
	PagesCount       NullableInt32     `json:"pagesCount,omitempty"`
	Format           *ExportFormat     `json:"format,omitempty"`
	ExportParameters map[string]string `json:"exportParameters,omitempty"`
}

ExportReportVM struct for ExportReportVM

func NewExportReportVM ¶

func NewExportReportVM() *ExportReportVM

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

func NewExportReportVMWithDefaults ¶

func NewExportReportVMWithDefaults() *ExportReportVM

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

func (*ExportReportVM) GetExportParameters ¶

func (o *ExportReportVM) GetExportParameters() map[string]string

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

func (*ExportReportVM) GetExportParametersOk ¶

func (o *ExportReportVM) GetExportParametersOk() (*map[string]string, bool)

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

func (*ExportReportVM) GetFileName ¶

func (o *ExportReportVM) GetFileName() string

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

func (*ExportReportVM) GetFileNameOk ¶

func (o *ExportReportVM) GetFileNameOk() (*string, bool)

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

func (*ExportReportVM) GetFolderId ¶

func (o *ExportReportVM) GetFolderId() string

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

func (*ExportReportVM) GetFolderIdOk ¶

func (o *ExportReportVM) GetFolderIdOk() (*string, bool)

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

func (*ExportReportVM) GetFormat ¶

func (o *ExportReportVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*ExportReportVM) GetFormatOk ¶

func (o *ExportReportVM) GetFormatOk() (*ExportFormat, bool)

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

func (*ExportReportVM) GetLocale ¶

func (o *ExportReportVM) GetLocale() string

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

func (*ExportReportVM) GetLocaleOk ¶

func (o *ExportReportVM) GetLocaleOk() (*string, bool)

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

func (*ExportReportVM) GetPagesCount ¶

func (o *ExportReportVM) GetPagesCount() int32

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

func (*ExportReportVM) GetPagesCountOk ¶

func (o *ExportReportVM) GetPagesCountOk() (*int32, bool)

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

func (*ExportReportVM) HasExportParameters ¶

func (o *ExportReportVM) HasExportParameters() bool

HasExportParameters returns a boolean if a field has been set.

func (*ExportReportVM) HasFileName ¶

func (o *ExportReportVM) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*ExportReportVM) HasFolderId ¶

func (o *ExportReportVM) HasFolderId() bool

HasFolderId returns a boolean if a field has been set.

func (*ExportReportVM) HasFormat ¶

func (o *ExportReportVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*ExportReportVM) HasLocale ¶

func (o *ExportReportVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*ExportReportVM) HasPagesCount ¶

func (o *ExportReportVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (ExportReportVM) MarshalJSON ¶

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

func (*ExportReportVM) SetExportParameters ¶

func (o *ExportReportVM) SetExportParameters(v map[string]string)

SetExportParameters gets a reference to the given map[string]string and assigns it to the ExportParameters field.

func (*ExportReportVM) SetFileName ¶

func (o *ExportReportVM) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*ExportReportVM) SetFileNameNil ¶

func (o *ExportReportVM) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*ExportReportVM) SetFolderId ¶

func (o *ExportReportVM) SetFolderId(v string)

SetFolderId gets a reference to the given NullableString and assigns it to the FolderId field.

func (*ExportReportVM) SetFolderIdNil ¶

func (o *ExportReportVM) SetFolderIdNil()

SetFolderIdNil sets the value for FolderId to be an explicit nil

func (*ExportReportVM) SetFormat ¶

func (o *ExportReportVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given ExportFormat and assigns it to the Format field.

func (*ExportReportVM) SetLocale ¶

func (o *ExportReportVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*ExportReportVM) SetLocaleNil ¶

func (o *ExportReportVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*ExportReportVM) SetPagesCount ¶

func (o *ExportReportVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given NullableInt32 and assigns it to the PagesCount field.

func (*ExportReportVM) SetPagesCountNil ¶

func (o *ExportReportVM) SetPagesCountNil()

SetPagesCountNil sets the value for PagesCount to be an explicit nil

func (ExportReportVM) ToMap ¶

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

func (*ExportReportVM) UnsetFileName ¶

func (o *ExportReportVM) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*ExportReportVM) UnsetFolderId ¶

func (o *ExportReportVM) UnsetFolderId()

UnsetFolderId ensures that no value is present for FolderId, not even an explicit nil

func (*ExportReportVM) UnsetLocale ¶

func (o *ExportReportVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

func (*ExportReportVM) UnsetPagesCount ¶

func (o *ExportReportVM) UnsetPagesCount()

UnsetPagesCount ensures that no value is present for PagesCount, not even an explicit nil

type ExportTemplateTaskVM ¶

type ExportTemplateTaskVM struct {
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

ExportTemplateTaskVM struct for ExportTemplateTaskVM

func NewExportTemplateTaskVM ¶

func NewExportTemplateTaskVM(t string) *ExportTemplateTaskVM

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

func NewExportTemplateTaskVMWithDefaults ¶

func NewExportTemplateTaskVMWithDefaults() *ExportTemplateTaskVM

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

func (*ExportTemplateTaskVM) GetReportParameters ¶

func (o *ExportTemplateTaskVM) GetReportParameters() map[string]string

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

func (*ExportTemplateTaskVM) GetReportParametersOk ¶

func (o *ExportTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

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

func (*ExportTemplateTaskVM) HasReportParameters ¶

func (o *ExportTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (ExportTemplateTaskVM) MarshalJSON ¶

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

func (*ExportTemplateTaskVM) SetReportParameters ¶

func (o *ExportTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (ExportTemplateTaskVM) ToMap ¶

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

type ExportTemplateVM ¶

type ExportTemplateVM struct {
	FileName         NullableString    `json:"fileName,omitempty"`
	FolderId         NullableString    `json:"folderId,omitempty"`
	Locale           NullableString    `json:"locale,omitempty"`
	PagesCount       NullableInt32     `json:"pagesCount,omitempty"`
	Format           *ExportFormat     `json:"format,omitempty"`
	ExportParameters map[string]string `json:"exportParameters,omitempty"`
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

ExportTemplateVM struct for ExportTemplateVM

func NewExportTemplateVM ¶

func NewExportTemplateVM() *ExportTemplateVM

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

func NewExportTemplateVMWithDefaults ¶

func NewExportTemplateVMWithDefaults() *ExportTemplateVM

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

func (*ExportTemplateVM) GetExportParameters ¶

func (o *ExportTemplateVM) GetExportParameters() map[string]string

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

func (*ExportTemplateVM) GetExportParametersOk ¶

func (o *ExportTemplateVM) GetExportParametersOk() (*map[string]string, bool)

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

func (*ExportTemplateVM) GetFileName ¶

func (o *ExportTemplateVM) GetFileName() string

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

func (*ExportTemplateVM) GetFileNameOk ¶

func (o *ExportTemplateVM) GetFileNameOk() (*string, bool)

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

func (*ExportTemplateVM) GetFolderId ¶

func (o *ExportTemplateVM) GetFolderId() string

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

func (*ExportTemplateVM) GetFolderIdOk ¶

func (o *ExportTemplateVM) GetFolderIdOk() (*string, bool)

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

func (*ExportTemplateVM) GetFormat ¶

func (o *ExportTemplateVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*ExportTemplateVM) GetFormatOk ¶

func (o *ExportTemplateVM) GetFormatOk() (*ExportFormat, bool)

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

func (*ExportTemplateVM) GetLocale ¶

func (o *ExportTemplateVM) GetLocale() string

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

func (*ExportTemplateVM) GetLocaleOk ¶

func (o *ExportTemplateVM) GetLocaleOk() (*string, bool)

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

func (*ExportTemplateVM) GetPagesCount ¶

func (o *ExportTemplateVM) GetPagesCount() int32

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

func (*ExportTemplateVM) GetPagesCountOk ¶

func (o *ExportTemplateVM) GetPagesCountOk() (*int32, bool)

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

func (*ExportTemplateVM) GetReportParameters ¶

func (o *ExportTemplateVM) GetReportParameters() map[string]string

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

func (*ExportTemplateVM) GetReportParametersOk ¶

func (o *ExportTemplateVM) GetReportParametersOk() (*map[string]string, bool)

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

func (*ExportTemplateVM) HasExportParameters ¶

func (o *ExportTemplateVM) HasExportParameters() bool

HasExportParameters returns a boolean if a field has been set.

func (*ExportTemplateVM) HasFileName ¶

func (o *ExportTemplateVM) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*ExportTemplateVM) HasFolderId ¶

func (o *ExportTemplateVM) HasFolderId() bool

HasFolderId returns a boolean if a field has been set.

func (*ExportTemplateVM) HasFormat ¶

func (o *ExportTemplateVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*ExportTemplateVM) HasLocale ¶

func (o *ExportTemplateVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*ExportTemplateVM) HasPagesCount ¶

func (o *ExportTemplateVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (*ExportTemplateVM) HasReportParameters ¶

func (o *ExportTemplateVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (ExportTemplateVM) MarshalJSON ¶

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

func (*ExportTemplateVM) SetExportParameters ¶

func (o *ExportTemplateVM) SetExportParameters(v map[string]string)

SetExportParameters gets a reference to the given map[string]string and assigns it to the ExportParameters field.

func (*ExportTemplateVM) SetFileName ¶

func (o *ExportTemplateVM) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*ExportTemplateVM) SetFileNameNil ¶

func (o *ExportTemplateVM) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*ExportTemplateVM) SetFolderId ¶

func (o *ExportTemplateVM) SetFolderId(v string)

SetFolderId gets a reference to the given NullableString and assigns it to the FolderId field.

func (*ExportTemplateVM) SetFolderIdNil ¶

func (o *ExportTemplateVM) SetFolderIdNil()

SetFolderIdNil sets the value for FolderId to be an explicit nil

func (*ExportTemplateVM) SetFormat ¶

func (o *ExportTemplateVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given ExportFormat and assigns it to the Format field.

func (*ExportTemplateVM) SetLocale ¶

func (o *ExportTemplateVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*ExportTemplateVM) SetLocaleNil ¶

func (o *ExportTemplateVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*ExportTemplateVM) SetPagesCount ¶

func (o *ExportTemplateVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given NullableInt32 and assigns it to the PagesCount field.

func (*ExportTemplateVM) SetPagesCountNil ¶

func (o *ExportTemplateVM) SetPagesCountNil()

SetPagesCountNil sets the value for PagesCount to be an explicit nil

func (*ExportTemplateVM) SetReportParameters ¶

func (o *ExportTemplateVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (ExportTemplateVM) ToMap ¶

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

func (*ExportTemplateVM) UnsetFileName ¶

func (o *ExportTemplateVM) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*ExportTemplateVM) UnsetFolderId ¶

func (o *ExportTemplateVM) UnsetFolderId()

UnsetFolderId ensures that no value is present for FolderId, not even an explicit nil

func (*ExportTemplateVM) UnsetLocale ¶

func (o *ExportTemplateVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

func (*ExportTemplateVM) UnsetPagesCount ¶

func (o *ExportTemplateVM) UnsetPagesCount()

UnsetPagesCount ensures that no value is present for PagesCount, not even an explicit nil

type ExportVM ¶

type ExportVM struct {
	Format     *ExportFormat  `json:"format,omitempty"`
	ReportId   NullableString `json:"reportId,omitempty"`
	TemplateId NullableString `json:"templateId,omitempty"`
}

ExportVM struct for ExportVM

func NewExportVM ¶

func NewExportVM() *ExportVM

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

func NewExportVMWithDefaults ¶

func NewExportVMWithDefaults() *ExportVM

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

func (*ExportVM) GetFormat ¶

func (o *ExportVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*ExportVM) GetFormatOk ¶

func (o *ExportVM) GetFormatOk() (*ExportFormat, bool)

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

func (*ExportVM) GetReportId ¶

func (o *ExportVM) GetReportId() string

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

func (*ExportVM) GetReportIdOk ¶

func (o *ExportVM) GetReportIdOk() (*string, bool)

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

func (*ExportVM) GetTemplateId ¶

func (o *ExportVM) GetTemplateId() string

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

func (*ExportVM) GetTemplateIdOk ¶

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

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

func (*ExportVM) HasFormat ¶

func (o *ExportVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*ExportVM) HasReportId ¶

func (o *ExportVM) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (*ExportVM) HasTemplateId ¶

func (o *ExportVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (ExportVM) MarshalJSON ¶

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

func (*ExportVM) SetFormat ¶

func (o *ExportVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given ExportFormat and assigns it to the Format field.

func (*ExportVM) SetReportId ¶

func (o *ExportVM) SetReportId(v string)

SetReportId gets a reference to the given NullableString and assigns it to the ReportId field.

func (*ExportVM) SetReportIdNil ¶

func (o *ExportVM) SetReportIdNil()

SetReportIdNil sets the value for ReportId to be an explicit nil

func (*ExportVM) SetTemplateId ¶

func (o *ExportVM) SetTemplateId(v string)

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

func (*ExportVM) SetTemplateIdNil ¶

func (o *ExportVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (ExportVM) ToMap ¶

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

func (*ExportVM) UnsetReportId ¶

func (o *ExportVM) UnsetReportId()

UnsetReportId ensures that no value is present for ReportId, not even an explicit nil

func (*ExportVM) UnsetTemplateId ¶

func (o *ExportVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type ExportVMFilesVMBase ¶

type ExportVMFilesVMBase struct {
	Files []ExportVM `json:"files,omitempty"`
	Count *int64     `json:"count,omitempty"`
	Skip  *int32     `json:"skip,omitempty"`
	Take  *int32     `json:"take,omitempty"`
}

ExportVMFilesVMBase struct for ExportVMFilesVMBase

func NewExportVMFilesVMBase ¶

func NewExportVMFilesVMBase() *ExportVMFilesVMBase

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

func NewExportVMFilesVMBaseWithDefaults ¶

func NewExportVMFilesVMBaseWithDefaults() *ExportVMFilesVMBase

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

func (*ExportVMFilesVMBase) GetCount ¶

func (o *ExportVMFilesVMBase) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ExportVMFilesVMBase) GetCountOk ¶

func (o *ExportVMFilesVMBase) GetCountOk() (*int64, bool)

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

func (*ExportVMFilesVMBase) GetFiles ¶

func (o *ExportVMFilesVMBase) GetFiles() []ExportVM

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

func (*ExportVMFilesVMBase) GetFilesOk ¶

func (o *ExportVMFilesVMBase) GetFilesOk() ([]ExportVM, bool)

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

func (*ExportVMFilesVMBase) GetSkip ¶

func (o *ExportVMFilesVMBase) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*ExportVMFilesVMBase) GetSkipOk ¶

func (o *ExportVMFilesVMBase) GetSkipOk() (*int32, bool)

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

func (*ExportVMFilesVMBase) GetTake ¶

func (o *ExportVMFilesVMBase) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*ExportVMFilesVMBase) GetTakeOk ¶

func (o *ExportVMFilesVMBase) GetTakeOk() (*int32, bool)

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

func (*ExportVMFilesVMBase) HasCount ¶

func (o *ExportVMFilesVMBase) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ExportVMFilesVMBase) HasFiles ¶

func (o *ExportVMFilesVMBase) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*ExportVMFilesVMBase) HasSkip ¶

func (o *ExportVMFilesVMBase) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*ExportVMFilesVMBase) HasTake ¶

func (o *ExportVMFilesVMBase) HasTake() bool

HasTake returns a boolean if a field has been set.

func (ExportVMFilesVMBase) MarshalJSON ¶

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

func (*ExportVMFilesVMBase) SetCount ¶

func (o *ExportVMFilesVMBase) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ExportVMFilesVMBase) SetFiles ¶

func (o *ExportVMFilesVMBase) SetFiles(v []ExportVM)

SetFiles gets a reference to the given []ExportVM and assigns it to the Files field.

func (*ExportVMFilesVMBase) SetSkip ¶

func (o *ExportVMFilesVMBase) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*ExportVMFilesVMBase) SetTake ¶

func (o *ExportVMFilesVMBase) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (ExportVMFilesVMBase) ToMap ¶

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

type ExportsApiService ¶

type ExportsApiService service

ExportsApiService ExportsApi service

func (*ExportsApiService) ExportFolderAndFileClearRecycleBin ¶

func (a *ExportsApiService) ExportFolderAndFileClearRecycleBin(ctx context.Context, subscriptionId string) ApiExportFolderAndFileClearRecycleBinRequest

ExportFolderAndFileClearRecycleBin Delete all folders and files from recycle bin

User with a Delete RecycleBin permission can access this method.

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

func (*ExportsApiService) ExportFolderAndFileClearRecycleBinExecute ¶

func (a *ExportsApiService) ExportFolderAndFileClearRecycleBinExecute(r ApiExportFolderAndFileClearRecycleBinRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFolderAndFileDeleteFiles ¶

func (a *ExportsApiService) ExportFolderAndFileDeleteFiles(ctx context.Context, subscriptionId string) ApiExportFolderAndFileDeleteFilesRequest

ExportFolderAndFileDeleteFiles Delete folders and files

User with a Delete permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id of current subscription
@return ApiExportFolderAndFileDeleteFilesRequest

func (*ExportsApiService) ExportFolderAndFileDeleteFilesExecute ¶

func (a *ExportsApiService) ExportFolderAndFileDeleteFilesExecute(r ApiExportFolderAndFileDeleteFilesRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFolderAndFileGetCount ¶

func (a *ExportsApiService) ExportFolderAndFileGetCount(ctx context.Context, id string) ApiExportFolderAndFileGetCountRequest

ExportFolderAndFileGetCount Get count of files and folders what contains in a specified folder

User with a Get Count permission can access this method.

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

func (*ExportsApiService) ExportFolderAndFileGetCountExecute ¶

func (a *ExportsApiService) ExportFolderAndFileGetCountExecute(r ApiExportFolderAndFileGetCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*ExportsApiService) ExportFolderAndFileGetFoldersAndFiles ¶

func (a *ExportsApiService) ExportFolderAndFileGetFoldersAndFiles(ctx context.Context, id string) ApiExportFolderAndFileGetFoldersAndFilesRequest

ExportFolderAndFileGetFoldersAndFiles Get all folders and files from specified folder

User with a Get Entity permission can access this method.

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

func (*ExportsApiService) ExportFolderAndFileGetFoldersAndFilesExecute ¶

func (a *ExportsApiService) ExportFolderAndFileGetFoldersAndFilesExecute(r ApiExportFolderAndFileGetFoldersAndFilesRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*ExportsApiService) ExportFolderAndFileGetRecycleBinFoldersAndFiles ¶

func (a *ExportsApiService) ExportFolderAndFileGetRecycleBinFoldersAndFiles(ctx context.Context, subscriptionId string) ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest

ExportFolderAndFileGetRecycleBinFoldersAndFiles Get all folders and files from recycle bin

User with a Get DeletedFiles permission can access this method.

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

func (*ExportsApiService) ExportFolderAndFileGetRecycleBinFoldersAndFilesExecute ¶

func (a *ExportsApiService) ExportFolderAndFileGetRecycleBinFoldersAndFilesExecute(r ApiExportFolderAndFileGetRecycleBinFoldersAndFilesRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*ExportsApiService) ExportFolderAndFileRecoverAllFromRecycleBin ¶

func (a *ExportsApiService) ExportFolderAndFileRecoverAllFromRecycleBin(ctx context.Context, subscriptionId string) ApiExportFolderAndFileRecoverAllFromRecycleBinRequest

ExportFolderAndFileRecoverAllFromRecycleBin Recover all folders and files from recycle bin

User with a Create RecycleBin permission can access this method.

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

func (*ExportsApiService) ExportFolderAndFileRecoverAllFromRecycleBinExecute ¶

func (a *ExportsApiService) ExportFolderAndFileRecoverAllFromRecycleBinExecute(r ApiExportFolderAndFileRecoverAllFromRecycleBinRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFoldersCalculateFolderSize ¶

func (a *ExportsApiService) ExportFoldersCalculateFolderSize(ctx context.Context, id string) ApiExportFoldersCalculateFolderSizeRequest

ExportFoldersCalculateFolderSize Get specified folder, calculate it's size

User with a Get Entity permission can access this method.

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

func (*ExportsApiService) ExportFoldersCalculateFolderSizeExecute ¶

func (a *ExportsApiService) ExportFoldersCalculateFolderSizeExecute(r ApiExportFoldersCalculateFolderSizeRequest) (*FolderSizeVM, *http.Response, error)

Execute executes the request

@return FolderSizeVM

func (*ExportsApiService) ExportFoldersCopyFolder ¶

func (a *ExportsApiService) ExportFoldersCopyFolder(ctx context.Context, id string, folderId string) ApiExportFoldersCopyFolderRequest

ExportFoldersCopyFolder Move folder to a specified folder

User with a Update Place permission for a folder and Create Entity for a Parent Folder can access this method.

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

func (*ExportsApiService) ExportFoldersCopyFolderExecute ¶

func (a *ExportsApiService) ExportFoldersCopyFolderExecute(r ApiExportFoldersCopyFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersDeleteFolder ¶

func (a *ExportsApiService) ExportFoldersDeleteFolder(ctx context.Context, id string) ApiExportFoldersDeleteFolderRequest

ExportFoldersDeleteFolder Delete specified folder

User with a Delete Entity permission can access this method.

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

func (*ExportsApiService) ExportFoldersDeleteFolderExecute ¶

func (a *ExportsApiService) ExportFoldersDeleteFolderExecute(r ApiExportFoldersDeleteFolderRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFoldersGetBreadcrumbs ¶

func (a *ExportsApiService) ExportFoldersGetBreadcrumbs(ctx context.Context, id string) ApiExportFoldersGetBreadcrumbsRequest

ExportFoldersGetBreadcrumbs Get specified folder breadcrumbs

User with a Get Entity permission can access this method.

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

func (*ExportsApiService) ExportFoldersGetBreadcrumbsExecute ¶

func (a *ExportsApiService) ExportFoldersGetBreadcrumbsExecute(r ApiExportFoldersGetBreadcrumbsRequest) (*BreadcrumbsVM, *http.Response, error)

Execute executes the request

@return BreadcrumbsVM

func (*ExportsApiService) ExportFoldersGetFolder ¶

func (a *ExportsApiService) ExportFoldersGetFolder(ctx context.Context, id string) ApiExportFoldersGetFolderRequest

ExportFoldersGetFolder Get specified folder

User with a Get Entity permission can access this method.

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

func (*ExportsApiService) ExportFoldersGetFolderExecute ¶

func (a *ExportsApiService) ExportFoldersGetFolderExecute(r ApiExportFoldersGetFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersGetFolders ¶

func (a *ExportsApiService) ExportFoldersGetFolders(ctx context.Context, id string) ApiExportFoldersGetFoldersRequest

ExportFoldersGetFolders Get all folders from specified folder

User with a Get Entity permission can access this method.

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

func (*ExportsApiService) ExportFoldersGetFoldersCount ¶

func (a *ExportsApiService) ExportFoldersGetFoldersCount(ctx context.Context, id string) ApiExportFoldersGetFoldersCountRequest

ExportFoldersGetFoldersCount Get count of folders what contains in a specified folder

User with a Get Count permission can access this method.

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

func (*ExportsApiService) ExportFoldersGetFoldersCountExecute ¶

func (a *ExportsApiService) ExportFoldersGetFoldersCountExecute(r ApiExportFoldersGetFoldersCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*ExportsApiService) ExportFoldersGetFoldersExecute ¶

func (a *ExportsApiService) ExportFoldersGetFoldersExecute(r ApiExportFoldersGetFoldersRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*ExportsApiService) ExportFoldersGetOrCreate ¶

func (a *ExportsApiService) ExportFoldersGetOrCreate(ctx context.Context) ApiExportFoldersGetOrCreateRequest

ExportFoldersGetOrCreate Get specified folder

User with a Get Entity permission can access this method.

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

func (*ExportsApiService) ExportFoldersGetOrCreateExecute ¶

func (a *ExportsApiService) ExportFoldersGetOrCreateExecute(r ApiExportFoldersGetOrCreateRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersGetPermissions ¶

func (a *ExportsApiService) ExportFoldersGetPermissions(ctx context.Context, id string) ApiExportFoldersGetPermissionsRequest

ExportFoldersGetPermissions Get all folder permissions

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

func (*ExportsApiService) ExportFoldersGetPermissionsExecute ¶

func (a *ExportsApiService) ExportFoldersGetPermissionsExecute(r ApiExportFoldersGetPermissionsRequest) (*FilePermissionsVM, *http.Response, error)

Execute executes the request

@return FilePermissionsVM

func (*ExportsApiService) ExportFoldersGetRootFolder ¶

func (a *ExportsApiService) ExportFoldersGetRootFolder(ctx context.Context) ApiExportFoldersGetRootFolderRequest

ExportFoldersGetRootFolder Get user's root folder (without parents)

> Breakchange. Now user model doesn't contain a root folders. This method can return error 400 and 404 when subscription is not found.

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

func (*ExportsApiService) ExportFoldersGetRootFolderExecute ¶

func (a *ExportsApiService) ExportFoldersGetRootFolderExecute(r ApiExportFoldersGetRootFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersMoveFolder ¶

func (a *ExportsApiService) ExportFoldersMoveFolder(ctx context.Context, id string, folderId string) ApiExportFoldersMoveFolderRequest

ExportFoldersMoveFolder Move folder to a specified folder

User with a Update Place permission for a folder and Create Entity for a Parent Folder can access this method.

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

func (*ExportsApiService) ExportFoldersMoveFolderExecute ¶

func (a *ExportsApiService) ExportFoldersMoveFolderExecute(r ApiExportFoldersMoveFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersMoveFolderToBin ¶

func (a *ExportsApiService) ExportFoldersMoveFolderToBin(ctx context.Context, id string) ApiExportFoldersMoveFolderToBinRequest

ExportFoldersMoveFolderToBin Move specified folder to recycle bin

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiExportFoldersMoveFolderToBinRequest

func (*ExportsApiService) ExportFoldersMoveFolderToBinExecute ¶

func (a *ExportsApiService) ExportFoldersMoveFolderToBinExecute(r ApiExportFoldersMoveFolderToBinRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFoldersPostFolder ¶

func (a *ExportsApiService) ExportFoldersPostFolder(ctx context.Context, id string) ApiExportFoldersPostFolderRequest

ExportFoldersPostFolder Create folder

User with a Create Entity permisison can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of parent folder id
@return ApiExportFoldersPostFolderRequest

func (*ExportsApiService) ExportFoldersPostFolderExecute ¶

func (a *ExportsApiService) ExportFoldersPostFolderExecute(r ApiExportFoldersPostFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersRecoverFolder ¶

func (a *ExportsApiService) ExportFoldersRecoverFolder(ctx context.Context, id string) ApiExportFoldersRecoverFolderRequest

ExportFoldersRecoverFolder Recover specified folder

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiExportFoldersRecoverFolderRequest

func (*ExportsApiService) ExportFoldersRecoverFolderExecute ¶

func (a *ExportsApiService) ExportFoldersRecoverFolderExecute(r ApiExportFoldersRecoverFolderRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFoldersRenameFolder ¶

func (a *ExportsApiService) ExportFoldersRenameFolder(ctx context.Context, id string) ApiExportFoldersRenameFolderRequest

ExportFoldersRenameFolder Rename a folder

User with a Update Name permision can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportFoldersRenameFolderRequest

func (*ExportsApiService) ExportFoldersRenameFolderExecute ¶

func (a *ExportsApiService) ExportFoldersRenameFolderExecute(r ApiExportFoldersRenameFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersUpdateIcon ¶

func (a *ExportsApiService) ExportFoldersUpdateIcon(ctx context.Context, id string) ApiExportFoldersUpdateIconRequest

ExportFoldersUpdateIcon Update a folder's icon

User with a Update Icon permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of folder
@return ApiExportFoldersUpdateIconRequest

func (*ExportsApiService) ExportFoldersUpdateIconExecute ¶

func (a *ExportsApiService) ExportFoldersUpdateIconExecute(r ApiExportFoldersUpdateIconRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportFoldersUpdatePermissions ¶

func (a *ExportsApiService) ExportFoldersUpdatePermissions(ctx context.Context, id string) ApiExportFoldersUpdatePermissionsRequest

ExportFoldersUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportFoldersUpdatePermissionsRequest

func (*ExportsApiService) ExportFoldersUpdatePermissionsExecute ¶

func (a *ExportsApiService) ExportFoldersUpdatePermissionsExecute(r ApiExportFoldersUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportFoldersUpdateTags ¶

func (a *ExportsApiService) ExportFoldersUpdateTags(ctx context.Context, id string) ApiExportFoldersUpdateTagsRequest

ExportFoldersUpdateTags Update tags

User with a Update Tags permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportFoldersUpdateTagsRequest

func (*ExportsApiService) ExportFoldersUpdateTagsExecute ¶

func (a *ExportsApiService) ExportFoldersUpdateTagsExecute(r ApiExportFoldersUpdateTagsRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ExportsApiService) ExportsCopyFile ¶

func (a *ExportsApiService) ExportsCopyFile(ctx context.Context, id string, folderId string) ApiExportsCopyFileRequest

ExportsCopyFile Copy file to a specified folder

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@param folderId folder id
@return ApiExportsCopyFileRequest

func (*ExportsApiService) ExportsCopyFileExecute ¶

func (a *ExportsApiService) ExportsCopyFileExecute(r ApiExportsCopyFileRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ExportsApiService) ExportsDeleteFile ¶

func (a *ExportsApiService) ExportsDeleteFile(ctx context.Context, id string) ApiExportsDeleteFileRequest

ExportsDeleteFile Delete specified file

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiExportsDeleteFileRequest

func (*ExportsApiService) ExportsDeleteFileExecute ¶

func (a *ExportsApiService) ExportsDeleteFileExecute(r ApiExportsDeleteFileRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportsGetFile ¶

ExportsGetFile Get specified file

User with Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiExportsGetFileRequest

func (*ExportsApiService) ExportsGetFileExecute ¶

func (a *ExportsApiService) ExportsGetFileExecute(r ApiExportsGetFileRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ExportsApiService) ExportsGetFileHistory ¶

func (a *ExportsApiService) ExportsGetFileHistory(ctx context.Context, id string) ApiExportsGetFileHistoryRequest

ExportsGetFileHistory Returns list of actions, performed on this file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportsGetFileHistoryRequest

func (*ExportsApiService) ExportsGetFileHistoryExecute ¶

func (a *ExportsApiService) ExportsGetFileHistoryExecute(r ApiExportsGetFileHistoryRequest) (*AuditActionsVM, *http.Response, error)

Execute executes the request

@return AuditActionsVM

func (*ExportsApiService) ExportsGetFilesCount ¶

func (a *ExportsApiService) ExportsGetFilesCount(ctx context.Context, id string) ApiExportsGetFilesCountRequest

ExportsGetFilesCount Get count of files what contains in a specified folder

User with Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiExportsGetFilesCountRequest

func (*ExportsApiService) ExportsGetFilesCountExecute ¶

func (a *ExportsApiService) ExportsGetFilesCountExecute(r ApiExportsGetFilesCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*ExportsApiService) ExportsGetFilesList ¶

func (a *ExportsApiService) ExportsGetFilesList(ctx context.Context, id string) ApiExportsGetFilesListRequest

ExportsGetFilesList Get all files from specified folder. <br /> User with Get Entity permission can access this method. <br /> The method will returns minimal infomration about the file: <br /> id, name, size, editedTime, createdTime, tags, status, statusReason.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiExportsGetFilesListRequest

func (*ExportsApiService) ExportsGetFilesListExecute ¶

func (a *ExportsApiService) ExportsGetFilesListExecute(r ApiExportsGetFilesListRequest) (*ExportsVM, *http.Response, error)

Execute executes the request

@return ExportsVM

func (*ExportsApiService) ExportsGetPermissions ¶

func (a *ExportsApiService) ExportsGetPermissions(ctx context.Context, id string) ApiExportsGetPermissionsRequest

ExportsGetPermissions Get all file permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportsGetPermissionsRequest

func (*ExportsApiService) ExportsGetPermissionsExecute ¶

func (a *ExportsApiService) ExportsGetPermissionsExecute(r ApiExportsGetPermissionsRequest) (*FilePermissionsVM, *http.Response, error)

Execute executes the request

@return FilePermissionsVM

func (*ExportsApiService) ExportsMoveFile ¶

func (a *ExportsApiService) ExportsMoveFile(ctx context.Context, id string, folderId string) ApiExportsMoveFileRequest

ExportsMoveFile Move file to a specified folder

User with Update Place permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@param folderId folder id
@return ApiExportsMoveFileRequest

func (*ExportsApiService) ExportsMoveFileExecute ¶

func (a *ExportsApiService) ExportsMoveFileExecute(r ApiExportsMoveFileRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ExportsApiService) ExportsMoveFileToBin ¶

func (a *ExportsApiService) ExportsMoveFileToBin(ctx context.Context, id string) ApiExportsMoveFileToBinRequest

ExportsMoveFileToBin Move specified file to recycle bin

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiExportsMoveFileToBinRequest

func (*ExportsApiService) ExportsMoveFileToBinExecute ¶

func (a *ExportsApiService) ExportsMoveFileToBinExecute(r ApiExportsMoveFileToBinRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportsRecoverFile ¶

func (a *ExportsApiService) ExportsRecoverFile(ctx context.Context, id string) ApiExportsRecoverFileRequest

ExportsRecoverFile Recover specified file from bin

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiExportsRecoverFileRequest

func (*ExportsApiService) ExportsRecoverFileExecute ¶

func (a *ExportsApiService) ExportsRecoverFileExecute(r ApiExportsRecoverFileRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportsRenameFile ¶

func (a *ExportsApiService) ExportsRenameFile(ctx context.Context, id string) ApiExportsRenameFileRequest

ExportsRenameFile Rename a file

User with Update Name permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportsRenameFileRequest

func (*ExportsApiService) ExportsRenameFileExecute ¶

func (a *ExportsApiService) ExportsRenameFileExecute(r ApiExportsRenameFileRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ExportsApiService) ExportsUpdateIcon ¶

func (a *ExportsApiService) ExportsUpdateIcon(ctx context.Context, id string) ApiExportsUpdateIconRequest

ExportsUpdateIcon Update a files's icon

User with Update Icon permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportsUpdateIconRequest

func (*ExportsApiService) ExportsUpdateIconExecute ¶

func (a *ExportsApiService) ExportsUpdateIconExecute(r ApiExportsUpdateIconRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ExportsApiService) ExportsUpdatePermissions ¶

func (a *ExportsApiService) ExportsUpdatePermissions(ctx context.Context, id string) ApiExportsUpdatePermissionsRequest

ExportsUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportsUpdatePermissionsRequest

func (*ExportsApiService) ExportsUpdatePermissionsExecute ¶

func (a *ExportsApiService) ExportsUpdatePermissionsExecute(r ApiExportsUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*ExportsApiService) ExportsUpdateTags ¶

func (a *ExportsApiService) ExportsUpdateTags(ctx context.Context, id string) ApiExportsUpdateTagsRequest

ExportsUpdateTags Update tags

User with Update Tags permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiExportsUpdateTagsRequest

func (*ExportsApiService) ExportsUpdateTagsExecute ¶

func (a *ExportsApiService) ExportsUpdateTagsExecute(r ApiExportsUpdateTagsRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

type ExportsVM ¶

type ExportsVM struct {
}

ExportsVM struct for ExportsVM

func NewExportsVM ¶

func NewExportsVM() *ExportsVM

NewExportsVM instantiates a new ExportsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExportsVMWithDefaults ¶

func NewExportsVMWithDefaults() *ExportsVM

NewExportsVMWithDefaults instantiates a new ExportsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (ExportsVM) MarshalJSON ¶

func (o ExportsVM) MarshalJSON() ([]byte, error)

func (ExportsVM) ToMap ¶

func (o ExportsVM) ToMap() (map[string]interface{}, error)

type FTPUploadTaskVM ¶

type FTPUploadTaskVM struct {
	Archive           *bool          `json:"archive,omitempty"`
	ArchiveName       NullableString `json:"archiveName,omitempty"`
	DestinationFolder NullableString `json:"destinationFolder,omitempty"`
	FtpHost           NullableString `json:"ftpHost,omitempty"`
	FtpPort           *int32         `json:"ftpPort,omitempty"`
	FtpUsername       NullableString `json:"ftpUsername,omitempty"`
	UseSFTP           *bool          `json:"useSFTP,omitempty"`
}

FTPUploadTaskVM struct for FTPUploadTaskVM

func NewFTPUploadTaskVM ¶

func NewFTPUploadTaskVM(t string) *FTPUploadTaskVM

NewFTPUploadTaskVM instantiates a new FTPUploadTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFTPUploadTaskVMWithDefaults ¶

func NewFTPUploadTaskVMWithDefaults() *FTPUploadTaskVM

NewFTPUploadTaskVMWithDefaults instantiates a new FTPUploadTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FTPUploadTaskVM) GetArchive ¶

func (o *FTPUploadTaskVM) GetArchive() bool

GetArchive returns the Archive field value if set, zero value otherwise.

func (*FTPUploadTaskVM) GetArchiveName ¶

func (o *FTPUploadTaskVM) GetArchiveName() string

GetArchiveName returns the ArchiveName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FTPUploadTaskVM) GetArchiveNameOk ¶

func (o *FTPUploadTaskVM) GetArchiveNameOk() (*string, bool)

GetArchiveNameOk returns a tuple with the ArchiveName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FTPUploadTaskVM) GetArchiveOk ¶

func (o *FTPUploadTaskVM) GetArchiveOk() (*bool, bool)

GetArchiveOk returns a tuple with the Archive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FTPUploadTaskVM) GetDestinationFolder ¶

func (o *FTPUploadTaskVM) GetDestinationFolder() string

GetDestinationFolder returns the DestinationFolder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FTPUploadTaskVM) GetDestinationFolderOk ¶

func (o *FTPUploadTaskVM) GetDestinationFolderOk() (*string, bool)

GetDestinationFolderOk returns a tuple with the DestinationFolder field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FTPUploadTaskVM) GetFtpHost ¶

func (o *FTPUploadTaskVM) GetFtpHost() string

GetFtpHost returns the FtpHost field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FTPUploadTaskVM) GetFtpHostOk ¶

func (o *FTPUploadTaskVM) GetFtpHostOk() (*string, bool)

GetFtpHostOk returns a tuple with the FtpHost field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FTPUploadTaskVM) GetFtpPort ¶

func (o *FTPUploadTaskVM) GetFtpPort() int32

GetFtpPort returns the FtpPort field value if set, zero value otherwise.

func (*FTPUploadTaskVM) GetFtpPortOk ¶

func (o *FTPUploadTaskVM) GetFtpPortOk() (*int32, bool)

GetFtpPortOk returns a tuple with the FtpPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FTPUploadTaskVM) GetFtpUsername ¶

func (o *FTPUploadTaskVM) GetFtpUsername() string

GetFtpUsername returns the FtpUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FTPUploadTaskVM) GetFtpUsernameOk ¶

func (o *FTPUploadTaskVM) GetFtpUsernameOk() (*string, bool)

GetFtpUsernameOk returns a tuple with the FtpUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FTPUploadTaskVM) GetUseSFTP ¶

func (o *FTPUploadTaskVM) GetUseSFTP() bool

GetUseSFTP returns the UseSFTP field value if set, zero value otherwise.

func (*FTPUploadTaskVM) GetUseSFTPOk ¶

func (o *FTPUploadTaskVM) GetUseSFTPOk() (*bool, bool)

GetUseSFTPOk returns a tuple with the UseSFTP field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FTPUploadTaskVM) HasArchive ¶

func (o *FTPUploadTaskVM) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*FTPUploadTaskVM) HasArchiveName ¶

func (o *FTPUploadTaskVM) HasArchiveName() bool

HasArchiveName returns a boolean if a field has been set.

func (*FTPUploadTaskVM) HasDestinationFolder ¶

func (o *FTPUploadTaskVM) HasDestinationFolder() bool

HasDestinationFolder returns a boolean if a field has been set.

func (*FTPUploadTaskVM) HasFtpHost ¶

func (o *FTPUploadTaskVM) HasFtpHost() bool

HasFtpHost returns a boolean if a field has been set.

func (*FTPUploadTaskVM) HasFtpPort ¶

func (o *FTPUploadTaskVM) HasFtpPort() bool

HasFtpPort returns a boolean if a field has been set.

func (*FTPUploadTaskVM) HasFtpUsername ¶

func (o *FTPUploadTaskVM) HasFtpUsername() bool

HasFtpUsername returns a boolean if a field has been set.

func (*FTPUploadTaskVM) HasUseSFTP ¶

func (o *FTPUploadTaskVM) HasUseSFTP() bool

HasUseSFTP returns a boolean if a field has been set.

func (FTPUploadTaskVM) MarshalJSON ¶

func (o FTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*FTPUploadTaskVM) SetArchive ¶

func (o *FTPUploadTaskVM) SetArchive(v bool)

SetArchive gets a reference to the given bool and assigns it to the Archive field.

func (*FTPUploadTaskVM) SetArchiveName ¶

func (o *FTPUploadTaskVM) SetArchiveName(v string)

SetArchiveName gets a reference to the given NullableString and assigns it to the ArchiveName field.

func (*FTPUploadTaskVM) SetArchiveNameNil ¶

func (o *FTPUploadTaskVM) SetArchiveNameNil()

SetArchiveNameNil sets the value for ArchiveName to be an explicit nil

func (*FTPUploadTaskVM) SetDestinationFolder ¶

func (o *FTPUploadTaskVM) SetDestinationFolder(v string)

SetDestinationFolder gets a reference to the given NullableString and assigns it to the DestinationFolder field.

func (*FTPUploadTaskVM) SetDestinationFolderNil ¶

func (o *FTPUploadTaskVM) SetDestinationFolderNil()

SetDestinationFolderNil sets the value for DestinationFolder to be an explicit nil

func (*FTPUploadTaskVM) SetFtpHost ¶

func (o *FTPUploadTaskVM) SetFtpHost(v string)

SetFtpHost gets a reference to the given NullableString and assigns it to the FtpHost field.

func (*FTPUploadTaskVM) SetFtpHostNil ¶

func (o *FTPUploadTaskVM) SetFtpHostNil()

SetFtpHostNil sets the value for FtpHost to be an explicit nil

func (*FTPUploadTaskVM) SetFtpPort ¶

func (o *FTPUploadTaskVM) SetFtpPort(v int32)

SetFtpPort gets a reference to the given int32 and assigns it to the FtpPort field.

func (*FTPUploadTaskVM) SetFtpUsername ¶

func (o *FTPUploadTaskVM) SetFtpUsername(v string)

SetFtpUsername gets a reference to the given NullableString and assigns it to the FtpUsername field.

func (*FTPUploadTaskVM) SetFtpUsernameNil ¶

func (o *FTPUploadTaskVM) SetFtpUsernameNil()

SetFtpUsernameNil sets the value for FtpUsername to be an explicit nil

func (*FTPUploadTaskVM) SetUseSFTP ¶

func (o *FTPUploadTaskVM) SetUseSFTP(v bool)

SetUseSFTP gets a reference to the given bool and assigns it to the UseSFTP field.

func (FTPUploadTaskVM) ToMap ¶

func (o FTPUploadTaskVM) ToMap() (map[string]interface{}, error)

func (*FTPUploadTaskVM) UnsetArchiveName ¶

func (o *FTPUploadTaskVM) UnsetArchiveName()

UnsetArchiveName ensures that no value is present for ArchiveName, not even an explicit nil

func (*FTPUploadTaskVM) UnsetDestinationFolder ¶

func (o *FTPUploadTaskVM) UnsetDestinationFolder()

UnsetDestinationFolder ensures that no value is present for DestinationFolder, not even an explicit nil

func (*FTPUploadTaskVM) UnsetFtpHost ¶

func (o *FTPUploadTaskVM) UnsetFtpHost()

UnsetFtpHost ensures that no value is present for FtpHost, not even an explicit nil

func (*FTPUploadTaskVM) UnsetFtpUsername ¶

func (o *FTPUploadTaskVM) UnsetFtpUsername()

UnsetFtpUsername ensures that no value is present for FtpUsername, not even an explicit nil

type FetchTaskVM ¶

type FetchTaskVM struct {
	DataSourceId NullableString `json:"dataSourceId,omitempty"`
}

FetchTaskVM struct for FetchTaskVM

func NewFetchTaskVM ¶

func NewFetchTaskVM(t string) *FetchTaskVM

NewFetchTaskVM instantiates a new FetchTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFetchTaskVMWithDefaults ¶

func NewFetchTaskVMWithDefaults() *FetchTaskVM

NewFetchTaskVMWithDefaults instantiates a new FetchTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FetchTaskVM) GetDataSourceId ¶

func (o *FetchTaskVM) GetDataSourceId() string

GetDataSourceId returns the DataSourceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FetchTaskVM) GetDataSourceIdOk ¶

func (o *FetchTaskVM) GetDataSourceIdOk() (*string, bool)

GetDataSourceIdOk returns a tuple with the DataSourceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FetchTaskVM) HasDataSourceId ¶

func (o *FetchTaskVM) HasDataSourceId() bool

HasDataSourceId returns a boolean if a field has been set.

func (FetchTaskVM) MarshalJSON ¶

func (o FetchTaskVM) MarshalJSON() ([]byte, error)

func (*FetchTaskVM) SetDataSourceId ¶

func (o *FetchTaskVM) SetDataSourceId(v string)

SetDataSourceId gets a reference to the given NullableString and assigns it to the DataSourceId field.

func (*FetchTaskVM) SetDataSourceIdNil ¶

func (o *FetchTaskVM) SetDataSourceIdNil()

SetDataSourceIdNil sets the value for DataSourceId to be an explicit nil

func (FetchTaskVM) ToMap ¶

func (o FetchTaskVM) ToMap() (map[string]interface{}, error)

func (*FetchTaskVM) UnsetDataSourceId ¶

func (o *FetchTaskVM) UnsetDataSourceId()

UnsetDataSourceId ensures that no value is present for DataSourceId, not even an explicit nil

type FileAdministrate ¶

type FileAdministrate int32

FileAdministrate the model 'FileAdministrate'

func NewFileAdministrateFromValue ¶

func NewFileAdministrateFromValue(v int32) (*FileAdministrate, error)

NewFileAdministrateFromValue returns a pointer to a valid FileAdministrate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileAdministrate) IsValid ¶

func (v FileAdministrate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileAdministrate) Ptr ¶

Ptr returns reference to FileAdministrate value

func (*FileAdministrate) UnmarshalJSON ¶

func (v *FileAdministrate) UnmarshalJSON(src []byte) error

type FileCreate ¶

type FileCreate int32

FileCreate the model 'FileCreate'

func NewFileCreateFromValue ¶

func NewFileCreateFromValue(v int32) (*FileCreate, error)

NewFileCreateFromValue returns a pointer to a valid FileCreate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileCreate) IsValid ¶

func (v FileCreate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileCreate) Ptr ¶

func (v FileCreate) Ptr() *FileCreate

Ptr returns reference to FileCreate value

func (*FileCreate) UnmarshalJSON ¶

func (v *FileCreate) UnmarshalJSON(src []byte) error

type FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission ¶

type FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission struct {
	Create       *FileCreate       `json:"create,omitempty"`
	Delete       *FileDelete       `json:"delete,omitempty"`
	Execute      *FileExecute      `json:"execute,omitempty"`
	Get          *FileGet          `json:"get,omitempty"`
	Update       *FileUpdate       `json:"update,omitempty"`
	Administrate *FileAdministrate `json:"administrate,omitempty"`
}

FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission struct for FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission

func NewFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission ¶

func NewFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission() *FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission

NewFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission instantiates a new FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissionWithDefaults ¶

func NewFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissionWithDefaults() *FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission

NewFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissionWithDefaults instantiates a new FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetAdministrate ¶

GetAdministrate returns the Administrate field value if set, zero value otherwise.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetAdministrateOk ¶

GetAdministrateOk returns a tuple with the Administrate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetCreate ¶

GetCreate returns the Create field value if set, zero value otherwise.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetCreateOk ¶

GetCreateOk returns a tuple with the Create field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetDelete ¶

GetDelete returns the Delete field value if set, zero value otherwise.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetDeleteOk ¶

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetExecute ¶

GetExecute returns the Execute field value if set, zero value otherwise.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetExecuteOk ¶

GetExecuteOk returns a tuple with the Execute field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetGet ¶

GetGet returns the Get field value if set, zero value otherwise.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetGetOk ¶

GetGetOk returns a tuple with the Get field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetUpdate ¶

GetUpdate returns the Update field value if set, zero value otherwise.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) GetUpdateOk ¶

GetUpdateOk returns a tuple with the Update field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) HasAdministrate ¶

HasAdministrate returns a boolean if a field has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) HasCreate ¶

HasCreate returns a boolean if a field has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) HasDelete ¶

HasDelete returns a boolean if a field has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) HasExecute ¶

HasExecute returns a boolean if a field has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) HasGet ¶

HasGet returns a boolean if a field has been set.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) HasUpdate ¶

HasUpdate returns a boolean if a field has been set.

func (FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) MarshalJSON ¶

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) SetAdministrate ¶

SetAdministrate gets a reference to the given FileAdministrate and assigns it to the Administrate field.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) SetCreate ¶

SetCreate gets a reference to the given FileCreate and assigns it to the Create field.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) SetDelete ¶

SetDelete gets a reference to the given FileDelete and assigns it to the Delete field.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) SetExecute ¶

SetExecute gets a reference to the given FileExecute and assigns it to the Execute field.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) SetGet ¶

SetGet gets a reference to the given FileGet and assigns it to the Get field.

func (*FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) SetUpdate ¶

SetUpdate gets a reference to the given FileUpdate and assigns it to the Update field.

func (FileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) ToMap ¶

type FileCreateVM ¶

type FileCreateVM struct {
	Name    NullableString `json:"name,omitempty"`
	Tags    []string       `json:"tags,omitempty"`
	Icon    NullableString `json:"icon,omitempty"`
	Content NullableString `json:"content,omitempty"`
}

FileCreateVM struct for FileCreateVM

func NewFileCreateVM ¶

func NewFileCreateVM() *FileCreateVM

NewFileCreateVM instantiates a new FileCreateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileCreateVMWithDefaults ¶

func NewFileCreateVMWithDefaults() *FileCreateVM

NewFileCreateVMWithDefaults instantiates a new FileCreateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileCreateVM) GetContent ¶

func (o *FileCreateVM) GetContent() string

GetContent returns the Content field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileCreateVM) GetContentOk ¶

func (o *FileCreateVM) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileCreateVM) GetIcon ¶

func (o *FileCreateVM) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileCreateVM) GetIconOk ¶

func (o *FileCreateVM) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileCreateVM) GetName ¶

func (o *FileCreateVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileCreateVM) GetNameOk ¶

func (o *FileCreateVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileCreateVM) GetTags ¶

func (o *FileCreateVM) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileCreateVM) GetTagsOk ¶

func (o *FileCreateVM) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileCreateVM) HasContent ¶

func (o *FileCreateVM) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*FileCreateVM) HasIcon ¶

func (o *FileCreateVM) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*FileCreateVM) HasName ¶

func (o *FileCreateVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*FileCreateVM) HasTags ¶

func (o *FileCreateVM) HasTags() bool

HasTags returns a boolean if a field has been set.

func (FileCreateVM) MarshalJSON ¶

func (o FileCreateVM) MarshalJSON() ([]byte, error)

func (*FileCreateVM) SetContent ¶

func (o *FileCreateVM) SetContent(v string)

SetContent gets a reference to the given NullableString and assigns it to the Content field.

func (*FileCreateVM) SetContentNil ¶

func (o *FileCreateVM) SetContentNil()

SetContentNil sets the value for Content to be an explicit nil

func (*FileCreateVM) SetIcon ¶

func (o *FileCreateVM) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*FileCreateVM) SetIconNil ¶

func (o *FileCreateVM) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*FileCreateVM) SetName ¶

func (o *FileCreateVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*FileCreateVM) SetNameNil ¶

func (o *FileCreateVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*FileCreateVM) SetTags ¶

func (o *FileCreateVM) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (FileCreateVM) ToMap ¶

func (o FileCreateVM) ToMap() (map[string]interface{}, error)

func (*FileCreateVM) UnsetContent ¶

func (o *FileCreateVM) UnsetContent()

UnsetContent ensures that no value is present for Content, not even an explicit nil

func (*FileCreateVM) UnsetIcon ¶

func (o *FileCreateVM) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

func (*FileCreateVM) UnsetName ¶

func (o *FileCreateVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type FileDelete ¶

type FileDelete int32

FileDelete the model 'FileDelete'

func NewFileDeleteFromValue ¶

func NewFileDeleteFromValue(v int32) (*FileDelete, error)

NewFileDeleteFromValue returns a pointer to a valid FileDelete for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileDelete) IsValid ¶

func (v FileDelete) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileDelete) Ptr ¶

func (v FileDelete) Ptr() *FileDelete

Ptr returns reference to FileDelete value

func (*FileDelete) UnmarshalJSON ¶

func (v *FileDelete) UnmarshalJSON(src []byte) error

type FileExecute ¶

type FileExecute int32

FileExecute the model 'FileExecute'

func NewFileExecuteFromValue ¶

func NewFileExecuteFromValue(v int32) (*FileExecute, error)

NewFileExecuteFromValue returns a pointer to a valid FileExecute for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileExecute) IsValid ¶

func (v FileExecute) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileExecute) Ptr ¶

func (v FileExecute) Ptr() *FileExecute

Ptr returns reference to FileExecute value

func (*FileExecute) UnmarshalJSON ¶

func (v *FileExecute) UnmarshalJSON(src []byte) error

type FileGet ¶

type FileGet int32

FileGet the model 'FileGet'

func NewFileGetFromValue ¶

func NewFileGetFromValue(v int32) (*FileGet, error)

NewFileGetFromValue returns a pointer to a valid FileGet for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileGet) IsValid ¶

func (v FileGet) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileGet) Ptr ¶

func (v FileGet) Ptr() *FileGet

Ptr returns reference to FileGet value

func (*FileGet) UnmarshalJSON ¶

func (v *FileGet) UnmarshalJSON(src []byte) error

type FileIconVM ¶

type FileIconVM struct {
	Icon NullableString `json:"icon,omitempty"`
}

FileIconVM struct for FileIconVM

func NewFileIconVM ¶

func NewFileIconVM() *FileIconVM

NewFileIconVM instantiates a new FileIconVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileIconVMWithDefaults ¶

func NewFileIconVMWithDefaults() *FileIconVM

NewFileIconVMWithDefaults instantiates a new FileIconVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileIconVM) GetIcon ¶

func (o *FileIconVM) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileIconVM) GetIconOk ¶

func (o *FileIconVM) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileIconVM) HasIcon ¶

func (o *FileIconVM) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (FileIconVM) MarshalJSON ¶

func (o FileIconVM) MarshalJSON() ([]byte, error)

func (*FileIconVM) SetIcon ¶

func (o *FileIconVM) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*FileIconVM) SetIconNil ¶

func (o *FileIconVM) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (FileIconVM) ToMap ¶

func (o FileIconVM) ToMap() (map[string]interface{}, error)

func (*FileIconVM) UnsetIcon ¶

func (o *FileIconVM) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

type FileKind ¶

type FileKind string

FileKind the model 'FileKind'

const (
	TEMPLATE FileKind = "Template"
	REPORT   FileKind = "Report"
	EXPORT   FileKind = "Export"
)

List of FileKind

func NewFileKindFromValue ¶

func NewFileKindFromValue(v string) (*FileKind, error)

NewFileKindFromValue returns a pointer to a valid FileKind for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileKind) IsValid ¶

func (v FileKind) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileKind) Ptr ¶

func (v FileKind) Ptr() *FileKind

Ptr returns reference to FileKind value

func (*FileKind) UnmarshalJSON ¶

func (v *FileKind) UnmarshalJSON(src []byte) error

type FilePermission ¶

type FilePermission struct {
}

FilePermission struct for FilePermission

func NewFilePermission ¶

func NewFilePermission() *FilePermission

NewFilePermission instantiates a new FilePermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFilePermissionWithDefaults ¶

func NewFilePermissionWithDefaults() *FilePermission

NewFilePermissionWithDefaults instantiates a new FilePermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (FilePermission) MarshalJSON ¶

func (o FilePermission) MarshalJSON() ([]byte, error)

func (FilePermission) ToMap ¶

func (o FilePermission) ToMap() (map[string]interface{}, error)

type FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions ¶

type FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions struct {
	OwnerId NullableString            `json:"ownerId,omitempty"`
	Owner   *FilePermission           `json:"owner,omitempty"`
	Groups  map[string]FilePermission `json:"groups,omitempty"`
	Other   *FilePermission           `json:"other,omitempty"`
	Anon    *FilePermission           `json:"anon,omitempty"`
}

FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions struct for FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions

func NewFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions ¶

func NewFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions() *FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions

NewFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions instantiates a new FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissionsWithDefaults ¶

func NewFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissionsWithDefaults() *FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions

NewFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissionsWithDefaults instantiates a new FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetAnon ¶

GetAnon returns the Anon field value if set, zero value otherwise.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetAnonOk ¶

GetAnonOk returns a tuple with the Anon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetOther ¶

GetOther returns the Other field value if set, zero value otherwise.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetOtherOk ¶

GetOtherOk returns a tuple with the Other field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetOwnerId ¶

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetOwnerIdOk ¶

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) HasAnon ¶

HasAnon returns a boolean if a field has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) HasGroups ¶

HasGroups returns a boolean if a field has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) HasOther ¶

HasOther returns a boolean if a field has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) HasOwnerId ¶

HasOwnerId returns a boolean if a field has been set.

func (FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) MarshalJSON ¶

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) SetAnon ¶

SetAnon gets a reference to the given FilePermission and assigns it to the Anon field.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) SetGroups ¶

SetGroups gets a reference to the given map[string]FilePermission and assigns it to the Groups field.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) SetOther ¶

SetOther gets a reference to the given FilePermission and assigns it to the Other field.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) SetOwner ¶

SetOwner gets a reference to the given FilePermission and assigns it to the Owner field.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) SetOwnerId ¶

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) SetOwnerIdNil ¶

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) ToMap ¶

func (*FilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) UnsetOwnerId ¶

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

type FilePermissions ¶

type FilePermissions struct {
}

FilePermissions struct for FilePermissions

func NewFilePermissions ¶

func NewFilePermissions() *FilePermissions

NewFilePermissions instantiates a new FilePermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFilePermissionsWithDefaults ¶

func NewFilePermissionsWithDefaults() *FilePermissions

NewFilePermissionsWithDefaults instantiates a new FilePermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (FilePermissions) MarshalJSON ¶

func (o FilePermissions) MarshalJSON() ([]byte, error)

func (FilePermissions) ToMap ¶

func (o FilePermissions) ToMap() (map[string]interface{}, error)

type FilePermissionsVM ¶

type FilePermissionsVM struct {
	Permissions *FilePermissions `json:"permissions,omitempty"`
}

FilePermissionsVM struct for FilePermissionsVM

func NewFilePermissionsVM ¶

func NewFilePermissionsVM() *FilePermissionsVM

NewFilePermissionsVM instantiates a new FilePermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFilePermissionsVMWithDefaults ¶

func NewFilePermissionsVMWithDefaults() *FilePermissionsVM

NewFilePermissionsVMWithDefaults instantiates a new FilePermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FilePermissionsVM) GetPermissions ¶

func (o *FilePermissionsVM) GetPermissions() FilePermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*FilePermissionsVM) GetPermissionsOk ¶

func (o *FilePermissionsVM) GetPermissionsOk() (*FilePermissions, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePermissionsVM) HasPermissions ¶

func (o *FilePermissionsVM) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (FilePermissionsVM) MarshalJSON ¶

func (o FilePermissionsVM) MarshalJSON() ([]byte, error)

func (*FilePermissionsVM) SetPermissions ¶

func (o *FilePermissionsVM) SetPermissions(v FilePermissions)

SetPermissions gets a reference to the given FilePermissions and assigns it to the Permissions field.

func (FilePermissionsVM) ToMap ¶

func (o FilePermissionsVM) ToMap() (map[string]interface{}, error)

type FileRenameVM ¶

type FileRenameVM struct {
	Name NullableString `json:"name,omitempty"`
}

FileRenameVM struct for FileRenameVM

func NewFileRenameVM ¶

func NewFileRenameVM() *FileRenameVM

NewFileRenameVM instantiates a new FileRenameVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileRenameVMWithDefaults ¶

func NewFileRenameVMWithDefaults() *FileRenameVM

NewFileRenameVMWithDefaults instantiates a new FileRenameVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileRenameVM) GetName ¶

func (o *FileRenameVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileRenameVM) GetNameOk ¶

func (o *FileRenameVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileRenameVM) HasName ¶

func (o *FileRenameVM) HasName() bool

HasName returns a boolean if a field has been set.

func (FileRenameVM) MarshalJSON ¶

func (o FileRenameVM) MarshalJSON() ([]byte, error)

func (*FileRenameVM) SetName ¶

func (o *FileRenameVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*FileRenameVM) SetNameNil ¶

func (o *FileRenameVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (FileRenameVM) ToMap ¶

func (o FileRenameVM) ToMap() (map[string]interface{}, error)

func (*FileRenameVM) UnsetName ¶

func (o *FileRenameVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type FileSorting ¶

type FileSorting string

FileSorting the model 'FileSorting'

const (
	NONE         FileSorting = "None"
	CREATED_TIME FileSorting = "CreatedTime"
	EDITED_TIME  FileSorting = "EditedTime"
	SIZE         FileSorting = "Size"
	NAME         FileSorting = "Name"
)

List of FileSorting

func NewFileSortingFromValue ¶

func NewFileSortingFromValue(v string) (*FileSorting, error)

NewFileSortingFromValue returns a pointer to a valid FileSorting for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileSorting) IsValid ¶

func (v FileSorting) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileSorting) Ptr ¶

func (v FileSorting) Ptr() *FileSorting

Ptr returns reference to FileSorting value

func (*FileSorting) UnmarshalJSON ¶

func (v *FileSorting) UnmarshalJSON(src []byte) error

type FileStatus ¶

type FileStatus string

FileStatus the model 'FileStatus'

const (
	NONE       FileStatus = "None"
	IN_QUEUE   FileStatus = "InQueue"
	IN_PROCESS FileStatus = "InProcess"
	SUCCESS    FileStatus = "Success"
	FAILED     FileStatus = "Failed"
)

List of FileStatus

func NewFileStatusFromValue ¶

func NewFileStatusFromValue(v string) (*FileStatus, error)

NewFileStatusFromValue returns a pointer to a valid FileStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileStatus) IsValid ¶

func (v FileStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileStatus) Ptr ¶

func (v FileStatus) Ptr() *FileStatus

Ptr returns reference to FileStatus value

func (*FileStatus) UnmarshalJSON ¶

func (v *FileStatus) UnmarshalJSON(src []byte) error

type FileStatusReason ¶

type FileStatusReason string

FileStatusReason the model 'FileStatusReason'

const (
	NONE                FileStatusReason = "None"
	ALL_RIGHT           FileStatusReason = "AllRight"
	HANG                FileStatusReason = "Hang"
	ERROR               FileStatusReason = "Error"
	NOT_FOUND           FileStatusReason = "NotFound"
	NOT_ENOUGH_SPACE    FileStatusReason = "NotEnoughSpace"
	EXPORT_STARTED      FileStatusReason = "ExportStarted"
	PREPARATION_STARTED FileStatusReason = "PreparationStarted"
	CRASH_LOOP          FileStatusReason = "CrashLoop"
)

List of FileStatusReason

func NewFileStatusReasonFromValue ¶

func NewFileStatusReasonFromValue(v string) (*FileStatusReason, error)

NewFileStatusReasonFromValue returns a pointer to a valid FileStatusReason for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileStatusReason) IsValid ¶

func (v FileStatusReason) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileStatusReason) Ptr ¶

Ptr returns reference to FileStatusReason value

func (*FileStatusReason) UnmarshalJSON ¶

func (v *FileStatusReason) UnmarshalJSON(src []byte) error

type FileTagsUpdateVM ¶

type FileTagsUpdateVM struct {
	Tags []string `json:"tags,omitempty"`
}

FileTagsUpdateVM struct for FileTagsUpdateVM

func NewFileTagsUpdateVM ¶

func NewFileTagsUpdateVM() *FileTagsUpdateVM

NewFileTagsUpdateVM instantiates a new FileTagsUpdateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileTagsUpdateVMWithDefaults ¶

func NewFileTagsUpdateVMWithDefaults() *FileTagsUpdateVM

NewFileTagsUpdateVMWithDefaults instantiates a new FileTagsUpdateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileTagsUpdateVM) GetTags ¶

func (o *FileTagsUpdateVM) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileTagsUpdateVM) GetTagsOk ¶

func (o *FileTagsUpdateVM) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileTagsUpdateVM) HasTags ¶

func (o *FileTagsUpdateVM) HasTags() bool

HasTags returns a boolean if a field has been set.

func (FileTagsUpdateVM) MarshalJSON ¶

func (o FileTagsUpdateVM) MarshalJSON() ([]byte, error)

func (*FileTagsUpdateVM) SetTags ¶

func (o *FileTagsUpdateVM) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (FileTagsUpdateVM) ToMap ¶

func (o FileTagsUpdateVM) ToMap() (map[string]interface{}, error)

type FileType ¶

type FileType string

FileType the model 'FileType'

const (
	FILE   FileType = "File"
	FOLDER FileType = "Folder"
)

List of FileType

func NewFileTypeFromValue ¶

func NewFileTypeFromValue(v string) (*FileType, error)

NewFileTypeFromValue returns a pointer to a valid FileType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileType) IsValid ¶

func (v FileType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileType) Ptr ¶

func (v FileType) Ptr() *FileType

Ptr returns reference to FileType value

func (*FileType) UnmarshalJSON ¶

func (v *FileType) UnmarshalJSON(src []byte) error

type FileUpdate ¶

type FileUpdate int32

FileUpdate the model 'FileUpdate'

func NewFileUpdateFromValue ¶

func NewFileUpdateFromValue(v int32) (*FileUpdate, error)

NewFileUpdateFromValue returns a pointer to a valid FileUpdate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FileUpdate) IsValid ¶

func (v FileUpdate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FileUpdate) Ptr ¶

func (v FileUpdate) Ptr() *FileUpdate

Ptr returns reference to FileUpdate value

func (*FileUpdate) UnmarshalJSON ¶

func (v *FileUpdate) UnmarshalJSON(src []byte) error

type FileVM ¶

type FileVM struct {
	Name           NullableString    `json:"name,omitempty"`
	ParentId       NullableString    `json:"parentId,omitempty"`
	Tags           []string          `json:"tags,omitempty"`
	Icon           NullableString    `json:"icon,omitempty"`
	Type           *FileType         `json:"type,omitempty"`
	Size           *int64            `json:"size,omitempty"`
	SubscriptionId NullableString    `json:"subscriptionId,omitempty"`
	Status         *FileStatus       `json:"status,omitempty"`
	StatusReason   *FileStatusReason `json:"statusReason,omitempty"`
	ErrorMessage   NullableString    `json:"errorMessage,omitempty"`
	IsDeleted      *bool             `json:"isDeleted,omitempty"`
}

FileVM struct for FileVM

func NewFileVM ¶

func NewFileVM() *FileVM

NewFileVM instantiates a new FileVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileVMWithDefaults ¶

func NewFileVMWithDefaults() *FileVM

NewFileVMWithDefaults instantiates a new FileVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileVM) GetErrorMessage ¶

func (o *FileVM) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVM) GetErrorMessageOk ¶

func (o *FileVM) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVM) GetIcon ¶

func (o *FileVM) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVM) GetIconOk ¶

func (o *FileVM) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVM) GetIsDeleted ¶

func (o *FileVM) GetIsDeleted() bool

GetIsDeleted returns the IsDeleted field value if set, zero value otherwise.

func (*FileVM) GetIsDeletedOk ¶

func (o *FileVM) GetIsDeletedOk() (*bool, bool)

GetIsDeletedOk returns a tuple with the IsDeleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileVM) GetName ¶

func (o *FileVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVM) GetNameOk ¶

func (o *FileVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVM) GetParentId ¶

func (o *FileVM) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVM) GetParentIdOk ¶

func (o *FileVM) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVM) GetSize ¶

func (o *FileVM) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*FileVM) GetSizeOk ¶

func (o *FileVM) GetSizeOk() (*int64, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileVM) GetStatus ¶

func (o *FileVM) GetStatus() FileStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*FileVM) GetStatusOk ¶

func (o *FileVM) GetStatusOk() (*FileStatus, 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 (*FileVM) GetStatusReason ¶

func (o *FileVM) GetStatusReason() FileStatusReason

GetStatusReason returns the StatusReason field value if set, zero value otherwise.

func (*FileVM) GetStatusReasonOk ¶

func (o *FileVM) GetStatusReasonOk() (*FileStatusReason, bool)

GetStatusReasonOk returns a tuple with the StatusReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileVM) GetSubscriptionId ¶

func (o *FileVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVM) GetSubscriptionIdOk ¶

func (o *FileVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVM) GetTags ¶

func (o *FileVM) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVM) GetTagsOk ¶

func (o *FileVM) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVM) GetType ¶

func (o *FileVM) GetType() FileType

GetType returns the Type field value if set, zero value otherwise.

func (*FileVM) GetTypeOk ¶

func (o *FileVM) GetTypeOk() (*FileType, 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 (*FileVM) HasErrorMessage ¶

func (o *FileVM) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*FileVM) HasIcon ¶

func (o *FileVM) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*FileVM) HasIsDeleted ¶

func (o *FileVM) HasIsDeleted() bool

HasIsDeleted returns a boolean if a field has been set.

func (*FileVM) HasName ¶

func (o *FileVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*FileVM) HasParentId ¶

func (o *FileVM) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*FileVM) HasSize ¶

func (o *FileVM) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*FileVM) HasStatus ¶

func (o *FileVM) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*FileVM) HasStatusReason ¶

func (o *FileVM) HasStatusReason() bool

HasStatusReason returns a boolean if a field has been set.

func (*FileVM) HasSubscriptionId ¶

func (o *FileVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*FileVM) HasTags ¶

func (o *FileVM) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*FileVM) HasType ¶

func (o *FileVM) HasType() bool

HasType returns a boolean if a field has been set.

func (FileVM) MarshalJSON ¶

func (o FileVM) MarshalJSON() ([]byte, error)

func (*FileVM) SetErrorMessage ¶

func (o *FileVM) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given NullableString and assigns it to the ErrorMessage field.

func (*FileVM) SetErrorMessageNil ¶

func (o *FileVM) SetErrorMessageNil()

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

func (*FileVM) SetIcon ¶

func (o *FileVM) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*FileVM) SetIconNil ¶

func (o *FileVM) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*FileVM) SetIsDeleted ¶

func (o *FileVM) SetIsDeleted(v bool)

SetIsDeleted gets a reference to the given bool and assigns it to the IsDeleted field.

func (*FileVM) SetName ¶

func (o *FileVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*FileVM) SetNameNil ¶

func (o *FileVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*FileVM) SetParentId ¶

func (o *FileVM) SetParentId(v string)

SetParentId gets a reference to the given NullableString and assigns it to the ParentId field.

func (*FileVM) SetParentIdNil ¶

func (o *FileVM) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (*FileVM) SetSize ¶

func (o *FileVM) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*FileVM) SetStatus ¶

func (o *FileVM) SetStatus(v FileStatus)

SetStatus gets a reference to the given FileStatus and assigns it to the Status field.

func (*FileVM) SetStatusReason ¶

func (o *FileVM) SetStatusReason(v FileStatusReason)

SetStatusReason gets a reference to the given FileStatusReason and assigns it to the StatusReason field.

func (*FileVM) SetSubscriptionId ¶

func (o *FileVM) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*FileVM) SetSubscriptionIdNil ¶

func (o *FileVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*FileVM) SetTags ¶

func (o *FileVM) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (*FileVM) SetType ¶

func (o *FileVM) SetType(v FileType)

SetType gets a reference to the given FileType and assigns it to the Type field.

func (FileVM) ToMap ¶

func (o FileVM) ToMap() (map[string]interface{}, error)

func (*FileVM) UnsetErrorMessage ¶

func (o *FileVM) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

func (*FileVM) UnsetIcon ¶

func (o *FileVM) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

func (*FileVM) UnsetName ¶

func (o *FileVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*FileVM) UnsetParentId ¶

func (o *FileVM) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

func (*FileVM) UnsetSubscriptionId ¶

func (o *FileVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type FileVMFilesVMBase ¶

type FileVMFilesVMBase struct {
	Files []FileVM `json:"files,omitempty"`
	Count *int64   `json:"count,omitempty"`
	Skip  *int32   `json:"skip,omitempty"`
	Take  *int32   `json:"take,omitempty"`
}

FileVMFilesVMBase struct for FileVMFilesVMBase

func NewFileVMFilesVMBase ¶

func NewFileVMFilesVMBase() *FileVMFilesVMBase

NewFileVMFilesVMBase instantiates a new FileVMFilesVMBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileVMFilesVMBaseWithDefaults ¶

func NewFileVMFilesVMBaseWithDefaults() *FileVMFilesVMBase

NewFileVMFilesVMBaseWithDefaults instantiates a new FileVMFilesVMBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FileVMFilesVMBase) GetCount ¶

func (o *FileVMFilesVMBase) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*FileVMFilesVMBase) GetCountOk ¶

func (o *FileVMFilesVMBase) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileVMFilesVMBase) GetFiles ¶

func (o *FileVMFilesVMBase) GetFiles() []FileVM

GetFiles returns the Files field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FileVMFilesVMBase) GetFilesOk ¶

func (o *FileVMFilesVMBase) GetFilesOk() ([]FileVM, bool)

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FileVMFilesVMBase) GetSkip ¶

func (o *FileVMFilesVMBase) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*FileVMFilesVMBase) GetSkipOk ¶

func (o *FileVMFilesVMBase) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileVMFilesVMBase) GetTake ¶

func (o *FileVMFilesVMBase) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*FileVMFilesVMBase) GetTakeOk ¶

func (o *FileVMFilesVMBase) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FileVMFilesVMBase) HasCount ¶

func (o *FileVMFilesVMBase) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*FileVMFilesVMBase) HasFiles ¶

func (o *FileVMFilesVMBase) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*FileVMFilesVMBase) HasSkip ¶

func (o *FileVMFilesVMBase) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*FileVMFilesVMBase) HasTake ¶

func (o *FileVMFilesVMBase) HasTake() bool

HasTake returns a boolean if a field has been set.

func (FileVMFilesVMBase) MarshalJSON ¶

func (o FileVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*FileVMFilesVMBase) SetCount ¶

func (o *FileVMFilesVMBase) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*FileVMFilesVMBase) SetFiles ¶

func (o *FileVMFilesVMBase) SetFiles(v []FileVM)

SetFiles gets a reference to the given []FileVM and assigns it to the Files field.

func (*FileVMFilesVMBase) SetSkip ¶

func (o *FileVMFilesVMBase) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*FileVMFilesVMBase) SetTake ¶

func (o *FileVMFilesVMBase) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (FileVMFilesVMBase) ToMap ¶

func (o FileVMFilesVMBase) ToMap() (map[string]interface{}, error)

type FilesVM ¶

type FilesVM struct {
}

FilesVM struct for FilesVM

func NewFilesVM ¶

func NewFilesVM() *FilesVM

NewFilesVM instantiates a new FilesVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFilesVMWithDefaults ¶

func NewFilesVMWithDefaults() *FilesVM

NewFilesVMWithDefaults instantiates a new FilesVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (FilesVM) MarshalJSON ¶

func (o FilesVM) MarshalJSON() ([]byte, error)

func (FilesVM) ToMap ¶

func (o FilesVM) ToMap() (map[string]interface{}, error)

type FolderCreateVM ¶

type FolderCreateVM struct {
	Name NullableString `json:"name,omitempty"`
	Tags []string       `json:"tags,omitempty"`
	Icon NullableString `json:"icon,omitempty"`
}

FolderCreateVM struct for FolderCreateVM

func NewFolderCreateVM ¶

func NewFolderCreateVM() *FolderCreateVM

NewFolderCreateVM instantiates a new FolderCreateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFolderCreateVMWithDefaults ¶

func NewFolderCreateVMWithDefaults() *FolderCreateVM

NewFolderCreateVMWithDefaults instantiates a new FolderCreateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FolderCreateVM) GetIcon ¶

func (o *FolderCreateVM) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FolderCreateVM) GetIconOk ¶

func (o *FolderCreateVM) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FolderCreateVM) GetName ¶

func (o *FolderCreateVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FolderCreateVM) GetNameOk ¶

func (o *FolderCreateVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FolderCreateVM) GetTags ¶

func (o *FolderCreateVM) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FolderCreateVM) GetTagsOk ¶

func (o *FolderCreateVM) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FolderCreateVM) HasIcon ¶

func (o *FolderCreateVM) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*FolderCreateVM) HasName ¶

func (o *FolderCreateVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*FolderCreateVM) HasTags ¶

func (o *FolderCreateVM) HasTags() bool

HasTags returns a boolean if a field has been set.

func (FolderCreateVM) MarshalJSON ¶

func (o FolderCreateVM) MarshalJSON() ([]byte, error)

func (*FolderCreateVM) SetIcon ¶

func (o *FolderCreateVM) SetIcon(v string)

SetIcon gets a reference to the given NullableString and assigns it to the Icon field.

func (*FolderCreateVM) SetIconNil ¶

func (o *FolderCreateVM) SetIconNil()

SetIconNil sets the value for Icon to be an explicit nil

func (*FolderCreateVM) SetName ¶

func (o *FolderCreateVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*FolderCreateVM) SetNameNil ¶

func (o *FolderCreateVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*FolderCreateVM) SetTags ¶

func (o *FolderCreateVM) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (FolderCreateVM) ToMap ¶

func (o FolderCreateVM) ToMap() (map[string]interface{}, error)

func (*FolderCreateVM) UnsetIcon ¶

func (o *FolderCreateVM) UnsetIcon()

UnsetIcon ensures that no value is present for Icon, not even an explicit nil

func (*FolderCreateVM) UnsetName ¶

func (o *FolderCreateVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type FolderIconVM ¶

type FolderIconVM struct {
	Icon string `json:"icon"`
}

FolderIconVM struct for FolderIconVM

func NewFolderIconVM ¶

func NewFolderIconVM(icon string) *FolderIconVM

NewFolderIconVM instantiates a new FolderIconVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFolderIconVMWithDefaults ¶

func NewFolderIconVMWithDefaults() *FolderIconVM

NewFolderIconVMWithDefaults instantiates a new FolderIconVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FolderIconVM) GetIcon ¶

func (o *FolderIconVM) GetIcon() string

GetIcon returns the Icon field value

func (*FolderIconVM) GetIconOk ¶

func (o *FolderIconVM) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value and a boolean to check if the value has been set.

func (FolderIconVM) MarshalJSON ¶

func (o FolderIconVM) MarshalJSON() ([]byte, error)

func (*FolderIconVM) SetIcon ¶

func (o *FolderIconVM) SetIcon(v string)

SetIcon sets field value

func (FolderIconVM) ToMap ¶

func (o FolderIconVM) ToMap() (map[string]interface{}, error)

type FolderRenameVM ¶

type FolderRenameVM struct {
	Name string `json:"name"`
}

FolderRenameVM struct for FolderRenameVM

func NewFolderRenameVM ¶

func NewFolderRenameVM(name string) *FolderRenameVM

NewFolderRenameVM instantiates a new FolderRenameVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFolderRenameVMWithDefaults ¶

func NewFolderRenameVMWithDefaults() *FolderRenameVM

NewFolderRenameVMWithDefaults instantiates a new FolderRenameVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FolderRenameVM) GetName ¶

func (o *FolderRenameVM) GetName() string

GetName returns the Name field value

func (*FolderRenameVM) GetNameOk ¶

func (o *FolderRenameVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (FolderRenameVM) MarshalJSON ¶

func (o FolderRenameVM) MarshalJSON() ([]byte, error)

func (*FolderRenameVM) SetName ¶

func (o *FolderRenameVM) SetName(v string)

SetName sets field value

func (FolderRenameVM) ToMap ¶

func (o FolderRenameVM) ToMap() (map[string]interface{}, error)

type FolderSizeVM ¶

type FolderSizeVM struct {
	Size           *int64 `json:"size,omitempty"`
	RealSize       *int64 `json:"realSize,omitempty"`
	DocumentsCount *int64 `json:"documentsCount,omitempty"`
}

FolderSizeVM struct for FolderSizeVM

func NewFolderSizeVM ¶

func NewFolderSizeVM() *FolderSizeVM

NewFolderSizeVM instantiates a new FolderSizeVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFolderSizeVMWithDefaults ¶

func NewFolderSizeVMWithDefaults() *FolderSizeVM

NewFolderSizeVMWithDefaults instantiates a new FolderSizeVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FolderSizeVM) GetDocumentsCount ¶

func (o *FolderSizeVM) GetDocumentsCount() int64

GetDocumentsCount returns the DocumentsCount field value if set, zero value otherwise.

func (*FolderSizeVM) GetDocumentsCountOk ¶

func (o *FolderSizeVM) GetDocumentsCountOk() (*int64, bool)

GetDocumentsCountOk returns a tuple with the DocumentsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FolderSizeVM) GetRealSize ¶

func (o *FolderSizeVM) GetRealSize() int64

GetRealSize returns the RealSize field value if set, zero value otherwise.

func (*FolderSizeVM) GetRealSizeOk ¶

func (o *FolderSizeVM) GetRealSizeOk() (*int64, bool)

GetRealSizeOk returns a tuple with the RealSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FolderSizeVM) GetSize ¶

func (o *FolderSizeVM) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*FolderSizeVM) GetSizeOk ¶

func (o *FolderSizeVM) GetSizeOk() (*int64, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FolderSizeVM) HasDocumentsCount ¶

func (o *FolderSizeVM) HasDocumentsCount() bool

HasDocumentsCount returns a boolean if a field has been set.

func (*FolderSizeVM) HasRealSize ¶

func (o *FolderSizeVM) HasRealSize() bool

HasRealSize returns a boolean if a field has been set.

func (*FolderSizeVM) HasSize ¶

func (o *FolderSizeVM) HasSize() bool

HasSize returns a boolean if a field has been set.

func (FolderSizeVM) MarshalJSON ¶

func (o FolderSizeVM) MarshalJSON() ([]byte, error)

func (*FolderSizeVM) SetDocumentsCount ¶

func (o *FolderSizeVM) SetDocumentsCount(v int64)

SetDocumentsCount gets a reference to the given int64 and assigns it to the DocumentsCount field.

func (*FolderSizeVM) SetRealSize ¶

func (o *FolderSizeVM) SetRealSize(v int64)

SetRealSize gets a reference to the given int64 and assigns it to the RealSize field.

func (*FolderSizeVM) SetSize ¶

func (o *FolderSizeVM) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (FolderSizeVM) ToMap ¶

func (o FolderSizeVM) ToMap() (map[string]interface{}, error)

type FolderTagsUpdateVM ¶

type FolderTagsUpdateVM struct {
	Tags []string `json:"tags,omitempty"`
}

FolderTagsUpdateVM struct for FolderTagsUpdateVM

func NewFolderTagsUpdateVM ¶

func NewFolderTagsUpdateVM() *FolderTagsUpdateVM

NewFolderTagsUpdateVM instantiates a new FolderTagsUpdateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFolderTagsUpdateVMWithDefaults ¶

func NewFolderTagsUpdateVMWithDefaults() *FolderTagsUpdateVM

NewFolderTagsUpdateVMWithDefaults instantiates a new FolderTagsUpdateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FolderTagsUpdateVM) GetTags ¶

func (o *FolderTagsUpdateVM) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*FolderTagsUpdateVM) GetTagsOk ¶

func (o *FolderTagsUpdateVM) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*FolderTagsUpdateVM) HasTags ¶

func (o *FolderTagsUpdateVM) HasTags() bool

HasTags returns a boolean if a field has been set.

func (FolderTagsUpdateVM) MarshalJSON ¶

func (o FolderTagsUpdateVM) MarshalJSON() ([]byte, error)

func (*FolderTagsUpdateVM) SetTags ¶

func (o *FolderTagsUpdateVM) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (FolderTagsUpdateVM) ToMap ¶

func (o FolderTagsUpdateVM) ToMap() (map[string]interface{}, error)

type FrontendApp ¶

type FrontendApp struct {
	Mixins *AppMixins `json:"mixins,omitempty"`
}

FrontendApp struct for FrontendApp

func NewFrontendApp ¶

func NewFrontendApp() *FrontendApp

NewFrontendApp instantiates a new FrontendApp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFrontendAppWithDefaults ¶

func NewFrontendAppWithDefaults() *FrontendApp

NewFrontendAppWithDefaults instantiates a new FrontendApp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FrontendApp) GetMixins ¶

func (o *FrontendApp) GetMixins() AppMixins

GetMixins returns the Mixins field value if set, zero value otherwise.

func (*FrontendApp) GetMixinsOk ¶

func (o *FrontendApp) GetMixinsOk() (*AppMixins, bool)

GetMixinsOk returns a tuple with the Mixins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FrontendApp) HasMixins ¶

func (o *FrontendApp) HasMixins() bool

HasMixins returns a boolean if a field has been set.

func (FrontendApp) MarshalJSON ¶

func (o FrontendApp) MarshalJSON() ([]byte, error)

func (*FrontendApp) SetMixins ¶

func (o *FrontendApp) SetMixins(v AppMixins)

SetMixins gets a reference to the given AppMixins and assigns it to the Mixins field.

func (FrontendApp) ToMap ¶

func (o FrontendApp) 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 GroupAdministrate ¶

type GroupAdministrate int32

GroupAdministrate the model 'GroupAdministrate'

func NewGroupAdministrateFromValue ¶

func NewGroupAdministrateFromValue(v int32) (*GroupAdministrate, error)

NewGroupAdministrateFromValue returns a pointer to a valid GroupAdministrate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupAdministrate) IsValid ¶

func (v GroupAdministrate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupAdministrate) Ptr ¶

Ptr returns reference to GroupAdministrate value

func (*GroupAdministrate) UnmarshalJSON ¶

func (v *GroupAdministrate) UnmarshalJSON(src []byte) error

type GroupCreate ¶

type GroupCreate int32

GroupCreate the model 'GroupCreate'

func NewGroupCreateFromValue ¶

func NewGroupCreateFromValue(v int32) (*GroupCreate, error)

NewGroupCreateFromValue returns a pointer to a valid GroupCreate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupCreate) IsValid ¶

func (v GroupCreate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupCreate) Ptr ¶

func (v GroupCreate) Ptr() *GroupCreate

Ptr returns reference to GroupCreate value

func (*GroupCreate) UnmarshalJSON ¶

func (v *GroupCreate) UnmarshalJSON(src []byte) error

type GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission ¶

type GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission struct {
	Create       *GroupCreate       `json:"create,omitempty"`
	Delete       *GroupDelete       `json:"delete,omitempty"`
	Execute      *GroupExecute      `json:"execute,omitempty"`
	Get          *GroupGet          `json:"get,omitempty"`
	Update       *GroupUpdate       `json:"update,omitempty"`
	Administrate *GroupAdministrate `json:"administrate,omitempty"`
}

GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission struct for GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission

func NewGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission ¶

func NewGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission() *GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission

NewGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission instantiates a new GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissionWithDefaults ¶

func NewGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissionWithDefaults() *GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission

NewGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissionWithDefaults instantiates a new GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetAdministrate ¶

GetAdministrate returns the Administrate field value if set, zero value otherwise.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetAdministrateOk ¶

GetAdministrateOk returns a tuple with the Administrate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetCreate ¶

GetCreate returns the Create field value if set, zero value otherwise.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetCreateOk ¶

GetCreateOk returns a tuple with the Create field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetDelete ¶

GetDelete returns the Delete field value if set, zero value otherwise.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetDeleteOk ¶

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetExecute ¶

GetExecute returns the Execute field value if set, zero value otherwise.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetExecuteOk ¶

GetExecuteOk returns a tuple with the Execute field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetGet ¶

GetGet returns the Get field value if set, zero value otherwise.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetGetOk ¶

GetGetOk returns a tuple with the Get field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetUpdate ¶

GetUpdate returns the Update field value if set, zero value otherwise.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) GetUpdateOk ¶

GetUpdateOk returns a tuple with the Update field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) HasAdministrate ¶

HasAdministrate returns a boolean if a field has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) HasCreate ¶

HasCreate returns a boolean if a field has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) HasDelete ¶

HasDelete returns a boolean if a field has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) HasExecute ¶

HasExecute returns a boolean if a field has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) HasGet ¶

HasGet returns a boolean if a field has been set.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) HasUpdate ¶

HasUpdate returns a boolean if a field has been set.

func (GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) MarshalJSON ¶

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) SetAdministrate ¶

SetAdministrate gets a reference to the given GroupAdministrate and assigns it to the Administrate field.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) SetCreate ¶

SetCreate gets a reference to the given GroupCreate and assigns it to the Create field.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) SetDelete ¶

SetDelete gets a reference to the given GroupDelete and assigns it to the Delete field.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) SetExecute ¶

SetExecute gets a reference to the given GroupExecute and assigns it to the Execute field.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) SetGet ¶

SetGet gets a reference to the given GroupGet and assigns it to the Get field.

func (*GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) SetUpdate ¶

SetUpdate gets a reference to the given GroupUpdate and assigns it to the Update field.

func (GroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) ToMap ¶

type GroupDelete ¶

type GroupDelete int32

GroupDelete the model 'GroupDelete'

func NewGroupDeleteFromValue ¶

func NewGroupDeleteFromValue(v int32) (*GroupDelete, error)

NewGroupDeleteFromValue returns a pointer to a valid GroupDelete for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupDelete) IsValid ¶

func (v GroupDelete) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupDelete) Ptr ¶

func (v GroupDelete) Ptr() *GroupDelete

Ptr returns reference to GroupDelete value

func (*GroupDelete) UnmarshalJSON ¶

func (v *GroupDelete) UnmarshalJSON(src []byte) error

type GroupExecute ¶

type GroupExecute int32

GroupExecute the model 'GroupExecute'

func NewGroupExecuteFromValue ¶

func NewGroupExecuteFromValue(v int32) (*GroupExecute, error)

NewGroupExecuteFromValue returns a pointer to a valid GroupExecute for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupExecute) IsValid ¶

func (v GroupExecute) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupExecute) Ptr ¶

func (v GroupExecute) Ptr() *GroupExecute

Ptr returns reference to GroupExecute value

func (*GroupExecute) UnmarshalJSON ¶

func (v *GroupExecute) UnmarshalJSON(src []byte) error

type GroupGet ¶

type GroupGet int32

GroupGet the model 'GroupGet'

func NewGroupGetFromValue ¶

func NewGroupGetFromValue(v int32) (*GroupGet, error)

NewGroupGetFromValue returns a pointer to a valid GroupGet for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupGet) IsValid ¶

func (v GroupGet) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupGet) Ptr ¶

func (v GroupGet) Ptr() *GroupGet

Ptr returns reference to GroupGet value

func (*GroupGet) UnmarshalJSON ¶

func (v *GroupGet) UnmarshalJSON(src []byte) error

type GroupPermission ¶

type GroupPermission struct {
}

GroupPermission struct for GroupPermission

func NewGroupPermission ¶

func NewGroupPermission() *GroupPermission

NewGroupPermission instantiates a new GroupPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupPermissionWithDefaults ¶

func NewGroupPermissionWithDefaults() *GroupPermission

NewGroupPermissionWithDefaults instantiates a new GroupPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (GroupPermission) MarshalJSON ¶

func (o GroupPermission) MarshalJSON() ([]byte, error)

func (GroupPermission) ToMap ¶

func (o GroupPermission) ToMap() (map[string]interface{}, error)

type GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions ¶

type GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions struct {
	OwnerId NullableString             `json:"ownerId,omitempty"`
	Owner   *GroupPermission           `json:"owner,omitempty"`
	Groups  map[string]GroupPermission `json:"groups,omitempty"`
	Other   *GroupPermission           `json:"other,omitempty"`
	Anon    *GroupPermission           `json:"anon,omitempty"`
}

GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions struct for GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions

func NewGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions ¶

func NewGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions() *GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions

NewGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions instantiates a new GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissionsWithDefaults ¶

func NewGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissionsWithDefaults() *GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions

NewGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissionsWithDefaults instantiates a new GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetAnon ¶

GetAnon returns the Anon field value if set, zero value otherwise.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetAnonOk ¶

GetAnonOk returns a tuple with the Anon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetOther ¶

GetOther returns the Other field value if set, zero value otherwise.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetOtherOk ¶

GetOtherOk returns a tuple with the Other field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetOwnerId ¶

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetOwnerIdOk ¶

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) HasAnon ¶

HasAnon returns a boolean if a field has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) HasGroups ¶

HasGroups returns a boolean if a field has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) HasOther ¶

HasOther returns a boolean if a field has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) HasOwnerId ¶

HasOwnerId returns a boolean if a field has been set.

func (GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) MarshalJSON ¶

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) SetAnon ¶

SetAnon gets a reference to the given GroupPermission and assigns it to the Anon field.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) SetGroups ¶

SetGroups gets a reference to the given map[string]GroupPermission and assigns it to the Groups field.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) SetOther ¶

SetOther gets a reference to the given GroupPermission and assigns it to the Other field.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) SetOwner ¶

SetOwner gets a reference to the given GroupPermission and assigns it to the Owner field.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) SetOwnerId ¶

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) SetOwnerIdNil ¶

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) ToMap ¶

func (*GroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) UnsetOwnerId ¶

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

type GroupPermissions ¶

type GroupPermissions struct {
}

GroupPermissions struct for GroupPermissions

func NewGroupPermissions ¶

func NewGroupPermissions() *GroupPermissions

NewGroupPermissions instantiates a new GroupPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupPermissionsWithDefaults ¶

func NewGroupPermissionsWithDefaults() *GroupPermissions

NewGroupPermissionsWithDefaults instantiates a new GroupPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (GroupPermissions) MarshalJSON ¶

func (o GroupPermissions) MarshalJSON() ([]byte, error)

func (GroupPermissions) ToMap ¶

func (o GroupPermissions) ToMap() (map[string]interface{}, error)

type GroupPermissionsVM ¶

type GroupPermissionsVM struct {
	Permissions *GroupPermissions `json:"permissions,omitempty"`
}

GroupPermissionsVM struct for GroupPermissionsVM

func NewGroupPermissionsVM ¶

func NewGroupPermissionsVM() *GroupPermissionsVM

NewGroupPermissionsVM instantiates a new GroupPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupPermissionsVMWithDefaults ¶

func NewGroupPermissionsVMWithDefaults() *GroupPermissionsVM

NewGroupPermissionsVMWithDefaults instantiates a new GroupPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupPermissionsVM) GetPermissions ¶

func (o *GroupPermissionsVM) GetPermissions() GroupPermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*GroupPermissionsVM) GetPermissionsOk ¶

func (o *GroupPermissionsVM) GetPermissionsOk() (*GroupPermissions, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupPermissionsVM) HasPermissions ¶

func (o *GroupPermissionsVM) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (GroupPermissionsVM) MarshalJSON ¶

func (o GroupPermissionsVM) MarshalJSON() ([]byte, error)

func (*GroupPermissionsVM) SetPermissions ¶

func (o *GroupPermissionsVM) SetPermissions(v GroupPermissions)

SetPermissions gets a reference to the given GroupPermissions and assigns it to the Permissions field.

func (GroupPermissionsVM) ToMap ¶

func (o GroupPermissionsVM) ToMap() (map[string]interface{}, error)

type GroupUpdate ¶

type GroupUpdate int32

GroupUpdate the model 'GroupUpdate'

func NewGroupUpdateFromValue ¶

func NewGroupUpdateFromValue(v int32) (*GroupUpdate, error)

NewGroupUpdateFromValue returns a pointer to a valid GroupUpdate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupUpdate) IsValid ¶

func (v GroupUpdate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupUpdate) Ptr ¶

func (v GroupUpdate) Ptr() *GroupUpdate

Ptr returns reference to GroupUpdate value

func (*GroupUpdate) UnmarshalJSON ¶

func (v *GroupUpdate) UnmarshalJSON(src []byte) error

type GroupUserVM ¶

type GroupUserVM struct {
	UserId NullableString `json:"userId,omitempty"`
}

GroupUserVM struct for GroupUserVM

func NewGroupUserVM ¶

func NewGroupUserVM() *GroupUserVM

NewGroupUserVM instantiates a new GroupUserVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupUserVMWithDefaults ¶

func NewGroupUserVMWithDefaults() *GroupUserVM

NewGroupUserVMWithDefaults instantiates a new GroupUserVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupUserVM) GetUserId ¶

func (o *GroupUserVM) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupUserVM) GetUserIdOk ¶

func (o *GroupUserVM) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupUserVM) HasUserId ¶

func (o *GroupUserVM) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (GroupUserVM) MarshalJSON ¶

func (o GroupUserVM) MarshalJSON() ([]byte, error)

func (*GroupUserVM) SetUserId ¶

func (o *GroupUserVM) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*GroupUserVM) SetUserIdNil ¶

func (o *GroupUserVM) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (GroupUserVM) ToMap ¶

func (o GroupUserVM) ToMap() (map[string]interface{}, error)

func (*GroupUserVM) UnsetUserId ¶

func (o *GroupUserVM) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type GroupUsersApiService ¶

type GroupUsersApiService service

GroupUsersApiService GroupUsersApi service

func (*GroupUsersApiService) GroupUsersAddUserToGroup ¶

func (a *GroupUsersApiService) GroupUsersAddUserToGroup(ctx context.Context, id string, userId string) ApiGroupUsersAddUserToGroupRequest

GroupUsersAddUserToGroup Add user to the group by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@param userId Identifier of user
@return ApiGroupUsersAddUserToGroupRequest

func (*GroupUsersApiService) GroupUsersAddUserToGroupExecute ¶

func (a *GroupUsersApiService) GroupUsersAddUserToGroupExecute(r ApiGroupUsersAddUserToGroupRequest) (*http.Response, error)

Execute executes the request

func (*GroupUsersApiService) GroupUsersGetUsersInGroup ¶

func (a *GroupUsersApiService) GroupUsersGetUsersInGroup(ctx context.Context, id string) ApiGroupUsersGetUsersInGroupRequest

GroupUsersGetUsersInGroup Returns users in the group by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@return ApiGroupUsersGetUsersInGroupRequest

func (*GroupUsersApiService) GroupUsersGetUsersInGroupExecute ¶

func (a *GroupUsersApiService) GroupUsersGetUsersInGroupExecute(r ApiGroupUsersGetUsersInGroupRequest) (*GroupUsersVM, *http.Response, error)

Execute executes the request

@return GroupUsersVM

func (*GroupUsersApiService) GroupUsersLeaveFromGroup ¶

func (a *GroupUsersApiService) GroupUsersLeaveFromGroup(ctx context.Context, id string) ApiGroupUsersLeaveFromGroupRequest

GroupUsersLeaveFromGroup Leave from the group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@return ApiGroupUsersLeaveFromGroupRequest

func (*GroupUsersApiService) GroupUsersLeaveFromGroupExecute ¶

func (a *GroupUsersApiService) GroupUsersLeaveFromGroupExecute(r ApiGroupUsersLeaveFromGroupRequest) (*http.Response, error)

Execute executes the request

func (*GroupUsersApiService) GroupUsersRemoveFromGroup ¶

func (a *GroupUsersApiService) GroupUsersRemoveFromGroup(ctx context.Context, id string, userId string) ApiGroupUsersRemoveFromGroupRequest

GroupUsersRemoveFromGroup Remove user from the group by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@param userId Identifier of user
@return ApiGroupUsersRemoveFromGroupRequest

func (*GroupUsersApiService) GroupUsersRemoveFromGroupExecute ¶

func (a *GroupUsersApiService) GroupUsersRemoveFromGroupExecute(r ApiGroupUsersRemoveFromGroupRequest) (*http.Response, error)

Execute executes the request

type GroupUsersVM ¶

type GroupUsersVM struct {
	Users []GroupUserVM `json:"users,omitempty"`
	Count *int64        `json:"count,omitempty"`
	Take  *int32        `json:"take,omitempty"`
	Skip  *int32        `json:"skip,omitempty"`
}

GroupUsersVM struct for GroupUsersVM

func NewGroupUsersVM ¶

func NewGroupUsersVM() *GroupUsersVM

NewGroupUsersVM instantiates a new GroupUsersVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupUsersVMWithDefaults ¶

func NewGroupUsersVMWithDefaults() *GroupUsersVM

NewGroupUsersVMWithDefaults instantiates a new GroupUsersVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupUsersVM) GetCount ¶

func (o *GroupUsersVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*GroupUsersVM) GetCountOk ¶

func (o *GroupUsersVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupUsersVM) GetSkip ¶

func (o *GroupUsersVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*GroupUsersVM) GetSkipOk ¶

func (o *GroupUsersVM) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupUsersVM) GetTake ¶

func (o *GroupUsersVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*GroupUsersVM) GetTakeOk ¶

func (o *GroupUsersVM) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupUsersVM) GetUsers ¶

func (o *GroupUsersVM) GetUsers() []GroupUserVM

GetUsers returns the Users field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupUsersVM) GetUsersOk ¶

func (o *GroupUsersVM) GetUsersOk() ([]GroupUserVM, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupUsersVM) HasCount ¶

func (o *GroupUsersVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*GroupUsersVM) HasSkip ¶

func (o *GroupUsersVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*GroupUsersVM) HasTake ¶

func (o *GroupUsersVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (*GroupUsersVM) HasUsers ¶

func (o *GroupUsersVM) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (GroupUsersVM) MarshalJSON ¶

func (o GroupUsersVM) MarshalJSON() ([]byte, error)

func (*GroupUsersVM) SetCount ¶

func (o *GroupUsersVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*GroupUsersVM) SetSkip ¶

func (o *GroupUsersVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*GroupUsersVM) SetTake ¶

func (o *GroupUsersVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (*GroupUsersVM) SetUsers ¶

func (o *GroupUsersVM) SetUsers(v []GroupUserVM)

SetUsers gets a reference to the given []GroupUserVM and assigns it to the Users field.

func (GroupUsersVM) ToMap ¶

func (o GroupUsersVM) ToMap() (map[string]interface{}, error)

type GroupVM ¶

type GroupVM struct {
	Id             NullableString `json:"id,omitempty"`
	Name           NullableString `json:"name,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
}

GroupVM struct for GroupVM

func NewGroupVM ¶

func NewGroupVM() *GroupVM

NewGroupVM instantiates a new GroupVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupVMWithDefaults ¶

func NewGroupVMWithDefaults() *GroupVM

NewGroupVMWithDefaults instantiates a new GroupVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupVM) GetId ¶

func (o *GroupVM) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupVM) GetIdOk ¶

func (o *GroupVM) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupVM) GetName ¶

func (o *GroupVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupVM) GetNameOk ¶

func (o *GroupVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupVM) GetSubscriptionId ¶

func (o *GroupVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupVM) GetSubscriptionIdOk ¶

func (o *GroupVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupVM) HasId ¶

func (o *GroupVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*GroupVM) HasName ¶

func (o *GroupVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupVM) HasSubscriptionId ¶

func (o *GroupVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (GroupVM) MarshalJSON ¶

func (o GroupVM) MarshalJSON() ([]byte, error)

func (*GroupVM) SetId ¶

func (o *GroupVM) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*GroupVM) SetIdNil ¶

func (o *GroupVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*GroupVM) SetName ¶

func (o *GroupVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*GroupVM) SetNameNil ¶

func (o *GroupVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GroupVM) SetSubscriptionId ¶

func (o *GroupVM) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*GroupVM) SetSubscriptionIdNil ¶

func (o *GroupVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (GroupVM) ToMap ¶

func (o GroupVM) ToMap() (map[string]interface{}, error)

func (*GroupVM) UnsetId ¶

func (o *GroupVM) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*GroupVM) UnsetName ¶

func (o *GroupVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*GroupVM) UnsetSubscriptionId ¶

func (o *GroupVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type GroupsApiService ¶

type GroupsApiService service

GroupsApiService GroupsApi service

func (*GroupsApiService) GroupsCreateGroup ¶

func (a *GroupsApiService) GroupsCreateGroup(ctx context.Context) ApiGroupsCreateGroupRequest

GroupsCreateGroup Create a new user group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGroupsCreateGroupRequest

func (*GroupsApiService) GroupsCreateGroupExecute ¶

func (a *GroupsApiService) GroupsCreateGroupExecute(r ApiGroupsCreateGroupRequest) (*GroupVM, *http.Response, error)

Execute executes the request

@return GroupVM

func (*GroupsApiService) GroupsDeleteGroup ¶

func (a *GroupsApiService) GroupsDeleteGroup(ctx context.Context, id string) ApiGroupsDeleteGroupRequest

GroupsDeleteGroup Delete group by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@return ApiGroupsDeleteGroupRequest

func (*GroupsApiService) GroupsDeleteGroupExecute ¶

func (a *GroupsApiService) GroupsDeleteGroupExecute(r ApiGroupsDeleteGroupRequest) (*http.Response, error)

Execute executes the request

func (*GroupsApiService) GroupsGetGroup ¶

func (a *GroupsApiService) GroupsGetGroup(ctx context.Context, id string) ApiGroupsGetGroupRequest

GroupsGetGroup Gets group by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@return ApiGroupsGetGroupRequest

func (*GroupsApiService) GroupsGetGroupExecute ¶

func (a *GroupsApiService) GroupsGetGroupExecute(r ApiGroupsGetGroupRequest) (*GroupVM, *http.Response, error)

Execute executes the request

@return GroupVM

func (*GroupsApiService) GroupsGetGroupList ¶

func (a *GroupsApiService) GroupsGetGroupList(ctx context.Context) ApiGroupsGetGroupListRequest

GroupsGetGroupList Returns a list of current user's groups<br /> This method will return following data about groups : <br /> Id, Name, Created time (UTC), Edited time (UTC), creator id, <br /> editor id, subscription id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGroupsGetGroupListRequest

func (*GroupsApiService) GroupsGetGroupListExecute ¶

func (a *GroupsApiService) GroupsGetGroupListExecute(r ApiGroupsGetGroupListRequest) (*GroupsVM, *http.Response, error)

Execute executes the request

@return GroupsVM

func (*GroupsApiService) GroupsGetPermissions ¶

func (a *GroupsApiService) GroupsGetPermissions(ctx context.Context, id string) ApiGroupsGetPermissionsRequest

GroupsGetPermissions Gets group permissions by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@return ApiGroupsGetPermissionsRequest

func (*GroupsApiService) GroupsGetPermissionsExecute ¶

func (a *GroupsApiService) GroupsGetPermissionsExecute(r ApiGroupsGetPermissionsRequest) (*GroupPermissionsVM, *http.Response, error)

Execute executes the request

@return GroupPermissionsVM

func (*GroupsApiService) GroupsRenameGroup ¶

func (a *GroupsApiService) GroupsRenameGroup(ctx context.Context, id string) ApiGroupsRenameGroupRequest

GroupsRenameGroup Rename group by identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of group
@return ApiGroupsRenameGroupRequest

func (*GroupsApiService) GroupsRenameGroupExecute ¶

func (a *GroupsApiService) GroupsRenameGroupExecute(r ApiGroupsRenameGroupRequest) (*GroupVM, *http.Response, error)

Execute executes the request

@return GroupVM

func (*GroupsApiService) GroupsUpdatePermissions ¶

func (a *GroupsApiService) GroupsUpdatePermissions(ctx context.Context, id string) ApiGroupsUpdatePermissionsRequest

GroupsUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGroupsUpdatePermissionsRequest

func (*GroupsApiService) GroupsUpdatePermissionsExecute ¶

func (a *GroupsApiService) GroupsUpdatePermissionsExecute(r ApiGroupsUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

type GroupsVM ¶

type GroupsVM struct {
	Groups []GroupVM `json:"groups,omitempty"`
	Count  *int64    `json:"count,omitempty"`
	Skip   *int32    `json:"skip,omitempty"`
	Take   *int32    `json:"take,omitempty"`
}

GroupsVM struct for GroupsVM

func NewGroupsVM ¶

func NewGroupsVM() *GroupsVM

NewGroupsVM instantiates a new GroupsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupsVMWithDefaults ¶

func NewGroupsVMWithDefaults() *GroupsVM

NewGroupsVMWithDefaults instantiates a new GroupsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupsVM) GetCount ¶

func (o *GroupsVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*GroupsVM) GetCountOk ¶

func (o *GroupsVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsVM) GetGroups ¶

func (o *GroupsVM) GetGroups() []GroupVM

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupsVM) GetGroupsOk ¶

func (o *GroupsVM) GetGroupsOk() ([]GroupVM, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupsVM) GetSkip ¶

func (o *GroupsVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*GroupsVM) GetSkipOk ¶

func (o *GroupsVM) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsVM) GetTake ¶

func (o *GroupsVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*GroupsVM) GetTakeOk ¶

func (o *GroupsVM) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupsVM) HasCount ¶

func (o *GroupsVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*GroupsVM) HasGroups ¶

func (o *GroupsVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*GroupsVM) HasSkip ¶

func (o *GroupsVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*GroupsVM) HasTake ¶

func (o *GroupsVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (GroupsVM) MarshalJSON ¶

func (o GroupsVM) MarshalJSON() ([]byte, error)

func (*GroupsVM) SetCount ¶

func (o *GroupsVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*GroupsVM) SetGroups ¶

func (o *GroupsVM) SetGroups(v []GroupVM)

SetGroups gets a reference to the given []GroupVM and assigns it to the Groups field.

func (*GroupsVM) SetSkip ¶

func (o *GroupsVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*GroupsVM) SetTake ¶

func (o *GroupsVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (GroupsVM) ToMap ¶

func (o GroupsVM) ToMap() (map[string]interface{}, error)

type HealthCheckApiService ¶

type HealthCheckApiService service

HealthCheckApiService HealthCheckApi service

func (*HealthCheckApiService) HealthCheckDataGet ¶

HealthCheckDataGet healthcheck

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiHealthCheckDataGetRequest

func (*HealthCheckApiService) HealthCheckDataGetExecute ¶

func (a *HealthCheckApiService) HealthCheckDataGetExecute(r ApiHealthCheckDataGetRequest) (*http.Response, error)

Execute executes the request

type HttpValidationProblemDetails ¶

type HttpValidationProblemDetails struct {
	Errors   *map[string][]string `json:"errors,omitempty"`
	Type     NullableString       `json:"type,omitempty"`
	Title    NullableString       `json:"title,omitempty"`
	Status   NullableInt32        `json:"status,omitempty"`
	Detail   NullableString       `json:"detail,omitempty"`
	Instance NullableString       `json:"instance,omitempty"`
}

HttpValidationProblemDetails struct for HttpValidationProblemDetails

func NewHttpValidationProblemDetails ¶

func NewHttpValidationProblemDetails() *HttpValidationProblemDetails

NewHttpValidationProblemDetails instantiates a new HttpValidationProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHttpValidationProblemDetailsWithDefaults ¶

func NewHttpValidationProblemDetailsWithDefaults() *HttpValidationProblemDetails

NewHttpValidationProblemDetailsWithDefaults instantiates a new HttpValidationProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HttpValidationProblemDetails) GetDetail ¶

func (o *HttpValidationProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpValidationProblemDetails) GetDetailOk ¶

func (o *HttpValidationProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpValidationProblemDetails) GetErrors ¶

func (o *HttpValidationProblemDetails) GetErrors() map[string][]string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*HttpValidationProblemDetails) GetErrorsOk ¶

func (o *HttpValidationProblemDetails) GetErrorsOk() (*map[string][]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HttpValidationProblemDetails) GetInstance ¶

func (o *HttpValidationProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpValidationProblemDetails) GetInstanceOk ¶

func (o *HttpValidationProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpValidationProblemDetails) GetStatus ¶

func (o *HttpValidationProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpValidationProblemDetails) GetStatusOk ¶

func (o *HttpValidationProblemDetails) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpValidationProblemDetails) GetTitle ¶

func (o *HttpValidationProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpValidationProblemDetails) GetTitleOk ¶

func (o *HttpValidationProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpValidationProblemDetails) GetType ¶

func (o *HttpValidationProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpValidationProblemDetails) GetTypeOk ¶

func (o *HttpValidationProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpValidationProblemDetails) HasDetail ¶

func (o *HttpValidationProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*HttpValidationProblemDetails) HasErrors ¶

func (o *HttpValidationProblemDetails) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*HttpValidationProblemDetails) HasInstance ¶

func (o *HttpValidationProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*HttpValidationProblemDetails) HasStatus ¶

func (o *HttpValidationProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*HttpValidationProblemDetails) HasTitle ¶

func (o *HttpValidationProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*HttpValidationProblemDetails) HasType ¶

func (o *HttpValidationProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (HttpValidationProblemDetails) MarshalJSON ¶

func (o HttpValidationProblemDetails) MarshalJSON() ([]byte, error)

func (*HttpValidationProblemDetails) SetDetail ¶

func (o *HttpValidationProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*HttpValidationProblemDetails) SetDetailNil ¶

func (o *HttpValidationProblemDetails) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*HttpValidationProblemDetails) SetErrors ¶

func (o *HttpValidationProblemDetails) SetErrors(v map[string][]string)

SetErrors gets a reference to the given map[string][]string and assigns it to the Errors field.

func (*HttpValidationProblemDetails) SetInstance ¶

func (o *HttpValidationProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given NullableString and assigns it to the Instance field.

func (*HttpValidationProblemDetails) SetInstanceNil ¶

func (o *HttpValidationProblemDetails) SetInstanceNil()

SetInstanceNil sets the value for Instance to be an explicit nil

func (*HttpValidationProblemDetails) SetStatus ¶

func (o *HttpValidationProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given NullableInt32 and assigns it to the Status field.

func (*HttpValidationProblemDetails) SetStatusNil ¶

func (o *HttpValidationProblemDetails) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*HttpValidationProblemDetails) SetTitle ¶

func (o *HttpValidationProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*HttpValidationProblemDetails) SetTitleNil ¶

func (o *HttpValidationProblemDetails) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*HttpValidationProblemDetails) SetType ¶

func (o *HttpValidationProblemDetails) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*HttpValidationProblemDetails) SetTypeNil ¶

func (o *HttpValidationProblemDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (HttpValidationProblemDetails) ToMap ¶

func (o HttpValidationProblemDetails) ToMap() (map[string]interface{}, error)

func (*HttpValidationProblemDetails) UnsetDetail ¶

func (o *HttpValidationProblemDetails) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*HttpValidationProblemDetails) UnsetInstance ¶

func (o *HttpValidationProblemDetails) UnsetInstance()

UnsetInstance ensures that no value is present for Instance, not even an explicit nil

func (*HttpValidationProblemDetails) UnsetStatus ¶

func (o *HttpValidationProblemDetails) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*HttpValidationProblemDetails) UnsetTitle ¶

func (o *HttpValidationProblemDetails) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*HttpValidationProblemDetails) UnsetType ¶

func (o *HttpValidationProblemDetails) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type InputFileVM ¶

type InputFileVM struct {
	EntityId NullableString `json:"entityId,omitempty"`
	Type     *FileKind      `json:"type,omitempty"`
}

InputFileVM struct for InputFileVM

func NewInputFileVM ¶

func NewInputFileVM() *InputFileVM

NewInputFileVM instantiates a new InputFileVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInputFileVMWithDefaults ¶

func NewInputFileVMWithDefaults() *InputFileVM

NewInputFileVMWithDefaults instantiates a new InputFileVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InputFileVM) GetEntityId ¶

func (o *InputFileVM) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InputFileVM) GetEntityIdOk ¶

func (o *InputFileVM) GetEntityIdOk() (*string, bool)

GetEntityIdOk returns a tuple with the EntityId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InputFileVM) GetType ¶

func (o *InputFileVM) GetType() FileKind

GetType returns the Type field value if set, zero value otherwise.

func (*InputFileVM) GetTypeOk ¶

func (o *InputFileVM) GetTypeOk() (*FileKind, 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 (*InputFileVM) HasEntityId ¶

func (o *InputFileVM) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*InputFileVM) HasType ¶

func (o *InputFileVM) HasType() bool

HasType returns a boolean if a field has been set.

func (InputFileVM) MarshalJSON ¶

func (o InputFileVM) MarshalJSON() ([]byte, error)

func (*InputFileVM) SetEntityId ¶

func (o *InputFileVM) SetEntityId(v string)

SetEntityId gets a reference to the given NullableString and assigns it to the EntityId field.

func (*InputFileVM) SetEntityIdNil ¶

func (o *InputFileVM) SetEntityIdNil()

SetEntityIdNil sets the value for EntityId to be an explicit nil

func (*InputFileVM) SetType ¶

func (o *InputFileVM) SetType(v FileKind)

SetType gets a reference to the given FileKind and assigns it to the Type field.

func (InputFileVM) ToMap ¶

func (o InputFileVM) ToMap() (map[string]interface{}, error)

func (*InputFileVM) UnsetEntityId ¶

func (o *InputFileVM) UnsetEntityId()

UnsetEntityId ensures that no value is present for EntityId, not even an explicit nil

type InvitedUser ¶

type InvitedUser struct {
	UserId    NullableString `json:"userId,omitempty"`
	InvitedAt *time.Time     `json:"invitedAt,omitempty"`
}

InvitedUser struct for InvitedUser

func NewInvitedUser ¶

func NewInvitedUser() *InvitedUser

NewInvitedUser instantiates a new InvitedUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInvitedUserWithDefaults ¶

func NewInvitedUserWithDefaults() *InvitedUser

NewInvitedUserWithDefaults instantiates a new InvitedUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InvitedUser) GetInvitedAt ¶

func (o *InvitedUser) GetInvitedAt() time.Time

GetInvitedAt returns the InvitedAt field value if set, zero value otherwise.

func (*InvitedUser) GetInvitedAtOk ¶

func (o *InvitedUser) GetInvitedAtOk() (*time.Time, bool)

GetInvitedAtOk returns a tuple with the InvitedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InvitedUser) GetUserId ¶

func (o *InvitedUser) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*InvitedUser) GetUserIdOk ¶

func (o *InvitedUser) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*InvitedUser) HasInvitedAt ¶

func (o *InvitedUser) HasInvitedAt() bool

HasInvitedAt returns a boolean if a field has been set.

func (*InvitedUser) HasUserId ¶

func (o *InvitedUser) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (InvitedUser) MarshalJSON ¶

func (o InvitedUser) MarshalJSON() ([]byte, error)

func (*InvitedUser) SetInvitedAt ¶

func (o *InvitedUser) SetInvitedAt(v time.Time)

SetInvitedAt gets a reference to the given time.Time and assigns it to the InvitedAt field.

func (*InvitedUser) SetUserId ¶

func (o *InvitedUser) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*InvitedUser) SetUserIdNil ¶

func (o *InvitedUser) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (InvitedUser) ToMap ¶

func (o InvitedUser) ToMap() (map[string]interface{}, error)

func (*InvitedUser) UnsetUserId ¶

func (o *InvitedUser) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MyPermissionsVM ¶

type MyPermissionsVM struct {
	Subscription *SubscriptionPermission `json:"subscription,omitempty"`
	Files        *FilePermission         `json:"files,omitempty"`
	Datasources  *DataSourcePermission   `json:"datasources,omitempty"`
	Groups       *GroupPermission        `json:"groups,omitempty"`
	Tasks        *TaskPermission         `json:"tasks,omitempty"`
}

MyPermissionsVM struct for MyPermissionsVM

func NewMyPermissionsVM ¶

func NewMyPermissionsVM() *MyPermissionsVM

NewMyPermissionsVM instantiates a new MyPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMyPermissionsVMWithDefaults ¶

func NewMyPermissionsVMWithDefaults() *MyPermissionsVM

NewMyPermissionsVMWithDefaults instantiates a new MyPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MyPermissionsVM) GetDatasources ¶

func (o *MyPermissionsVM) GetDatasources() DataSourcePermission

GetDatasources returns the Datasources field value if set, zero value otherwise.

func (*MyPermissionsVM) GetDatasourcesOk ¶

func (o *MyPermissionsVM) GetDatasourcesOk() (*DataSourcePermission, bool)

GetDatasourcesOk returns a tuple with the Datasources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MyPermissionsVM) GetFiles ¶

func (o *MyPermissionsVM) GetFiles() FilePermission

GetFiles returns the Files field value if set, zero value otherwise.

func (*MyPermissionsVM) GetFilesOk ¶

func (o *MyPermissionsVM) GetFilesOk() (*FilePermission, bool)

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MyPermissionsVM) GetGroups ¶

func (o *MyPermissionsVM) GetGroups() GroupPermission

GetGroups returns the Groups field value if set, zero value otherwise.

func (*MyPermissionsVM) GetGroupsOk ¶

func (o *MyPermissionsVM) GetGroupsOk() (*GroupPermission, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MyPermissionsVM) GetSubscription ¶

func (o *MyPermissionsVM) GetSubscription() SubscriptionPermission

GetSubscription returns the Subscription field value if set, zero value otherwise.

func (*MyPermissionsVM) GetSubscriptionOk ¶

func (o *MyPermissionsVM) GetSubscriptionOk() (*SubscriptionPermission, bool)

GetSubscriptionOk returns a tuple with the Subscription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MyPermissionsVM) GetTasks ¶

func (o *MyPermissionsVM) GetTasks() TaskPermission

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*MyPermissionsVM) GetTasksOk ¶

func (o *MyPermissionsVM) GetTasksOk() (*TaskPermission, bool)

GetTasksOk returns a tuple with the Tasks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MyPermissionsVM) HasDatasources ¶

func (o *MyPermissionsVM) HasDatasources() bool

HasDatasources returns a boolean if a field has been set.

func (*MyPermissionsVM) HasFiles ¶

func (o *MyPermissionsVM) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*MyPermissionsVM) HasGroups ¶

func (o *MyPermissionsVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*MyPermissionsVM) HasSubscription ¶

func (o *MyPermissionsVM) HasSubscription() bool

HasSubscription returns a boolean if a field has been set.

func (*MyPermissionsVM) HasTasks ¶

func (o *MyPermissionsVM) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (MyPermissionsVM) MarshalJSON ¶

func (o MyPermissionsVM) MarshalJSON() ([]byte, error)

func (*MyPermissionsVM) SetDatasources ¶

func (o *MyPermissionsVM) SetDatasources(v DataSourcePermission)

SetDatasources gets a reference to the given DataSourcePermission and assigns it to the Datasources field.

func (*MyPermissionsVM) SetFiles ¶

func (o *MyPermissionsVM) SetFiles(v FilePermission)

SetFiles gets a reference to the given FilePermission and assigns it to the Files field.

func (*MyPermissionsVM) SetGroups ¶

func (o *MyPermissionsVM) SetGroups(v GroupPermission)

SetGroups gets a reference to the given GroupPermission and assigns it to the Groups field.

func (*MyPermissionsVM) SetSubscription ¶

func (o *MyPermissionsVM) SetSubscription(v SubscriptionPermission)

SetSubscription gets a reference to the given SubscriptionPermission and assigns it to the Subscription field.

func (*MyPermissionsVM) SetTasks ¶

func (o *MyPermissionsVM) SetTasks(v TaskPermission)

SetTasks gets a reference to the given TaskPermission and assigns it to the Tasks field.

func (MyPermissionsVM) ToMap ¶

func (o MyPermissionsVM) ToMap() (map[string]interface{}, error)

type NullableAcceptAgreementsVM ¶

type NullableAcceptAgreementsVM struct {
	// contains filtered or unexported fields
}

func NewNullableAcceptAgreementsVM ¶

func NewNullableAcceptAgreementsVM(val *AcceptAgreementsVM) *NullableAcceptAgreementsVM

func (NullableAcceptAgreementsVM) Get ¶

func (NullableAcceptAgreementsVM) IsSet ¶

func (v NullableAcceptAgreementsVM) IsSet() bool

func (NullableAcceptAgreementsVM) MarshalJSON ¶

func (v NullableAcceptAgreementsVM) MarshalJSON() ([]byte, error)

func (*NullableAcceptAgreementsVM) Set ¶

func (*NullableAcceptAgreementsVM) UnmarshalJSON ¶

func (v *NullableAcceptAgreementsVM) UnmarshalJSON(src []byte) error

func (*NullableAcceptAgreementsVM) Unset ¶

func (v *NullableAcceptAgreementsVM) Unset()

type NullableAdminExportFolderCreateVM ¶

type NullableAdminExportFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableAdminExportFolderCreateVM) Get ¶

func (NullableAdminExportFolderCreateVM) IsSet ¶

func (NullableAdminExportFolderCreateVM) MarshalJSON ¶

func (v NullableAdminExportFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableAdminExportFolderCreateVM) Set ¶

func (*NullableAdminExportFolderCreateVM) UnmarshalJSON ¶

func (v *NullableAdminExportFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableAdminExportFolderCreateVM) Unset ¶

type NullableAdminFolderCreateVM ¶

type NullableAdminFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableAdminFolderCreateVM) Get ¶

func (NullableAdminFolderCreateVM) IsSet ¶

func (NullableAdminFolderCreateVM) MarshalJSON ¶

func (v NullableAdminFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableAdminFolderCreateVM) Set ¶

func (*NullableAdminFolderCreateVM) UnmarshalJSON ¶

func (v *NullableAdminFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableAdminFolderCreateVM) Unset ¶

func (v *NullableAdminFolderCreateVM) Unset()

type NullableAdminReportFolderCreateVM ¶

type NullableAdminReportFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableAdminReportFolderCreateVM) Get ¶

func (NullableAdminReportFolderCreateVM) IsSet ¶

func (NullableAdminReportFolderCreateVM) MarshalJSON ¶

func (v NullableAdminReportFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableAdminReportFolderCreateVM) Set ¶

func (*NullableAdminReportFolderCreateVM) UnmarshalJSON ¶

func (v *NullableAdminReportFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableAdminReportFolderCreateVM) Unset ¶

type NullableAdminSubscriptionVM ¶

type NullableAdminSubscriptionVM struct {
	// contains filtered or unexported fields
}

func (NullableAdminSubscriptionVM) Get ¶

func (NullableAdminSubscriptionVM) IsSet ¶

func (NullableAdminSubscriptionVM) MarshalJSON ¶

func (v NullableAdminSubscriptionVM) MarshalJSON() ([]byte, error)

func (*NullableAdminSubscriptionVM) Set ¶

func (*NullableAdminSubscriptionVM) UnmarshalJSON ¶

func (v *NullableAdminSubscriptionVM) UnmarshalJSON(src []byte) error

func (*NullableAdminSubscriptionVM) Unset ¶

func (v *NullableAdminSubscriptionVM) Unset()

type NullableAdminTemplateFolderCreateVM ¶

type NullableAdminTemplateFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableAdminTemplateFolderCreateVM) Get ¶

func (NullableAdminTemplateFolderCreateVM) IsSet ¶

func (NullableAdminTemplateFolderCreateVM) MarshalJSON ¶

func (v NullableAdminTemplateFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableAdminTemplateFolderCreateVM) Set ¶

func (*NullableAdminTemplateFolderCreateVM) UnmarshalJSON ¶

func (v *NullableAdminTemplateFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableAdminTemplateFolderCreateVM) Unset ¶

type NullableApiKeyVM ¶

type NullableApiKeyVM struct {
	// contains filtered or unexported fields
}

func NewNullableApiKeyVM ¶

func NewNullableApiKeyVM(val *ApiKeyVM) *NullableApiKeyVM

func (NullableApiKeyVM) Get ¶

func (v NullableApiKeyVM) Get() *ApiKeyVM

func (NullableApiKeyVM) IsSet ¶

func (v NullableApiKeyVM) IsSet() bool

func (NullableApiKeyVM) MarshalJSON ¶

func (v NullableApiKeyVM) MarshalJSON() ([]byte, error)

func (*NullableApiKeyVM) Set ¶

func (v *NullableApiKeyVM) Set(val *ApiKeyVM)

func (*NullableApiKeyVM) UnmarshalJSON ¶

func (v *NullableApiKeyVM) UnmarshalJSON(src []byte) error

func (*NullableApiKeyVM) Unset ¶

func (v *NullableApiKeyVM) Unset()

type NullableApiKeysVM ¶

type NullableApiKeysVM struct {
	// contains filtered or unexported fields
}

func NewNullableApiKeysVM ¶

func NewNullableApiKeysVM(val *ApiKeysVM) *NullableApiKeysVM

func (NullableApiKeysVM) Get ¶

func (v NullableApiKeysVM) Get() *ApiKeysVM

func (NullableApiKeysVM) IsSet ¶

func (v NullableApiKeysVM) IsSet() bool

func (NullableApiKeysVM) MarshalJSON ¶

func (v NullableApiKeysVM) MarshalJSON() ([]byte, error)

func (*NullableApiKeysVM) Set ¶

func (v *NullableApiKeysVM) Set(val *ApiKeysVM)

func (*NullableApiKeysVM) UnmarshalJSON ¶

func (v *NullableApiKeysVM) UnmarshalJSON(src []byte) error

func (*NullableApiKeysVM) Unset ¶

func (v *NullableApiKeysVM) Unset()

type NullableAppMixins ¶

type NullableAppMixins struct {
	// contains filtered or unexported fields
}

func NewNullableAppMixins ¶

func NewNullableAppMixins(val *AppMixins) *NullableAppMixins

func (NullableAppMixins) Get ¶

func (v NullableAppMixins) Get() *AppMixins

func (NullableAppMixins) IsSet ¶

func (v NullableAppMixins) IsSet() bool

func (NullableAppMixins) MarshalJSON ¶

func (v NullableAppMixins) MarshalJSON() ([]byte, error)

func (*NullableAppMixins) Set ¶

func (v *NullableAppMixins) Set(val *AppMixins)

func (*NullableAppMixins) UnmarshalJSON ¶

func (v *NullableAppMixins) UnmarshalJSON(src []byte) error

func (*NullableAppMixins) Unset ¶

func (v *NullableAppMixins) Unset()

type NullableAuditActionVM ¶

type NullableAuditActionVM struct {
	// contains filtered or unexported fields
}

func NewNullableAuditActionVM ¶

func NewNullableAuditActionVM(val *AuditActionVM) *NullableAuditActionVM

func (NullableAuditActionVM) Get ¶

func (NullableAuditActionVM) IsSet ¶

func (v NullableAuditActionVM) IsSet() bool

func (NullableAuditActionVM) MarshalJSON ¶

func (v NullableAuditActionVM) MarshalJSON() ([]byte, error)

func (*NullableAuditActionVM) Set ¶

func (v *NullableAuditActionVM) Set(val *AuditActionVM)

func (*NullableAuditActionVM) UnmarshalJSON ¶

func (v *NullableAuditActionVM) UnmarshalJSON(src []byte) error

func (*NullableAuditActionVM) Unset ¶

func (v *NullableAuditActionVM) Unset()

type NullableAuditActionsVM ¶

type NullableAuditActionsVM struct {
	// contains filtered or unexported fields
}

func NewNullableAuditActionsVM ¶

func NewNullableAuditActionsVM(val *AuditActionsVM) *NullableAuditActionsVM

func (NullableAuditActionsVM) Get ¶

func (NullableAuditActionsVM) IsSet ¶

func (v NullableAuditActionsVM) IsSet() bool

func (NullableAuditActionsVM) MarshalJSON ¶

func (v NullableAuditActionsVM) MarshalJSON() ([]byte, error)

func (*NullableAuditActionsVM) Set ¶

func (*NullableAuditActionsVM) UnmarshalJSON ¶

func (v *NullableAuditActionsVM) UnmarshalJSON(src []byte) error

func (*NullableAuditActionsVM) Unset ¶

func (v *NullableAuditActionsVM) Unset()

type NullableAuditFilePropertyChangedVM ¶

type NullableAuditFilePropertyChangedVM struct {
	// contains filtered or unexported fields
}

func (NullableAuditFilePropertyChangedVM) Get ¶

func (NullableAuditFilePropertyChangedVM) IsSet ¶

func (NullableAuditFilePropertyChangedVM) MarshalJSON ¶

func (v NullableAuditFilePropertyChangedVM) MarshalJSON() ([]byte, error)

func (*NullableAuditFilePropertyChangedVM) Set ¶

func (*NullableAuditFilePropertyChangedVM) UnmarshalJSON ¶

func (v *NullableAuditFilePropertyChangedVM) UnmarshalJSON(src []byte) error

func (*NullableAuditFilePropertyChangedVM) Unset ¶

type NullableAuditSubscriptionActionVM ¶

type NullableAuditSubscriptionActionVM struct {
	// contains filtered or unexported fields
}

func (NullableAuditSubscriptionActionVM) Get ¶

func (NullableAuditSubscriptionActionVM) IsSet ¶

func (NullableAuditSubscriptionActionVM) MarshalJSON ¶

func (v NullableAuditSubscriptionActionVM) MarshalJSON() ([]byte, error)

func (*NullableAuditSubscriptionActionVM) Set ¶

func (*NullableAuditSubscriptionActionVM) UnmarshalJSON ¶

func (v *NullableAuditSubscriptionActionVM) UnmarshalJSON(src []byte) error

func (*NullableAuditSubscriptionActionVM) Unset ¶

type NullableAuditTaskActionVM ¶

type NullableAuditTaskActionVM struct {
	// contains filtered or unexported fields
}

func NewNullableAuditTaskActionVM ¶

func NewNullableAuditTaskActionVM(val *AuditTaskActionVM) *NullableAuditTaskActionVM

func (NullableAuditTaskActionVM) Get ¶

func (NullableAuditTaskActionVM) IsSet ¶

func (v NullableAuditTaskActionVM) IsSet() bool

func (NullableAuditTaskActionVM) MarshalJSON ¶

func (v NullableAuditTaskActionVM) MarshalJSON() ([]byte, error)

func (*NullableAuditTaskActionVM) Set ¶

func (*NullableAuditTaskActionVM) UnmarshalJSON ¶

func (v *NullableAuditTaskActionVM) UnmarshalJSON(src []byte) error

func (*NullableAuditTaskActionVM) Unset ¶

func (v *NullableAuditTaskActionVM) Unset()

type NullableAuditType ¶

type NullableAuditType struct {
	// contains filtered or unexported fields
}

func NewNullableAuditType ¶

func NewNullableAuditType(val *AuditType) *NullableAuditType

func (NullableAuditType) Get ¶

func (v NullableAuditType) Get() *AuditType

func (NullableAuditType) IsSet ¶

func (v NullableAuditType) IsSet() bool

func (NullableAuditType) MarshalJSON ¶

func (v NullableAuditType) MarshalJSON() ([]byte, error)

func (*NullableAuditType) Set ¶

func (v *NullableAuditType) Set(val *AuditType)

func (*NullableAuditType) UnmarshalJSON ¶

func (v *NullableAuditType) UnmarshalJSON(src []byte) error

func (*NullableAuditType) Unset ¶

func (v *NullableAuditType) Unset()

type NullableAuthConfigVM ¶

type NullableAuthConfigVM struct {
	// contains filtered or unexported fields
}

func NewNullableAuthConfigVM ¶

func NewNullableAuthConfigVM(val *AuthConfigVM) *NullableAuthConfigVM

func (NullableAuthConfigVM) Get ¶

func (NullableAuthConfigVM) IsSet ¶

func (v NullableAuthConfigVM) IsSet() bool

func (NullableAuthConfigVM) MarshalJSON ¶

func (v NullableAuthConfigVM) MarshalJSON() ([]byte, error)

func (*NullableAuthConfigVM) Set ¶

func (v *NullableAuthConfigVM) Set(val *AuthConfigVM)

func (*NullableAuthConfigVM) UnmarshalJSON ¶

func (v *NullableAuthConfigVM) UnmarshalJSON(src []byte) error

func (*NullableAuthConfigVM) Unset ¶

func (v *NullableAuthConfigVM) 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 NullableBreadcrumbsModel ¶

type NullableBreadcrumbsModel struct {
	// contains filtered or unexported fields
}

func NewNullableBreadcrumbsModel ¶

func NewNullableBreadcrumbsModel(val *BreadcrumbsModel) *NullableBreadcrumbsModel

func (NullableBreadcrumbsModel) Get ¶

func (NullableBreadcrumbsModel) IsSet ¶

func (v NullableBreadcrumbsModel) IsSet() bool

func (NullableBreadcrumbsModel) MarshalJSON ¶

func (v NullableBreadcrumbsModel) MarshalJSON() ([]byte, error)

func (*NullableBreadcrumbsModel) Set ¶

func (*NullableBreadcrumbsModel) UnmarshalJSON ¶

func (v *NullableBreadcrumbsModel) UnmarshalJSON(src []byte) error

func (*NullableBreadcrumbsModel) Unset ¶

func (v *NullableBreadcrumbsModel) Unset()

type NullableBreadcrumbsVM ¶

type NullableBreadcrumbsVM struct {
	// contains filtered or unexported fields
}

func NewNullableBreadcrumbsVM ¶

func NewNullableBreadcrumbsVM(val *BreadcrumbsVM) *NullableBreadcrumbsVM

func (NullableBreadcrumbsVM) Get ¶

func (NullableBreadcrumbsVM) IsSet ¶

func (v NullableBreadcrumbsVM) IsSet() bool

func (NullableBreadcrumbsVM) MarshalJSON ¶

func (v NullableBreadcrumbsVM) MarshalJSON() ([]byte, error)

func (*NullableBreadcrumbsVM) Set ¶

func (v *NullableBreadcrumbsVM) Set(val *BreadcrumbsVM)

func (*NullableBreadcrumbsVM) UnmarshalJSON ¶

func (v *NullableBreadcrumbsVM) UnmarshalJSON(src []byte) error

func (*NullableBreadcrumbsVM) Unset ¶

func (v *NullableBreadcrumbsVM) Unset()

type NullableClearNotificationsVM ¶

type NullableClearNotificationsVM struct {
	// contains filtered or unexported fields
}

func (NullableClearNotificationsVM) Get ¶

func (NullableClearNotificationsVM) IsSet ¶

func (NullableClearNotificationsVM) MarshalJSON ¶

func (v NullableClearNotificationsVM) MarshalJSON() ([]byte, error)

func (*NullableClearNotificationsVM) Set ¶

func (*NullableClearNotificationsVM) UnmarshalJSON ¶

func (v *NullableClearNotificationsVM) UnmarshalJSON(src []byte) error

func (*NullableClearNotificationsVM) Unset ¶

func (v *NullableClearNotificationsVM) Unset()

type NullableContactGroupVM ¶

type NullableContactGroupVM struct {
	// contains filtered or unexported fields
}

func NewNullableContactGroupVM ¶

func NewNullableContactGroupVM(val *ContactGroupVM) *NullableContactGroupVM

func (NullableContactGroupVM) Get ¶

func (NullableContactGroupVM) IsSet ¶

func (v NullableContactGroupVM) IsSet() bool

func (NullableContactGroupVM) MarshalJSON ¶

func (v NullableContactGroupVM) MarshalJSON() ([]byte, error)

func (*NullableContactGroupVM) Set ¶

func (*NullableContactGroupVM) UnmarshalJSON ¶

func (v *NullableContactGroupVM) UnmarshalJSON(src []byte) error

func (*NullableContactGroupVM) Unset ¶

func (v *NullableContactGroupVM) Unset()

type NullableContactGroupsVM ¶

type NullableContactGroupsVM struct {
	// contains filtered or unexported fields
}

func NewNullableContactGroupsVM ¶

func NewNullableContactGroupsVM(val *ContactGroupsVM) *NullableContactGroupsVM

func (NullableContactGroupsVM) Get ¶

func (NullableContactGroupsVM) IsSet ¶

func (v NullableContactGroupsVM) IsSet() bool

func (NullableContactGroupsVM) MarshalJSON ¶

func (v NullableContactGroupsVM) MarshalJSON() ([]byte, error)

func (*NullableContactGroupsVM) Set ¶

func (*NullableContactGroupsVM) UnmarshalJSON ¶

func (v *NullableContactGroupsVM) UnmarshalJSON(src []byte) error

func (*NullableContactGroupsVM) Unset ¶

func (v *NullableContactGroupsVM) Unset()

type NullableContactVM ¶

type NullableContactVM struct {
	// contains filtered or unexported fields
}

func NewNullableContactVM ¶

func NewNullableContactVM(val *ContactVM) *NullableContactVM

func (NullableContactVM) Get ¶

func (v NullableContactVM) Get() *ContactVM

func (NullableContactVM) IsSet ¶

func (v NullableContactVM) IsSet() bool

func (NullableContactVM) MarshalJSON ¶

func (v NullableContactVM) MarshalJSON() ([]byte, error)

func (*NullableContactVM) Set ¶

func (v *NullableContactVM) Set(val *ContactVM)

func (*NullableContactVM) UnmarshalJSON ¶

func (v *NullableContactVM) UnmarshalJSON(src []byte) error

func (*NullableContactVM) Unset ¶

func (v *NullableContactVM) Unset()

type NullableContactsVM ¶

type NullableContactsVM struct {
	// contains filtered or unexported fields
}

func NewNullableContactsVM ¶

func NewNullableContactsVM(val *ContactsVM) *NullableContactsVM

func (NullableContactsVM) Get ¶

func (v NullableContactsVM) Get() *ContactsVM

func (NullableContactsVM) IsSet ¶

func (v NullableContactsVM) IsSet() bool

func (NullableContactsVM) MarshalJSON ¶

func (v NullableContactsVM) MarshalJSON() ([]byte, error)

func (*NullableContactsVM) Set ¶

func (v *NullableContactsVM) Set(val *ContactsVM)

func (*NullableContactsVM) UnmarshalJSON ¶

func (v *NullableContactsVM) UnmarshalJSON(src []byte) error

func (*NullableContactsVM) Unset ¶

func (v *NullableContactsVM) Unset()

type NullableCountVM ¶

type NullableCountVM struct {
	// contains filtered or unexported fields
}

func NewNullableCountVM ¶

func NewNullableCountVM(val *CountVM) *NullableCountVM

func (NullableCountVM) Get ¶

func (v NullableCountVM) Get() *CountVM

func (NullableCountVM) IsSet ¶

func (v NullableCountVM) IsSet() bool

func (NullableCountVM) MarshalJSON ¶

func (v NullableCountVM) MarshalJSON() ([]byte, error)

func (*NullableCountVM) Set ¶

func (v *NullableCountVM) Set(val *CountVM)

func (*NullableCountVM) UnmarshalJSON ¶

func (v *NullableCountVM) UnmarshalJSON(src []byte) error

func (*NullableCountVM) Unset ¶

func (v *NullableCountVM) Unset()

type NullableCreateApiKeyVM ¶

type NullableCreateApiKeyVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateApiKeyVM ¶

func NewNullableCreateApiKeyVM(val *CreateApiKeyVM) *NullableCreateApiKeyVM

func (NullableCreateApiKeyVM) Get ¶

func (NullableCreateApiKeyVM) IsSet ¶

func (v NullableCreateApiKeyVM) IsSet() bool

func (NullableCreateApiKeyVM) MarshalJSON ¶

func (v NullableCreateApiKeyVM) MarshalJSON() ([]byte, error)

func (*NullableCreateApiKeyVM) Set ¶

func (*NullableCreateApiKeyVM) UnmarshalJSON ¶

func (v *NullableCreateApiKeyVM) UnmarshalJSON(src []byte) error

func (*NullableCreateApiKeyVM) Unset ¶

func (v *NullableCreateApiKeyVM) Unset()

type NullableCreateContactGroupVM ¶

type NullableCreateContactGroupVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateContactGroupVM) Get ¶

func (NullableCreateContactGroupVM) IsSet ¶

func (NullableCreateContactGroupVM) MarshalJSON ¶

func (v NullableCreateContactGroupVM) MarshalJSON() ([]byte, error)

func (*NullableCreateContactGroupVM) Set ¶

func (*NullableCreateContactGroupVM) UnmarshalJSON ¶

func (v *NullableCreateContactGroupVM) UnmarshalJSON(src []byte) error

func (*NullableCreateContactGroupVM) Unset ¶

func (v *NullableCreateContactGroupVM) Unset()

type NullableCreateContactVM ¶

type NullableCreateContactVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateContactVM ¶

func NewNullableCreateContactVM(val *CreateContactVM) *NullableCreateContactVM

func (NullableCreateContactVM) Get ¶

func (NullableCreateContactVM) IsSet ¶

func (v NullableCreateContactVM) IsSet() bool

func (NullableCreateContactVM) MarshalJSON ¶

func (v NullableCreateContactVM) MarshalJSON() ([]byte, error)

func (*NullableCreateContactVM) Set ¶

func (*NullableCreateContactVM) UnmarshalJSON ¶

func (v *NullableCreateContactVM) UnmarshalJSON(src []byte) error

func (*NullableCreateContactVM) Unset ¶

func (v *NullableCreateContactVM) Unset()

type NullableCreateDataSourceAdminVM ¶

type NullableCreateDataSourceAdminVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateDataSourceAdminVM) Get ¶

func (NullableCreateDataSourceAdminVM) IsSet ¶

func (NullableCreateDataSourceAdminVM) MarshalJSON ¶

func (v NullableCreateDataSourceAdminVM) MarshalJSON() ([]byte, error)

func (*NullableCreateDataSourceAdminVM) Set ¶

func (*NullableCreateDataSourceAdminVM) UnmarshalJSON ¶

func (v *NullableCreateDataSourceAdminVM) UnmarshalJSON(src []byte) error

func (*NullableCreateDataSourceAdminVM) Unset ¶

type NullableCreateDataSourceVM ¶

type NullableCreateDataSourceVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateDataSourceVM ¶

func NewNullableCreateDataSourceVM(val *CreateDataSourceVM) *NullableCreateDataSourceVM

func (NullableCreateDataSourceVM) Get ¶

func (NullableCreateDataSourceVM) IsSet ¶

func (v NullableCreateDataSourceVM) IsSet() bool

func (NullableCreateDataSourceVM) MarshalJSON ¶

func (v NullableCreateDataSourceVM) MarshalJSON() ([]byte, error)

func (*NullableCreateDataSourceVM) Set ¶

func (*NullableCreateDataSourceVM) UnmarshalJSON ¶

func (v *NullableCreateDataSourceVM) UnmarshalJSON(src []byte) error

func (*NullableCreateDataSourceVM) Unset ¶

func (v *NullableCreateDataSourceVM) Unset()

type NullableCreateEmailTaskVM ¶

type NullableCreateEmailTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateEmailTaskVM ¶

func NewNullableCreateEmailTaskVM(val *CreateEmailTaskVM) *NullableCreateEmailTaskVM

func (NullableCreateEmailTaskVM) Get ¶

func (NullableCreateEmailTaskVM) IsSet ¶

func (v NullableCreateEmailTaskVM) IsSet() bool

func (NullableCreateEmailTaskVM) MarshalJSON ¶

func (v NullableCreateEmailTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateEmailTaskVM) Set ¶

func (*NullableCreateEmailTaskVM) UnmarshalJSON ¶

func (v *NullableCreateEmailTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateEmailTaskVM) Unset ¶

func (v *NullableCreateEmailTaskVM) Unset()

type NullableCreateExportReportTaskVM ¶

type NullableCreateExportReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateExportReportTaskVM) Get ¶

func (NullableCreateExportReportTaskVM) IsSet ¶

func (NullableCreateExportReportTaskVM) MarshalJSON ¶

func (v NullableCreateExportReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateExportReportTaskVM) Set ¶

func (*NullableCreateExportReportTaskVM) UnmarshalJSON ¶

func (v *NullableCreateExportReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateExportReportTaskVM) Unset ¶

type NullableCreateExportTemplateTaskVM ¶

type NullableCreateExportTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateExportTemplateTaskVM) Get ¶

func (NullableCreateExportTemplateTaskVM) IsSet ¶

func (NullableCreateExportTemplateTaskVM) MarshalJSON ¶

func (v NullableCreateExportTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateExportTemplateTaskVM) Set ¶

func (*NullableCreateExportTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableCreateExportTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateExportTemplateTaskVM) Unset ¶

type NullableCreateFTPUploadTaskVM ¶

type NullableCreateFTPUploadTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateFTPUploadTaskVM) Get ¶

func (NullableCreateFTPUploadTaskVM) IsSet ¶

func (NullableCreateFTPUploadTaskVM) MarshalJSON ¶

func (v NullableCreateFTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateFTPUploadTaskVM) Set ¶

func (*NullableCreateFTPUploadTaskVM) UnmarshalJSON ¶

func (v *NullableCreateFTPUploadTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateFTPUploadTaskVM) Unset ¶

func (v *NullableCreateFTPUploadTaskVM) Unset()

type NullableCreateFetchTaskVM ¶

type NullableCreateFetchTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateFetchTaskVM ¶

func NewNullableCreateFetchTaskVM(val *CreateFetchTaskVM) *NullableCreateFetchTaskVM

func (NullableCreateFetchTaskVM) Get ¶

func (NullableCreateFetchTaskVM) IsSet ¶

func (v NullableCreateFetchTaskVM) IsSet() bool

func (NullableCreateFetchTaskVM) MarshalJSON ¶

func (v NullableCreateFetchTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateFetchTaskVM) Set ¶

func (*NullableCreateFetchTaskVM) UnmarshalJSON ¶

func (v *NullableCreateFetchTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateFetchTaskVM) Unset ¶

func (v *NullableCreateFetchTaskVM) Unset()

type NullableCreateGroupAdminVM ¶

type NullableCreateGroupAdminVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateGroupAdminVM ¶

func NewNullableCreateGroupAdminVM(val *CreateGroupAdminVM) *NullableCreateGroupAdminVM

func (NullableCreateGroupAdminVM) Get ¶

func (NullableCreateGroupAdminVM) IsSet ¶

func (v NullableCreateGroupAdminVM) IsSet() bool

func (NullableCreateGroupAdminVM) MarshalJSON ¶

func (v NullableCreateGroupAdminVM) MarshalJSON() ([]byte, error)

func (*NullableCreateGroupAdminVM) Set ¶

func (*NullableCreateGroupAdminVM) UnmarshalJSON ¶

func (v *NullableCreateGroupAdminVM) UnmarshalJSON(src []byte) error

func (*NullableCreateGroupAdminVM) Unset ¶

func (v *NullableCreateGroupAdminVM) Unset()

type NullableCreateGroupVM ¶

type NullableCreateGroupVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateGroupVM ¶

func NewNullableCreateGroupVM(val *CreateGroupVM) *NullableCreateGroupVM

func (NullableCreateGroupVM) Get ¶

func (NullableCreateGroupVM) IsSet ¶

func (v NullableCreateGroupVM) IsSet() bool

func (NullableCreateGroupVM) MarshalJSON ¶

func (v NullableCreateGroupVM) MarshalJSON() ([]byte, error)

func (*NullableCreateGroupVM) Set ¶

func (v *NullableCreateGroupVM) Set(val *CreateGroupVM)

func (*NullableCreateGroupVM) UnmarshalJSON ¶

func (v *NullableCreateGroupVM) UnmarshalJSON(src []byte) error

func (*NullableCreateGroupVM) Unset ¶

func (v *NullableCreateGroupVM) Unset()

type NullableCreatePrepareTemplateTaskVM ¶

type NullableCreatePrepareTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreatePrepareTemplateTaskVM) Get ¶

func (NullableCreatePrepareTemplateTaskVM) IsSet ¶

func (NullableCreatePrepareTemplateTaskVM) MarshalJSON ¶

func (v NullableCreatePrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreatePrepareTemplateTaskVM) Set ¶

func (*NullableCreatePrepareTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableCreatePrepareTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreatePrepareTemplateTaskVM) Unset ¶

type NullableCreateSubscriptionInviteVM ¶

type NullableCreateSubscriptionInviteVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateSubscriptionInviteVM) Get ¶

func (NullableCreateSubscriptionInviteVM) IsSet ¶

func (NullableCreateSubscriptionInviteVM) MarshalJSON ¶

func (v NullableCreateSubscriptionInviteVM) MarshalJSON() ([]byte, error)

func (*NullableCreateSubscriptionInviteVM) Set ¶

func (*NullableCreateSubscriptionInviteVM) UnmarshalJSON ¶

func (v *NullableCreateSubscriptionInviteVM) UnmarshalJSON(src []byte) error

func (*NullableCreateSubscriptionInviteVM) Unset ¶

type NullableCreateTaskBaseVM ¶

type NullableCreateTaskBaseVM struct {
	// contains filtered or unexported fields
}

func NewNullableCreateTaskBaseVM ¶

func NewNullableCreateTaskBaseVM(val *CreateTaskBaseVM) *NullableCreateTaskBaseVM

func (NullableCreateTaskBaseVM) Get ¶

func (NullableCreateTaskBaseVM) IsSet ¶

func (v NullableCreateTaskBaseVM) IsSet() bool

func (NullableCreateTaskBaseVM) MarshalJSON ¶

func (v NullableCreateTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableCreateTaskBaseVM) Set ¶

func (*NullableCreateTaskBaseVM) UnmarshalJSON ¶

func (v *NullableCreateTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableCreateTaskBaseVM) Unset ¶

func (v *NullableCreateTaskBaseVM) Unset()

type NullableCreateThumbnailReportTaskVM ¶

type NullableCreateThumbnailReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateThumbnailReportTaskVM) Get ¶

func (NullableCreateThumbnailReportTaskVM) IsSet ¶

func (NullableCreateThumbnailReportTaskVM) MarshalJSON ¶

func (v NullableCreateThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateThumbnailReportTaskVM) Set ¶

func (*NullableCreateThumbnailReportTaskVM) UnmarshalJSON ¶

func (v *NullableCreateThumbnailReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateThumbnailReportTaskVM) Unset ¶

type NullableCreateThumbnailTemplateTaskVM ¶

type NullableCreateThumbnailTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateThumbnailTemplateTaskVM) Get ¶

func (NullableCreateThumbnailTemplateTaskVM) IsSet ¶

func (NullableCreateThumbnailTemplateTaskVM) MarshalJSON ¶

func (v NullableCreateThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateThumbnailTemplateTaskVM) Set ¶

func (*NullableCreateThumbnailTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableCreateThumbnailTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateThumbnailTemplateTaskVM) Unset ¶

type NullableCreateTransformTaskBaseVM ¶

type NullableCreateTransformTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateTransformTaskBaseVM) Get ¶

func (NullableCreateTransformTaskBaseVM) IsSet ¶

func (NullableCreateTransformTaskBaseVM) MarshalJSON ¶

func (v NullableCreateTransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableCreateTransformTaskBaseVM) Set ¶

func (*NullableCreateTransformTaskBaseVM) UnmarshalJSON ¶

func (v *NullableCreateTransformTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableCreateTransformTaskBaseVM) Unset ¶

type NullableCreateTransportTaskBaseVM ¶

type NullableCreateTransportTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateTransportTaskBaseVM) Get ¶

func (NullableCreateTransportTaskBaseVM) IsSet ¶

func (NullableCreateTransportTaskBaseVM) MarshalJSON ¶

func (v NullableCreateTransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableCreateTransportTaskBaseVM) Set ¶

func (*NullableCreateTransportTaskBaseVM) UnmarshalJSON ¶

func (v *NullableCreateTransportTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableCreateTransportTaskBaseVM) Unset ¶

type NullableCreateWebhookTaskVM ¶

type NullableCreateWebhookTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableCreateWebhookTaskVM) Get ¶

func (NullableCreateWebhookTaskVM) IsSet ¶

func (NullableCreateWebhookTaskVM) MarshalJSON ¶

func (v NullableCreateWebhookTaskVM) MarshalJSON() ([]byte, error)

func (*NullableCreateWebhookTaskVM) Set ¶

func (*NullableCreateWebhookTaskVM) UnmarshalJSON ¶

func (v *NullableCreateWebhookTaskVM) UnmarshalJSON(src []byte) error

func (*NullableCreateWebhookTaskVM) Unset ¶

func (v *NullableCreateWebhookTaskVM) Unset()

type NullableDataSourceAdministrate ¶

type NullableDataSourceAdministrate struct {
	// contains filtered or unexported fields
}

func (NullableDataSourceAdministrate) Get ¶

func (NullableDataSourceAdministrate) IsSet ¶

func (NullableDataSourceAdministrate) MarshalJSON ¶

func (v NullableDataSourceAdministrate) MarshalJSON() ([]byte, error)

func (*NullableDataSourceAdministrate) Set ¶

func (*NullableDataSourceAdministrate) UnmarshalJSON ¶

func (v *NullableDataSourceAdministrate) UnmarshalJSON(src []byte) error

func (*NullableDataSourceAdministrate) Unset ¶

func (v *NullableDataSourceAdministrate) Unset()

type NullableDataSourceConnectionType ¶

type NullableDataSourceConnectionType struct {
	// contains filtered or unexported fields
}

func (NullableDataSourceConnectionType) Get ¶

func (NullableDataSourceConnectionType) IsSet ¶

func (NullableDataSourceConnectionType) MarshalJSON ¶

func (v NullableDataSourceConnectionType) MarshalJSON() ([]byte, error)

func (*NullableDataSourceConnectionType) Set ¶

func (*NullableDataSourceConnectionType) UnmarshalJSON ¶

func (v *NullableDataSourceConnectionType) UnmarshalJSON(src []byte) error

func (*NullableDataSourceConnectionType) Unset ¶

type NullableDataSourceCreate ¶

type NullableDataSourceCreate struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceCreate ¶

func NewNullableDataSourceCreate(val *DataSourceCreate) *NullableDataSourceCreate

func (NullableDataSourceCreate) Get ¶

func (NullableDataSourceCreate) IsSet ¶

func (v NullableDataSourceCreate) IsSet() bool

func (NullableDataSourceCreate) MarshalJSON ¶

func (v NullableDataSourceCreate) MarshalJSON() ([]byte, error)

func (*NullableDataSourceCreate) Set ¶

func (*NullableDataSourceCreate) UnmarshalJSON ¶

func (v *NullableDataSourceCreate) UnmarshalJSON(src []byte) error

func (*NullableDataSourceCreate) Unset ¶

func (v *NullableDataSourceCreate) Unset()

type NullableDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission ¶

type NullableDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission struct {
	// contains filtered or unexported fields
}

func (NullableDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) IsSet ¶

func (NullableDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) MarshalJSON ¶

func (*NullableDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) UnmarshalJSON ¶

func (*NullableDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermission) Unset ¶

type NullableDataSourceDelete ¶

type NullableDataSourceDelete struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceDelete ¶

func NewNullableDataSourceDelete(val *DataSourceDelete) *NullableDataSourceDelete

func (NullableDataSourceDelete) Get ¶

func (NullableDataSourceDelete) IsSet ¶

func (v NullableDataSourceDelete) IsSet() bool

func (NullableDataSourceDelete) MarshalJSON ¶

func (v NullableDataSourceDelete) MarshalJSON() ([]byte, error)

func (*NullableDataSourceDelete) Set ¶

func (*NullableDataSourceDelete) UnmarshalJSON ¶

func (v *NullableDataSourceDelete) UnmarshalJSON(src []byte) error

func (*NullableDataSourceDelete) Unset ¶

func (v *NullableDataSourceDelete) Unset()

type NullableDataSourceExecute ¶

type NullableDataSourceExecute struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceExecute ¶

func NewNullableDataSourceExecute(val *DataSourceExecute) *NullableDataSourceExecute

func (NullableDataSourceExecute) Get ¶

func (NullableDataSourceExecute) IsSet ¶

func (v NullableDataSourceExecute) IsSet() bool

func (NullableDataSourceExecute) MarshalJSON ¶

func (v NullableDataSourceExecute) MarshalJSON() ([]byte, error)

func (*NullableDataSourceExecute) Set ¶

func (*NullableDataSourceExecute) UnmarshalJSON ¶

func (v *NullableDataSourceExecute) UnmarshalJSON(src []byte) error

func (*NullableDataSourceExecute) Unset ¶

func (v *NullableDataSourceExecute) Unset()

type NullableDataSourceGet ¶

type NullableDataSourceGet struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceGet ¶

func NewNullableDataSourceGet(val *DataSourceGet) *NullableDataSourceGet

func (NullableDataSourceGet) Get ¶

func (NullableDataSourceGet) IsSet ¶

func (v NullableDataSourceGet) IsSet() bool

func (NullableDataSourceGet) MarshalJSON ¶

func (v NullableDataSourceGet) MarshalJSON() ([]byte, error)

func (*NullableDataSourceGet) Set ¶

func (v *NullableDataSourceGet) Set(val *DataSourceGet)

func (*NullableDataSourceGet) UnmarshalJSON ¶

func (v *NullableDataSourceGet) UnmarshalJSON(src []byte) error

func (*NullableDataSourceGet) Unset ¶

func (v *NullableDataSourceGet) Unset()

type NullableDataSourcePermission ¶

type NullableDataSourcePermission struct {
	// contains filtered or unexported fields
}

func (NullableDataSourcePermission) Get ¶

func (NullableDataSourcePermission) IsSet ¶

func (NullableDataSourcePermission) MarshalJSON ¶

func (v NullableDataSourcePermission) MarshalJSON() ([]byte, error)

func (*NullableDataSourcePermission) Set ¶

func (*NullableDataSourcePermission) UnmarshalJSON ¶

func (v *NullableDataSourcePermission) UnmarshalJSON(src []byte) error

func (*NullableDataSourcePermission) Unset ¶

func (v *NullableDataSourcePermission) Unset()

type NullableDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions ¶

type NullableDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions struct {
	// contains filtered or unexported fields
}

func (NullableDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) IsSet ¶

func (NullableDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) MarshalJSON ¶

func (*NullableDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) UnmarshalJSON ¶

func (*NullableDataSourcePermissionDataSourceCreateDataSourceGetDataSourceUpdateDataSourceDeleteDataSourceExecuteDataSourceAdministratePermissions) Unset ¶

type NullableDataSourcePermissions ¶

type NullableDataSourcePermissions struct {
	// contains filtered or unexported fields
}

func (NullableDataSourcePermissions) Get ¶

func (NullableDataSourcePermissions) IsSet ¶

func (NullableDataSourcePermissions) MarshalJSON ¶

func (v NullableDataSourcePermissions) MarshalJSON() ([]byte, error)

func (*NullableDataSourcePermissions) Set ¶

func (*NullableDataSourcePermissions) UnmarshalJSON ¶

func (v *NullableDataSourcePermissions) UnmarshalJSON(src []byte) error

func (*NullableDataSourcePermissions) Unset ¶

func (v *NullableDataSourcePermissions) Unset()

type NullableDataSourcePermissionsVM ¶

type NullableDataSourcePermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableDataSourcePermissionsVM) Get ¶

func (NullableDataSourcePermissionsVM) IsSet ¶

func (NullableDataSourcePermissionsVM) MarshalJSON ¶

func (v NullableDataSourcePermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableDataSourcePermissionsVM) Set ¶

func (*NullableDataSourcePermissionsVM) UnmarshalJSON ¶

func (v *NullableDataSourcePermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableDataSourcePermissionsVM) Unset ¶

type NullableDataSourceSorting ¶

type NullableDataSourceSorting struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceSorting ¶

func NewNullableDataSourceSorting(val *DataSourceSorting) *NullableDataSourceSorting

func (NullableDataSourceSorting) Get ¶

func (NullableDataSourceSorting) IsSet ¶

func (v NullableDataSourceSorting) IsSet() bool

func (NullableDataSourceSorting) MarshalJSON ¶

func (v NullableDataSourceSorting) MarshalJSON() ([]byte, error)

func (*NullableDataSourceSorting) Set ¶

func (*NullableDataSourceSorting) UnmarshalJSON ¶

func (v *NullableDataSourceSorting) UnmarshalJSON(src []byte) error

func (*NullableDataSourceSorting) Unset ¶

func (v *NullableDataSourceSorting) Unset()

type NullableDataSourceStatus ¶

type NullableDataSourceStatus struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceStatus ¶

func NewNullableDataSourceStatus(val *DataSourceStatus) *NullableDataSourceStatus

func (NullableDataSourceStatus) Get ¶

func (NullableDataSourceStatus) IsSet ¶

func (v NullableDataSourceStatus) IsSet() bool

func (NullableDataSourceStatus) MarshalJSON ¶

func (v NullableDataSourceStatus) MarshalJSON() ([]byte, error)

func (*NullableDataSourceStatus) Set ¶

func (*NullableDataSourceStatus) UnmarshalJSON ¶

func (v *NullableDataSourceStatus) UnmarshalJSON(src []byte) error

func (*NullableDataSourceStatus) Unset ¶

func (v *NullableDataSourceStatus) Unset()

type NullableDataSourceUpdate ¶

type NullableDataSourceUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceUpdate ¶

func NewNullableDataSourceUpdate(val *DataSourceUpdate) *NullableDataSourceUpdate

func (NullableDataSourceUpdate) Get ¶

func (NullableDataSourceUpdate) IsSet ¶

func (v NullableDataSourceUpdate) IsSet() bool

func (NullableDataSourceUpdate) MarshalJSON ¶

func (v NullableDataSourceUpdate) MarshalJSON() ([]byte, error)

func (*NullableDataSourceUpdate) Set ¶

func (*NullableDataSourceUpdate) UnmarshalJSON ¶

func (v *NullableDataSourceUpdate) UnmarshalJSON(src []byte) error

func (*NullableDataSourceUpdate) Unset ¶

func (v *NullableDataSourceUpdate) Unset()

type NullableDataSourceVM ¶

type NullableDataSourceVM struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourceVM ¶

func NewNullableDataSourceVM(val *DataSourceVM) *NullableDataSourceVM

func (NullableDataSourceVM) Get ¶

func (NullableDataSourceVM) IsSet ¶

func (v NullableDataSourceVM) IsSet() bool

func (NullableDataSourceVM) MarshalJSON ¶

func (v NullableDataSourceVM) MarshalJSON() ([]byte, error)

func (*NullableDataSourceVM) Set ¶

func (v *NullableDataSourceVM) Set(val *DataSourceVM)

func (*NullableDataSourceVM) UnmarshalJSON ¶

func (v *NullableDataSourceVM) UnmarshalJSON(src []byte) error

func (*NullableDataSourceVM) Unset ¶

func (v *NullableDataSourceVM) Unset()

type NullableDataSourcesVM ¶

type NullableDataSourcesVM struct {
	// contains filtered or unexported fields
}

func NewNullableDataSourcesVM ¶

func NewNullableDataSourcesVM(val *DataSourcesVM) *NullableDataSourcesVM

func (NullableDataSourcesVM) Get ¶

func (NullableDataSourcesVM) IsSet ¶

func (v NullableDataSourcesVM) IsSet() bool

func (NullableDataSourcesVM) MarshalJSON ¶

func (v NullableDataSourcesVM) MarshalJSON() ([]byte, error)

func (*NullableDataSourcesVM) Set ¶

func (v *NullableDataSourcesVM) Set(val *DataSourcesVM)

func (*NullableDataSourcesVM) UnmarshalJSON ¶

func (v *NullableDataSourcesVM) UnmarshalJSON(src []byte) error

func (*NullableDataSourcesVM) Unset ¶

func (v *NullableDataSourcesVM) Unset()

type NullableDefaultPermissionsVM ¶

type NullableDefaultPermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableDefaultPermissionsVM) Get ¶

func (NullableDefaultPermissionsVM) IsSet ¶

func (NullableDefaultPermissionsVM) MarshalJSON ¶

func (v NullableDefaultPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableDefaultPermissionsVM) Set ¶

func (*NullableDefaultPermissionsVM) UnmarshalJSON ¶

func (v *NullableDefaultPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableDefaultPermissionsVM) Unset ¶

func (v *NullableDefaultPermissionsVM) Unset()

type NullableDeleteApiKeyVM ¶

type NullableDeleteApiKeyVM struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteApiKeyVM ¶

func NewNullableDeleteApiKeyVM(val *DeleteApiKeyVM) *NullableDeleteApiKeyVM

func (NullableDeleteApiKeyVM) Get ¶

func (NullableDeleteApiKeyVM) IsSet ¶

func (v NullableDeleteApiKeyVM) IsSet() bool

func (NullableDeleteApiKeyVM) MarshalJSON ¶

func (v NullableDeleteApiKeyVM) MarshalJSON() ([]byte, error)

func (*NullableDeleteApiKeyVM) Set ¶

func (*NullableDeleteApiKeyVM) UnmarshalJSON ¶

func (v *NullableDeleteApiKeyVM) UnmarshalJSON(src []byte) error

func (*NullableDeleteApiKeyVM) Unset ¶

func (v *NullableDeleteApiKeyVM) Unset()

type NullableEmailTaskVM ¶

type NullableEmailTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableEmailTaskVM ¶

func NewNullableEmailTaskVM(val *EmailTaskVM) *NullableEmailTaskVM

func (NullableEmailTaskVM) Get ¶

func (NullableEmailTaskVM) IsSet ¶

func (v NullableEmailTaskVM) IsSet() bool

func (NullableEmailTaskVM) MarshalJSON ¶

func (v NullableEmailTaskVM) MarshalJSON() ([]byte, error)

func (*NullableEmailTaskVM) Set ¶

func (v *NullableEmailTaskVM) Set(val *EmailTaskVM)

func (*NullableEmailTaskVM) UnmarshalJSON ¶

func (v *NullableEmailTaskVM) UnmarshalJSON(src []byte) error

func (*NullableEmailTaskVM) Unset ¶

func (v *NullableEmailTaskVM) Unset()

type NullableEntityType ¶

type NullableEntityType struct {
	// contains filtered or unexported fields
}

func NewNullableEntityType ¶

func NewNullableEntityType(val *EntityType) *NullableEntityType

func (NullableEntityType) Get ¶

func (v NullableEntityType) Get() *EntityType

func (NullableEntityType) IsSet ¶

func (v NullableEntityType) IsSet() bool

func (NullableEntityType) MarshalJSON ¶

func (v NullableEntityType) MarshalJSON() ([]byte, error)

func (*NullableEntityType) Set ¶

func (v *NullableEntityType) Set(val *EntityType)

func (*NullableEntityType) UnmarshalJSON ¶

func (v *NullableEntityType) UnmarshalJSON(src []byte) error

func (*NullableEntityType) Unset ¶

func (v *NullableEntityType) Unset()

type NullableEntityVM ¶

type NullableEntityVM struct {
	// contains filtered or unexported fields
}

func NewNullableEntityVM ¶

func NewNullableEntityVM(val *EntityVM) *NullableEntityVM

func (NullableEntityVM) Get ¶

func (v NullableEntityVM) Get() *EntityVM

func (NullableEntityVM) IsSet ¶

func (v NullableEntityVM) IsSet() bool

func (NullableEntityVM) MarshalJSON ¶

func (v NullableEntityVM) MarshalJSON() ([]byte, error)

func (*NullableEntityVM) Set ¶

func (v *NullableEntityVM) Set(val *EntityVM)

func (*NullableEntityVM) UnmarshalJSON ¶

func (v *NullableEntityVM) UnmarshalJSON(src []byte) error

func (*NullableEntityVM) Unset ¶

func (v *NullableEntityVM) Unset()

type NullableExportCreateAdminVM ¶

type NullableExportCreateAdminVM struct {
	// contains filtered or unexported fields
}

func (NullableExportCreateAdminVM) Get ¶

func (NullableExportCreateAdminVM) IsSet ¶

func (NullableExportCreateAdminVM) MarshalJSON ¶

func (v NullableExportCreateAdminVM) MarshalJSON() ([]byte, error)

func (*NullableExportCreateAdminVM) Set ¶

func (*NullableExportCreateAdminVM) UnmarshalJSON ¶

func (v *NullableExportCreateAdminVM) UnmarshalJSON(src []byte) error

func (*NullableExportCreateAdminVM) Unset ¶

func (v *NullableExportCreateAdminVM) Unset()

type NullableExportCreateVM ¶

type NullableExportCreateVM struct {
	// contains filtered or unexported fields
}

func NewNullableExportCreateVM ¶

func NewNullableExportCreateVM(val *ExportCreateVM) *NullableExportCreateVM

func (NullableExportCreateVM) Get ¶

func (NullableExportCreateVM) IsSet ¶

func (v NullableExportCreateVM) IsSet() bool

func (NullableExportCreateVM) MarshalJSON ¶

func (v NullableExportCreateVM) MarshalJSON() ([]byte, error)

func (*NullableExportCreateVM) Set ¶

func (*NullableExportCreateVM) UnmarshalJSON ¶

func (v *NullableExportCreateVM) UnmarshalJSON(src []byte) error

func (*NullableExportCreateVM) Unset ¶

func (v *NullableExportCreateVM) Unset()

type NullableExportFolderCreateVM ¶

type NullableExportFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableExportFolderCreateVM) Get ¶

func (NullableExportFolderCreateVM) IsSet ¶

func (NullableExportFolderCreateVM) MarshalJSON ¶

func (v NullableExportFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableExportFolderCreateVM) Set ¶

func (*NullableExportFolderCreateVM) UnmarshalJSON ¶

func (v *NullableExportFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableExportFolderCreateVM) Unset ¶

func (v *NullableExportFolderCreateVM) Unset()

type NullableExportFormat ¶

type NullableExportFormat struct {
	// contains filtered or unexported fields
}

func NewNullableExportFormat ¶

func NewNullableExportFormat(val *ExportFormat) *NullableExportFormat

func (NullableExportFormat) Get ¶

func (NullableExportFormat) IsSet ¶

func (v NullableExportFormat) IsSet() bool

func (NullableExportFormat) MarshalJSON ¶

func (v NullableExportFormat) MarshalJSON() ([]byte, error)

func (*NullableExportFormat) Set ¶

func (v *NullableExportFormat) Set(val *ExportFormat)

func (*NullableExportFormat) UnmarshalJSON ¶

func (v *NullableExportFormat) UnmarshalJSON(src []byte) error

func (*NullableExportFormat) Unset ¶

func (v *NullableExportFormat) Unset()

type NullableExportReportTaskVM ¶

type NullableExportReportTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableExportReportTaskVM ¶

func NewNullableExportReportTaskVM(val *ExportReportTaskVM) *NullableExportReportTaskVM

func (NullableExportReportTaskVM) Get ¶

func (NullableExportReportTaskVM) IsSet ¶

func (v NullableExportReportTaskVM) IsSet() bool

func (NullableExportReportTaskVM) MarshalJSON ¶

func (v NullableExportReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableExportReportTaskVM) Set ¶

func (*NullableExportReportTaskVM) UnmarshalJSON ¶

func (v *NullableExportReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableExportReportTaskVM) Unset ¶

func (v *NullableExportReportTaskVM) Unset()

type NullableExportReportVM ¶

type NullableExportReportVM struct {
	// contains filtered or unexported fields
}

func NewNullableExportReportVM ¶

func NewNullableExportReportVM(val *ExportReportVM) *NullableExportReportVM

func (NullableExportReportVM) Get ¶

func (NullableExportReportVM) IsSet ¶

func (v NullableExportReportVM) IsSet() bool

func (NullableExportReportVM) MarshalJSON ¶

func (v NullableExportReportVM) MarshalJSON() ([]byte, error)

func (*NullableExportReportVM) Set ¶

func (*NullableExportReportVM) UnmarshalJSON ¶

func (v *NullableExportReportVM) UnmarshalJSON(src []byte) error

func (*NullableExportReportVM) Unset ¶

func (v *NullableExportReportVM) Unset()

type NullableExportTemplateTaskVM ¶

type NullableExportTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableExportTemplateTaskVM) Get ¶

func (NullableExportTemplateTaskVM) IsSet ¶

func (NullableExportTemplateTaskVM) MarshalJSON ¶

func (v NullableExportTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableExportTemplateTaskVM) Set ¶

func (*NullableExportTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableExportTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableExportTemplateTaskVM) Unset ¶

func (v *NullableExportTemplateTaskVM) Unset()

type NullableExportTemplateVM ¶

type NullableExportTemplateVM struct {
	// contains filtered or unexported fields
}

func NewNullableExportTemplateVM ¶

func NewNullableExportTemplateVM(val *ExportTemplateVM) *NullableExportTemplateVM

func (NullableExportTemplateVM) Get ¶

func (NullableExportTemplateVM) IsSet ¶

func (v NullableExportTemplateVM) IsSet() bool

func (NullableExportTemplateVM) MarshalJSON ¶

func (v NullableExportTemplateVM) MarshalJSON() ([]byte, error)

func (*NullableExportTemplateVM) Set ¶

func (*NullableExportTemplateVM) UnmarshalJSON ¶

func (v *NullableExportTemplateVM) UnmarshalJSON(src []byte) error

func (*NullableExportTemplateVM) Unset ¶

func (v *NullableExportTemplateVM) Unset()

type NullableExportVM ¶

type NullableExportVM struct {
	// contains filtered or unexported fields
}

func NewNullableExportVM ¶

func NewNullableExportVM(val *ExportVM) *NullableExportVM

func (NullableExportVM) Get ¶

func (v NullableExportVM) Get() *ExportVM

func (NullableExportVM) IsSet ¶

func (v NullableExportVM) IsSet() bool

func (NullableExportVM) MarshalJSON ¶

func (v NullableExportVM) MarshalJSON() ([]byte, error)

func (*NullableExportVM) Set ¶

func (v *NullableExportVM) Set(val *ExportVM)

func (*NullableExportVM) UnmarshalJSON ¶

func (v *NullableExportVM) UnmarshalJSON(src []byte) error

func (*NullableExportVM) Unset ¶

func (v *NullableExportVM) Unset()

type NullableExportVMFilesVMBase ¶

type NullableExportVMFilesVMBase struct {
	// contains filtered or unexported fields
}

func (NullableExportVMFilesVMBase) Get ¶

func (NullableExportVMFilesVMBase) IsSet ¶

func (NullableExportVMFilesVMBase) MarshalJSON ¶

func (v NullableExportVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*NullableExportVMFilesVMBase) Set ¶

func (*NullableExportVMFilesVMBase) UnmarshalJSON ¶

func (v *NullableExportVMFilesVMBase) UnmarshalJSON(src []byte) error

func (*NullableExportVMFilesVMBase) Unset ¶

func (v *NullableExportVMFilesVMBase) Unset()

type NullableExportsVM ¶

type NullableExportsVM struct {
	// contains filtered or unexported fields
}

func NewNullableExportsVM ¶

func NewNullableExportsVM(val *ExportsVM) *NullableExportsVM

func (NullableExportsVM) Get ¶

func (v NullableExportsVM) Get() *ExportsVM

func (NullableExportsVM) IsSet ¶

func (v NullableExportsVM) IsSet() bool

func (NullableExportsVM) MarshalJSON ¶

func (v NullableExportsVM) MarshalJSON() ([]byte, error)

func (*NullableExportsVM) Set ¶

func (v *NullableExportsVM) Set(val *ExportsVM)

func (*NullableExportsVM) UnmarshalJSON ¶

func (v *NullableExportsVM) UnmarshalJSON(src []byte) error

func (*NullableExportsVM) Unset ¶

func (v *NullableExportsVM) Unset()

type NullableFTPUploadTaskVM ¶

type NullableFTPUploadTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableFTPUploadTaskVM ¶

func NewNullableFTPUploadTaskVM(val *FTPUploadTaskVM) *NullableFTPUploadTaskVM

func (NullableFTPUploadTaskVM) Get ¶

func (NullableFTPUploadTaskVM) IsSet ¶

func (v NullableFTPUploadTaskVM) IsSet() bool

func (NullableFTPUploadTaskVM) MarshalJSON ¶

func (v NullableFTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*NullableFTPUploadTaskVM) Set ¶

func (*NullableFTPUploadTaskVM) UnmarshalJSON ¶

func (v *NullableFTPUploadTaskVM) UnmarshalJSON(src []byte) error

func (*NullableFTPUploadTaskVM) Unset ¶

func (v *NullableFTPUploadTaskVM) Unset()

type NullableFetchTaskVM ¶

type NullableFetchTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableFetchTaskVM ¶

func NewNullableFetchTaskVM(val *FetchTaskVM) *NullableFetchTaskVM

func (NullableFetchTaskVM) Get ¶

func (NullableFetchTaskVM) IsSet ¶

func (v NullableFetchTaskVM) IsSet() bool

func (NullableFetchTaskVM) MarshalJSON ¶

func (v NullableFetchTaskVM) MarshalJSON() ([]byte, error)

func (*NullableFetchTaskVM) Set ¶

func (v *NullableFetchTaskVM) Set(val *FetchTaskVM)

func (*NullableFetchTaskVM) UnmarshalJSON ¶

func (v *NullableFetchTaskVM) UnmarshalJSON(src []byte) error

func (*NullableFetchTaskVM) Unset ¶

func (v *NullableFetchTaskVM) Unset()

type NullableFileAdministrate ¶

type NullableFileAdministrate struct {
	// contains filtered or unexported fields
}

func NewNullableFileAdministrate ¶

func NewNullableFileAdministrate(val *FileAdministrate) *NullableFileAdministrate

func (NullableFileAdministrate) Get ¶

func (NullableFileAdministrate) IsSet ¶

func (v NullableFileAdministrate) IsSet() bool

func (NullableFileAdministrate) MarshalJSON ¶

func (v NullableFileAdministrate) MarshalJSON() ([]byte, error)

func (*NullableFileAdministrate) Set ¶

func (*NullableFileAdministrate) UnmarshalJSON ¶

func (v *NullableFileAdministrate) UnmarshalJSON(src []byte) error

func (*NullableFileAdministrate) Unset ¶

func (v *NullableFileAdministrate) Unset()

type NullableFileCreate ¶

type NullableFileCreate struct {
	// contains filtered or unexported fields
}

func NewNullableFileCreate ¶

func NewNullableFileCreate(val *FileCreate) *NullableFileCreate

func (NullableFileCreate) Get ¶

func (v NullableFileCreate) Get() *FileCreate

func (NullableFileCreate) IsSet ¶

func (v NullableFileCreate) IsSet() bool

func (NullableFileCreate) MarshalJSON ¶

func (v NullableFileCreate) MarshalJSON() ([]byte, error)

func (*NullableFileCreate) Set ¶

func (v *NullableFileCreate) Set(val *FileCreate)

func (*NullableFileCreate) UnmarshalJSON ¶

func (v *NullableFileCreate) UnmarshalJSON(src []byte) error

func (*NullableFileCreate) Unset ¶

func (v *NullableFileCreate) Unset()

type NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission ¶

type NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission struct {
	// contains filtered or unexported fields
}

func (NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) Get ¶

func (NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) IsSet ¶

func (NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) MarshalJSON ¶

func (*NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) Set ¶

func (*NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) UnmarshalJSON ¶

func (*NullableFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermission) Unset ¶

type NullableFileCreateVM ¶

type NullableFileCreateVM struct {
	// contains filtered or unexported fields
}

func NewNullableFileCreateVM ¶

func NewNullableFileCreateVM(val *FileCreateVM) *NullableFileCreateVM

func (NullableFileCreateVM) Get ¶

func (NullableFileCreateVM) IsSet ¶

func (v NullableFileCreateVM) IsSet() bool

func (NullableFileCreateVM) MarshalJSON ¶

func (v NullableFileCreateVM) MarshalJSON() ([]byte, error)

func (*NullableFileCreateVM) Set ¶

func (v *NullableFileCreateVM) Set(val *FileCreateVM)

func (*NullableFileCreateVM) UnmarshalJSON ¶

func (v *NullableFileCreateVM) UnmarshalJSON(src []byte) error

func (*NullableFileCreateVM) Unset ¶

func (v *NullableFileCreateVM) Unset()

type NullableFileDelete ¶

type NullableFileDelete struct {
	// contains filtered or unexported fields
}

func NewNullableFileDelete ¶

func NewNullableFileDelete(val *FileDelete) *NullableFileDelete

func (NullableFileDelete) Get ¶

func (v NullableFileDelete) Get() *FileDelete

func (NullableFileDelete) IsSet ¶

func (v NullableFileDelete) IsSet() bool

func (NullableFileDelete) MarshalJSON ¶

func (v NullableFileDelete) MarshalJSON() ([]byte, error)

func (*NullableFileDelete) Set ¶

func (v *NullableFileDelete) Set(val *FileDelete)

func (*NullableFileDelete) UnmarshalJSON ¶

func (v *NullableFileDelete) UnmarshalJSON(src []byte) error

func (*NullableFileDelete) Unset ¶

func (v *NullableFileDelete) Unset()

type NullableFileExecute ¶

type NullableFileExecute struct {
	// contains filtered or unexported fields
}

func NewNullableFileExecute ¶

func NewNullableFileExecute(val *FileExecute) *NullableFileExecute

func (NullableFileExecute) Get ¶

func (NullableFileExecute) IsSet ¶

func (v NullableFileExecute) IsSet() bool

func (NullableFileExecute) MarshalJSON ¶

func (v NullableFileExecute) MarshalJSON() ([]byte, error)

func (*NullableFileExecute) Set ¶

func (v *NullableFileExecute) Set(val *FileExecute)

func (*NullableFileExecute) UnmarshalJSON ¶

func (v *NullableFileExecute) UnmarshalJSON(src []byte) error

func (*NullableFileExecute) Unset ¶

func (v *NullableFileExecute) Unset()

type NullableFileGet ¶

type NullableFileGet struct {
	// contains filtered or unexported fields
}

func NewNullableFileGet ¶

func NewNullableFileGet(val *FileGet) *NullableFileGet

func (NullableFileGet) Get ¶

func (v NullableFileGet) Get() *FileGet

func (NullableFileGet) IsSet ¶

func (v NullableFileGet) IsSet() bool

func (NullableFileGet) MarshalJSON ¶

func (v NullableFileGet) MarshalJSON() ([]byte, error)

func (*NullableFileGet) Set ¶

func (v *NullableFileGet) Set(val *FileGet)

func (*NullableFileGet) UnmarshalJSON ¶

func (v *NullableFileGet) UnmarshalJSON(src []byte) error

func (*NullableFileGet) Unset ¶

func (v *NullableFileGet) Unset()

type NullableFileIconVM ¶

type NullableFileIconVM struct {
	// contains filtered or unexported fields
}

func NewNullableFileIconVM ¶

func NewNullableFileIconVM(val *FileIconVM) *NullableFileIconVM

func (NullableFileIconVM) Get ¶

func (v NullableFileIconVM) Get() *FileIconVM

func (NullableFileIconVM) IsSet ¶

func (v NullableFileIconVM) IsSet() bool

func (NullableFileIconVM) MarshalJSON ¶

func (v NullableFileIconVM) MarshalJSON() ([]byte, error)

func (*NullableFileIconVM) Set ¶

func (v *NullableFileIconVM) Set(val *FileIconVM)

func (*NullableFileIconVM) UnmarshalJSON ¶

func (v *NullableFileIconVM) UnmarshalJSON(src []byte) error

func (*NullableFileIconVM) Unset ¶

func (v *NullableFileIconVM) Unset()

type NullableFileKind ¶

type NullableFileKind struct {
	// contains filtered or unexported fields
}

func NewNullableFileKind ¶

func NewNullableFileKind(val *FileKind) *NullableFileKind

func (NullableFileKind) Get ¶

func (v NullableFileKind) Get() *FileKind

func (NullableFileKind) IsSet ¶

func (v NullableFileKind) IsSet() bool

func (NullableFileKind) MarshalJSON ¶

func (v NullableFileKind) MarshalJSON() ([]byte, error)

func (*NullableFileKind) Set ¶

func (v *NullableFileKind) Set(val *FileKind)

func (*NullableFileKind) UnmarshalJSON ¶

func (v *NullableFileKind) UnmarshalJSON(src []byte) error

func (*NullableFileKind) Unset ¶

func (v *NullableFileKind) Unset()

type NullableFilePermission ¶

type NullableFilePermission struct {
	// contains filtered or unexported fields
}

func NewNullableFilePermission ¶

func NewNullableFilePermission(val *FilePermission) *NullableFilePermission

func (NullableFilePermission) Get ¶

func (NullableFilePermission) IsSet ¶

func (v NullableFilePermission) IsSet() bool

func (NullableFilePermission) MarshalJSON ¶

func (v NullableFilePermission) MarshalJSON() ([]byte, error)

func (*NullableFilePermission) Set ¶

func (*NullableFilePermission) UnmarshalJSON ¶

func (v *NullableFilePermission) UnmarshalJSON(src []byte) error

func (*NullableFilePermission) Unset ¶

func (v *NullableFilePermission) Unset()

type NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions ¶

type NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions struct {
	// contains filtered or unexported fields
}

func (NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) IsSet ¶

func (NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) MarshalJSON ¶

func (*NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) Set ¶

func (*NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) UnmarshalJSON ¶

func (*NullableFilePermissionFileCreateFileGetFileUpdateFileDeleteFileExecuteFileAdministratePermissions) Unset ¶

type NullableFilePermissions ¶

type NullableFilePermissions struct {
	// contains filtered or unexported fields
}

func NewNullableFilePermissions ¶

func NewNullableFilePermissions(val *FilePermissions) *NullableFilePermissions

func (NullableFilePermissions) Get ¶

func (NullableFilePermissions) IsSet ¶

func (v NullableFilePermissions) IsSet() bool

func (NullableFilePermissions) MarshalJSON ¶

func (v NullableFilePermissions) MarshalJSON() ([]byte, error)

func (*NullableFilePermissions) Set ¶

func (*NullableFilePermissions) UnmarshalJSON ¶

func (v *NullableFilePermissions) UnmarshalJSON(src []byte) error

func (*NullableFilePermissions) Unset ¶

func (v *NullableFilePermissions) Unset()

type NullableFilePermissionsVM ¶

type NullableFilePermissionsVM struct {
	// contains filtered or unexported fields
}

func NewNullableFilePermissionsVM ¶

func NewNullableFilePermissionsVM(val *FilePermissionsVM) *NullableFilePermissionsVM

func (NullableFilePermissionsVM) Get ¶

func (NullableFilePermissionsVM) IsSet ¶

func (v NullableFilePermissionsVM) IsSet() bool

func (NullableFilePermissionsVM) MarshalJSON ¶

func (v NullableFilePermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableFilePermissionsVM) Set ¶

func (*NullableFilePermissionsVM) UnmarshalJSON ¶

func (v *NullableFilePermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableFilePermissionsVM) Unset ¶

func (v *NullableFilePermissionsVM) Unset()

type NullableFileRenameVM ¶

type NullableFileRenameVM struct {
	// contains filtered or unexported fields
}

func NewNullableFileRenameVM ¶

func NewNullableFileRenameVM(val *FileRenameVM) *NullableFileRenameVM

func (NullableFileRenameVM) Get ¶

func (NullableFileRenameVM) IsSet ¶

func (v NullableFileRenameVM) IsSet() bool

func (NullableFileRenameVM) MarshalJSON ¶

func (v NullableFileRenameVM) MarshalJSON() ([]byte, error)

func (*NullableFileRenameVM) Set ¶

func (v *NullableFileRenameVM) Set(val *FileRenameVM)

func (*NullableFileRenameVM) UnmarshalJSON ¶

func (v *NullableFileRenameVM) UnmarshalJSON(src []byte) error

func (*NullableFileRenameVM) Unset ¶

func (v *NullableFileRenameVM) Unset()

type NullableFileSorting ¶

type NullableFileSorting struct {
	// contains filtered or unexported fields
}

func NewNullableFileSorting ¶

func NewNullableFileSorting(val *FileSorting) *NullableFileSorting

func (NullableFileSorting) Get ¶

func (NullableFileSorting) IsSet ¶

func (v NullableFileSorting) IsSet() bool

func (NullableFileSorting) MarshalJSON ¶

func (v NullableFileSorting) MarshalJSON() ([]byte, error)

func (*NullableFileSorting) Set ¶

func (v *NullableFileSorting) Set(val *FileSorting)

func (*NullableFileSorting) UnmarshalJSON ¶

func (v *NullableFileSorting) UnmarshalJSON(src []byte) error

func (*NullableFileSorting) Unset ¶

func (v *NullableFileSorting) Unset()

type NullableFileStatus ¶

type NullableFileStatus struct {
	// contains filtered or unexported fields
}

func NewNullableFileStatus ¶

func NewNullableFileStatus(val *FileStatus) *NullableFileStatus

func (NullableFileStatus) Get ¶

func (v NullableFileStatus) Get() *FileStatus

func (NullableFileStatus) IsSet ¶

func (v NullableFileStatus) IsSet() bool

func (NullableFileStatus) MarshalJSON ¶

func (v NullableFileStatus) MarshalJSON() ([]byte, error)

func (*NullableFileStatus) Set ¶

func (v *NullableFileStatus) Set(val *FileStatus)

func (*NullableFileStatus) UnmarshalJSON ¶

func (v *NullableFileStatus) UnmarshalJSON(src []byte) error

func (*NullableFileStatus) Unset ¶

func (v *NullableFileStatus) Unset()

type NullableFileStatusReason ¶

type NullableFileStatusReason struct {
	// contains filtered or unexported fields
}

func NewNullableFileStatusReason ¶

func NewNullableFileStatusReason(val *FileStatusReason) *NullableFileStatusReason

func (NullableFileStatusReason) Get ¶

func (NullableFileStatusReason) IsSet ¶

func (v NullableFileStatusReason) IsSet() bool

func (NullableFileStatusReason) MarshalJSON ¶

func (v NullableFileStatusReason) MarshalJSON() ([]byte, error)

func (*NullableFileStatusReason) Set ¶

func (*NullableFileStatusReason) UnmarshalJSON ¶

func (v *NullableFileStatusReason) UnmarshalJSON(src []byte) error

func (*NullableFileStatusReason) Unset ¶

func (v *NullableFileStatusReason) Unset()

type NullableFileTagsUpdateVM ¶

type NullableFileTagsUpdateVM struct {
	// contains filtered or unexported fields
}

func NewNullableFileTagsUpdateVM ¶

func NewNullableFileTagsUpdateVM(val *FileTagsUpdateVM) *NullableFileTagsUpdateVM

func (NullableFileTagsUpdateVM) Get ¶

func (NullableFileTagsUpdateVM) IsSet ¶

func (v NullableFileTagsUpdateVM) IsSet() bool

func (NullableFileTagsUpdateVM) MarshalJSON ¶

func (v NullableFileTagsUpdateVM) MarshalJSON() ([]byte, error)

func (*NullableFileTagsUpdateVM) Set ¶

func (*NullableFileTagsUpdateVM) UnmarshalJSON ¶

func (v *NullableFileTagsUpdateVM) UnmarshalJSON(src []byte) error

func (*NullableFileTagsUpdateVM) Unset ¶

func (v *NullableFileTagsUpdateVM) Unset()

type NullableFileType ¶

type NullableFileType struct {
	// contains filtered or unexported fields
}

func NewNullableFileType ¶

func NewNullableFileType(val *FileType) *NullableFileType

func (NullableFileType) Get ¶

func (v NullableFileType) Get() *FileType

func (NullableFileType) IsSet ¶

func (v NullableFileType) IsSet() bool

func (NullableFileType) MarshalJSON ¶

func (v NullableFileType) MarshalJSON() ([]byte, error)

func (*NullableFileType) Set ¶

func (v *NullableFileType) Set(val *FileType)

func (*NullableFileType) UnmarshalJSON ¶

func (v *NullableFileType) UnmarshalJSON(src []byte) error

func (*NullableFileType) Unset ¶

func (v *NullableFileType) Unset()

type NullableFileUpdate ¶

type NullableFileUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableFileUpdate ¶

func NewNullableFileUpdate(val *FileUpdate) *NullableFileUpdate

func (NullableFileUpdate) Get ¶

func (v NullableFileUpdate) Get() *FileUpdate

func (NullableFileUpdate) IsSet ¶

func (v NullableFileUpdate) IsSet() bool

func (NullableFileUpdate) MarshalJSON ¶

func (v NullableFileUpdate) MarshalJSON() ([]byte, error)

func (*NullableFileUpdate) Set ¶

func (v *NullableFileUpdate) Set(val *FileUpdate)

func (*NullableFileUpdate) UnmarshalJSON ¶

func (v *NullableFileUpdate) UnmarshalJSON(src []byte) error

func (*NullableFileUpdate) Unset ¶

func (v *NullableFileUpdate) Unset()

type NullableFileVM ¶

type NullableFileVM struct {
	// contains filtered or unexported fields
}

func NewNullableFileVM ¶

func NewNullableFileVM(val *FileVM) *NullableFileVM

func (NullableFileVM) Get ¶

func (v NullableFileVM) Get() *FileVM

func (NullableFileVM) IsSet ¶

func (v NullableFileVM) IsSet() bool

func (NullableFileVM) MarshalJSON ¶

func (v NullableFileVM) MarshalJSON() ([]byte, error)

func (*NullableFileVM) Set ¶

func (v *NullableFileVM) Set(val *FileVM)

func (*NullableFileVM) UnmarshalJSON ¶

func (v *NullableFileVM) UnmarshalJSON(src []byte) error

func (*NullableFileVM) Unset ¶

func (v *NullableFileVM) Unset()

type NullableFileVMFilesVMBase ¶

type NullableFileVMFilesVMBase struct {
	// contains filtered or unexported fields
}

func NewNullableFileVMFilesVMBase ¶

func NewNullableFileVMFilesVMBase(val *FileVMFilesVMBase) *NullableFileVMFilesVMBase

func (NullableFileVMFilesVMBase) Get ¶

func (NullableFileVMFilesVMBase) IsSet ¶

func (v NullableFileVMFilesVMBase) IsSet() bool

func (NullableFileVMFilesVMBase) MarshalJSON ¶

func (v NullableFileVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*NullableFileVMFilesVMBase) Set ¶

func (*NullableFileVMFilesVMBase) UnmarshalJSON ¶

func (v *NullableFileVMFilesVMBase) UnmarshalJSON(src []byte) error

func (*NullableFileVMFilesVMBase) Unset ¶

func (v *NullableFileVMFilesVMBase) Unset()

type NullableFilesVM ¶

type NullableFilesVM struct {
	// contains filtered or unexported fields
}

func NewNullableFilesVM ¶

func NewNullableFilesVM(val *FilesVM) *NullableFilesVM

func (NullableFilesVM) Get ¶

func (v NullableFilesVM) Get() *FilesVM

func (NullableFilesVM) IsSet ¶

func (v NullableFilesVM) IsSet() bool

func (NullableFilesVM) MarshalJSON ¶

func (v NullableFilesVM) MarshalJSON() ([]byte, error)

func (*NullableFilesVM) Set ¶

func (v *NullableFilesVM) Set(val *FilesVM)

func (*NullableFilesVM) UnmarshalJSON ¶

func (v *NullableFilesVM) UnmarshalJSON(src []byte) error

func (*NullableFilesVM) Unset ¶

func (v *NullableFilesVM) 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 NullableFolderCreateVM ¶

type NullableFolderCreateVM struct {
	// contains filtered or unexported fields
}

func NewNullableFolderCreateVM ¶

func NewNullableFolderCreateVM(val *FolderCreateVM) *NullableFolderCreateVM

func (NullableFolderCreateVM) Get ¶

func (NullableFolderCreateVM) IsSet ¶

func (v NullableFolderCreateVM) IsSet() bool

func (NullableFolderCreateVM) MarshalJSON ¶

func (v NullableFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableFolderCreateVM) Set ¶

func (*NullableFolderCreateVM) UnmarshalJSON ¶

func (v *NullableFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableFolderCreateVM) Unset ¶

func (v *NullableFolderCreateVM) Unset()

type NullableFolderIconVM ¶

type NullableFolderIconVM struct {
	// contains filtered or unexported fields
}

func NewNullableFolderIconVM ¶

func NewNullableFolderIconVM(val *FolderIconVM) *NullableFolderIconVM

func (NullableFolderIconVM) Get ¶

func (NullableFolderIconVM) IsSet ¶

func (v NullableFolderIconVM) IsSet() bool

func (NullableFolderIconVM) MarshalJSON ¶

func (v NullableFolderIconVM) MarshalJSON() ([]byte, error)

func (*NullableFolderIconVM) Set ¶

func (v *NullableFolderIconVM) Set(val *FolderIconVM)

func (*NullableFolderIconVM) UnmarshalJSON ¶

func (v *NullableFolderIconVM) UnmarshalJSON(src []byte) error

func (*NullableFolderIconVM) Unset ¶

func (v *NullableFolderIconVM) Unset()

type NullableFolderRenameVM ¶

type NullableFolderRenameVM struct {
	// contains filtered or unexported fields
}

func NewNullableFolderRenameVM ¶

func NewNullableFolderRenameVM(val *FolderRenameVM) *NullableFolderRenameVM

func (NullableFolderRenameVM) Get ¶

func (NullableFolderRenameVM) IsSet ¶

func (v NullableFolderRenameVM) IsSet() bool

func (NullableFolderRenameVM) MarshalJSON ¶

func (v NullableFolderRenameVM) MarshalJSON() ([]byte, error)

func (*NullableFolderRenameVM) Set ¶

func (*NullableFolderRenameVM) UnmarshalJSON ¶

func (v *NullableFolderRenameVM) UnmarshalJSON(src []byte) error

func (*NullableFolderRenameVM) Unset ¶

func (v *NullableFolderRenameVM) Unset()

type NullableFolderSizeVM ¶

type NullableFolderSizeVM struct {
	// contains filtered or unexported fields
}

func NewNullableFolderSizeVM ¶

func NewNullableFolderSizeVM(val *FolderSizeVM) *NullableFolderSizeVM

func (NullableFolderSizeVM) Get ¶

func (NullableFolderSizeVM) IsSet ¶

func (v NullableFolderSizeVM) IsSet() bool

func (NullableFolderSizeVM) MarshalJSON ¶

func (v NullableFolderSizeVM) MarshalJSON() ([]byte, error)

func (*NullableFolderSizeVM) Set ¶

func (v *NullableFolderSizeVM) Set(val *FolderSizeVM)

func (*NullableFolderSizeVM) UnmarshalJSON ¶

func (v *NullableFolderSizeVM) UnmarshalJSON(src []byte) error

func (*NullableFolderSizeVM) Unset ¶

func (v *NullableFolderSizeVM) Unset()

type NullableFolderTagsUpdateVM ¶

type NullableFolderTagsUpdateVM struct {
	// contains filtered or unexported fields
}

func NewNullableFolderTagsUpdateVM ¶

func NewNullableFolderTagsUpdateVM(val *FolderTagsUpdateVM) *NullableFolderTagsUpdateVM

func (NullableFolderTagsUpdateVM) Get ¶

func (NullableFolderTagsUpdateVM) IsSet ¶

func (v NullableFolderTagsUpdateVM) IsSet() bool

func (NullableFolderTagsUpdateVM) MarshalJSON ¶

func (v NullableFolderTagsUpdateVM) MarshalJSON() ([]byte, error)

func (*NullableFolderTagsUpdateVM) Set ¶

func (*NullableFolderTagsUpdateVM) UnmarshalJSON ¶

func (v *NullableFolderTagsUpdateVM) UnmarshalJSON(src []byte) error

func (*NullableFolderTagsUpdateVM) Unset ¶

func (v *NullableFolderTagsUpdateVM) Unset()

type NullableFrontendApp ¶

type NullableFrontendApp struct {
	// contains filtered or unexported fields
}

func NewNullableFrontendApp ¶

func NewNullableFrontendApp(val *FrontendApp) *NullableFrontendApp

func (NullableFrontendApp) Get ¶

func (NullableFrontendApp) IsSet ¶

func (v NullableFrontendApp) IsSet() bool

func (NullableFrontendApp) MarshalJSON ¶

func (v NullableFrontendApp) MarshalJSON() ([]byte, error)

func (*NullableFrontendApp) Set ¶

func (v *NullableFrontendApp) Set(val *FrontendApp)

func (*NullableFrontendApp) UnmarshalJSON ¶

func (v *NullableFrontendApp) UnmarshalJSON(src []byte) error

func (*NullableFrontendApp) Unset ¶

func (v *NullableFrontendApp) Unset()

type NullableGroupAdministrate ¶

type NullableGroupAdministrate struct {
	// contains filtered or unexported fields
}

func NewNullableGroupAdministrate ¶

func NewNullableGroupAdministrate(val *GroupAdministrate) *NullableGroupAdministrate

func (NullableGroupAdministrate) Get ¶

func (NullableGroupAdministrate) IsSet ¶

func (v NullableGroupAdministrate) IsSet() bool

func (NullableGroupAdministrate) MarshalJSON ¶

func (v NullableGroupAdministrate) MarshalJSON() ([]byte, error)

func (*NullableGroupAdministrate) Set ¶

func (*NullableGroupAdministrate) UnmarshalJSON ¶

func (v *NullableGroupAdministrate) UnmarshalJSON(src []byte) error

func (*NullableGroupAdministrate) Unset ¶

func (v *NullableGroupAdministrate) Unset()

type NullableGroupCreate ¶

type NullableGroupCreate struct {
	// contains filtered or unexported fields
}

func NewNullableGroupCreate ¶

func NewNullableGroupCreate(val *GroupCreate) *NullableGroupCreate

func (NullableGroupCreate) Get ¶

func (NullableGroupCreate) IsSet ¶

func (v NullableGroupCreate) IsSet() bool

func (NullableGroupCreate) MarshalJSON ¶

func (v NullableGroupCreate) MarshalJSON() ([]byte, error)

func (*NullableGroupCreate) Set ¶

func (v *NullableGroupCreate) Set(val *GroupCreate)

func (*NullableGroupCreate) UnmarshalJSON ¶

func (v *NullableGroupCreate) UnmarshalJSON(src []byte) error

func (*NullableGroupCreate) Unset ¶

func (v *NullableGroupCreate) Unset()

type NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission ¶

type NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission struct {
	// contains filtered or unexported fields
}

func (NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) Get ¶

func (NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) IsSet ¶

func (NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) MarshalJSON ¶

func (*NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) Set ¶

func (*NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) UnmarshalJSON ¶

func (*NullableGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermission) Unset ¶

type NullableGroupDelete ¶

type NullableGroupDelete struct {
	// contains filtered or unexported fields
}

func NewNullableGroupDelete ¶

func NewNullableGroupDelete(val *GroupDelete) *NullableGroupDelete

func (NullableGroupDelete) Get ¶

func (NullableGroupDelete) IsSet ¶

func (v NullableGroupDelete) IsSet() bool

func (NullableGroupDelete) MarshalJSON ¶

func (v NullableGroupDelete) MarshalJSON() ([]byte, error)

func (*NullableGroupDelete) Set ¶

func (v *NullableGroupDelete) Set(val *GroupDelete)

func (*NullableGroupDelete) UnmarshalJSON ¶

func (v *NullableGroupDelete) UnmarshalJSON(src []byte) error

func (*NullableGroupDelete) Unset ¶

func (v *NullableGroupDelete) Unset()

type NullableGroupExecute ¶

type NullableGroupExecute struct {
	// contains filtered or unexported fields
}

func NewNullableGroupExecute ¶

func NewNullableGroupExecute(val *GroupExecute) *NullableGroupExecute

func (NullableGroupExecute) Get ¶

func (NullableGroupExecute) IsSet ¶

func (v NullableGroupExecute) IsSet() bool

func (NullableGroupExecute) MarshalJSON ¶

func (v NullableGroupExecute) MarshalJSON() ([]byte, error)

func (*NullableGroupExecute) Set ¶

func (v *NullableGroupExecute) Set(val *GroupExecute)

func (*NullableGroupExecute) UnmarshalJSON ¶

func (v *NullableGroupExecute) UnmarshalJSON(src []byte) error

func (*NullableGroupExecute) Unset ¶

func (v *NullableGroupExecute) Unset()

type NullableGroupGet ¶

type NullableGroupGet struct {
	// contains filtered or unexported fields
}

func NewNullableGroupGet ¶

func NewNullableGroupGet(val *GroupGet) *NullableGroupGet

func (NullableGroupGet) Get ¶

func (v NullableGroupGet) Get() *GroupGet

func (NullableGroupGet) IsSet ¶

func (v NullableGroupGet) IsSet() bool

func (NullableGroupGet) MarshalJSON ¶

func (v NullableGroupGet) MarshalJSON() ([]byte, error)

func (*NullableGroupGet) Set ¶

func (v *NullableGroupGet) Set(val *GroupGet)

func (*NullableGroupGet) UnmarshalJSON ¶

func (v *NullableGroupGet) UnmarshalJSON(src []byte) error

func (*NullableGroupGet) Unset ¶

func (v *NullableGroupGet) Unset()

type NullableGroupPermission ¶

type NullableGroupPermission struct {
	// contains filtered or unexported fields
}

func NewNullableGroupPermission ¶

func NewNullableGroupPermission(val *GroupPermission) *NullableGroupPermission

func (NullableGroupPermission) Get ¶

func (NullableGroupPermission) IsSet ¶

func (v NullableGroupPermission) IsSet() bool

func (NullableGroupPermission) MarshalJSON ¶

func (v NullableGroupPermission) MarshalJSON() ([]byte, error)

func (*NullableGroupPermission) Set ¶

func (*NullableGroupPermission) UnmarshalJSON ¶

func (v *NullableGroupPermission) UnmarshalJSON(src []byte) error

func (*NullableGroupPermission) Unset ¶

func (v *NullableGroupPermission) Unset()

type NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions ¶

type NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions struct {
	// contains filtered or unexported fields
}

func (NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) IsSet ¶

func (NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) MarshalJSON ¶

func (*NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) Set ¶

func (*NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) UnmarshalJSON ¶

func (*NullableGroupPermissionGroupCreateGroupGetGroupUpdateGroupDeleteGroupExecuteGroupAdministratePermissions) Unset ¶

type NullableGroupPermissions ¶

type NullableGroupPermissions struct {
	// contains filtered or unexported fields
}

func NewNullableGroupPermissions ¶

func NewNullableGroupPermissions(val *GroupPermissions) *NullableGroupPermissions

func (NullableGroupPermissions) Get ¶

func (NullableGroupPermissions) IsSet ¶

func (v NullableGroupPermissions) IsSet() bool

func (NullableGroupPermissions) MarshalJSON ¶

func (v NullableGroupPermissions) MarshalJSON() ([]byte, error)

func (*NullableGroupPermissions) Set ¶

func (*NullableGroupPermissions) UnmarshalJSON ¶

func (v *NullableGroupPermissions) UnmarshalJSON(src []byte) error

func (*NullableGroupPermissions) Unset ¶

func (v *NullableGroupPermissions) Unset()

type NullableGroupPermissionsVM ¶

type NullableGroupPermissionsVM struct {
	// contains filtered or unexported fields
}

func NewNullableGroupPermissionsVM ¶

func NewNullableGroupPermissionsVM(val *GroupPermissionsVM) *NullableGroupPermissionsVM

func (NullableGroupPermissionsVM) Get ¶

func (NullableGroupPermissionsVM) IsSet ¶

func (v NullableGroupPermissionsVM) IsSet() bool

func (NullableGroupPermissionsVM) MarshalJSON ¶

func (v NullableGroupPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableGroupPermissionsVM) Set ¶

func (*NullableGroupPermissionsVM) UnmarshalJSON ¶

func (v *NullableGroupPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableGroupPermissionsVM) Unset ¶

func (v *NullableGroupPermissionsVM) Unset()

type NullableGroupUpdate ¶

type NullableGroupUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableGroupUpdate ¶

func NewNullableGroupUpdate(val *GroupUpdate) *NullableGroupUpdate

func (NullableGroupUpdate) Get ¶

func (NullableGroupUpdate) IsSet ¶

func (v NullableGroupUpdate) IsSet() bool

func (NullableGroupUpdate) MarshalJSON ¶

func (v NullableGroupUpdate) MarshalJSON() ([]byte, error)

func (*NullableGroupUpdate) Set ¶

func (v *NullableGroupUpdate) Set(val *GroupUpdate)

func (*NullableGroupUpdate) UnmarshalJSON ¶

func (v *NullableGroupUpdate) UnmarshalJSON(src []byte) error

func (*NullableGroupUpdate) Unset ¶

func (v *NullableGroupUpdate) Unset()

type NullableGroupUserVM ¶

type NullableGroupUserVM struct {
	// contains filtered or unexported fields
}

func NewNullableGroupUserVM ¶

func NewNullableGroupUserVM(val *GroupUserVM) *NullableGroupUserVM

func (NullableGroupUserVM) Get ¶

func (NullableGroupUserVM) IsSet ¶

func (v NullableGroupUserVM) IsSet() bool

func (NullableGroupUserVM) MarshalJSON ¶

func (v NullableGroupUserVM) MarshalJSON() ([]byte, error)

func (*NullableGroupUserVM) Set ¶

func (v *NullableGroupUserVM) Set(val *GroupUserVM)

func (*NullableGroupUserVM) UnmarshalJSON ¶

func (v *NullableGroupUserVM) UnmarshalJSON(src []byte) error

func (*NullableGroupUserVM) Unset ¶

func (v *NullableGroupUserVM) Unset()

type NullableGroupUsersVM ¶

type NullableGroupUsersVM struct {
	// contains filtered or unexported fields
}

func NewNullableGroupUsersVM ¶

func NewNullableGroupUsersVM(val *GroupUsersVM) *NullableGroupUsersVM

func (NullableGroupUsersVM) Get ¶

func (NullableGroupUsersVM) IsSet ¶

func (v NullableGroupUsersVM) IsSet() bool

func (NullableGroupUsersVM) MarshalJSON ¶

func (v NullableGroupUsersVM) MarshalJSON() ([]byte, error)

func (*NullableGroupUsersVM) Set ¶

func (v *NullableGroupUsersVM) Set(val *GroupUsersVM)

func (*NullableGroupUsersVM) UnmarshalJSON ¶

func (v *NullableGroupUsersVM) UnmarshalJSON(src []byte) error

func (*NullableGroupUsersVM) Unset ¶

func (v *NullableGroupUsersVM) Unset()

type NullableGroupVM ¶

type NullableGroupVM struct {
	// contains filtered or unexported fields
}

func NewNullableGroupVM ¶

func NewNullableGroupVM(val *GroupVM) *NullableGroupVM

func (NullableGroupVM) Get ¶

func (v NullableGroupVM) Get() *GroupVM

func (NullableGroupVM) IsSet ¶

func (v NullableGroupVM) IsSet() bool

func (NullableGroupVM) MarshalJSON ¶

func (v NullableGroupVM) MarshalJSON() ([]byte, error)

func (*NullableGroupVM) Set ¶

func (v *NullableGroupVM) Set(val *GroupVM)

func (*NullableGroupVM) UnmarshalJSON ¶

func (v *NullableGroupVM) UnmarshalJSON(src []byte) error

func (*NullableGroupVM) Unset ¶

func (v *NullableGroupVM) Unset()

type NullableGroupsVM ¶

type NullableGroupsVM struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsVM ¶

func NewNullableGroupsVM(val *GroupsVM) *NullableGroupsVM

func (NullableGroupsVM) Get ¶

func (v NullableGroupsVM) Get() *GroupsVM

func (NullableGroupsVM) IsSet ¶

func (v NullableGroupsVM) IsSet() bool

func (NullableGroupsVM) MarshalJSON ¶

func (v NullableGroupsVM) MarshalJSON() ([]byte, error)

func (*NullableGroupsVM) Set ¶

func (v *NullableGroupsVM) Set(val *GroupsVM)

func (*NullableGroupsVM) UnmarshalJSON ¶

func (v *NullableGroupsVM) UnmarshalJSON(src []byte) error

func (*NullableGroupsVM) Unset ¶

func (v *NullableGroupsVM) Unset()

type NullableHttpValidationProblemDetails ¶

type NullableHttpValidationProblemDetails struct {
	// contains filtered or unexported fields
}

func (NullableHttpValidationProblemDetails) Get ¶

func (NullableHttpValidationProblemDetails) IsSet ¶

func (NullableHttpValidationProblemDetails) MarshalJSON ¶

func (v NullableHttpValidationProblemDetails) MarshalJSON() ([]byte, error)

func (*NullableHttpValidationProblemDetails) Set ¶

func (*NullableHttpValidationProblemDetails) UnmarshalJSON ¶

func (v *NullableHttpValidationProblemDetails) UnmarshalJSON(src []byte) error

func (*NullableHttpValidationProblemDetails) Unset ¶

type NullableInputFileVM ¶

type NullableInputFileVM struct {
	// contains filtered or unexported fields
}

func NewNullableInputFileVM ¶

func NewNullableInputFileVM(val *InputFileVM) *NullableInputFileVM

func (NullableInputFileVM) Get ¶

func (NullableInputFileVM) IsSet ¶

func (v NullableInputFileVM) IsSet() bool

func (NullableInputFileVM) MarshalJSON ¶

func (v NullableInputFileVM) MarshalJSON() ([]byte, error)

func (*NullableInputFileVM) Set ¶

func (v *NullableInputFileVM) Set(val *InputFileVM)

func (*NullableInputFileVM) UnmarshalJSON ¶

func (v *NullableInputFileVM) UnmarshalJSON(src []byte) error

func (*NullableInputFileVM) Unset ¶

func (v *NullableInputFileVM) 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 NullableInvitedUser ¶

type NullableInvitedUser struct {
	// contains filtered or unexported fields
}

func NewNullableInvitedUser ¶

func NewNullableInvitedUser(val *InvitedUser) *NullableInvitedUser

func (NullableInvitedUser) Get ¶

func (NullableInvitedUser) IsSet ¶

func (v NullableInvitedUser) IsSet() bool

func (NullableInvitedUser) MarshalJSON ¶

func (v NullableInvitedUser) MarshalJSON() ([]byte, error)

func (*NullableInvitedUser) Set ¶

func (v *NullableInvitedUser) Set(val *InvitedUser)

func (*NullableInvitedUser) UnmarshalJSON ¶

func (v *NullableInvitedUser) UnmarshalJSON(src []byte) error

func (*NullableInvitedUser) Unset ¶

func (v *NullableInvitedUser) Unset()

type NullableMyPermissionsVM ¶

type NullableMyPermissionsVM struct {
	// contains filtered or unexported fields
}

func NewNullableMyPermissionsVM ¶

func NewNullableMyPermissionsVM(val *MyPermissionsVM) *NullableMyPermissionsVM

func (NullableMyPermissionsVM) Get ¶

func (NullableMyPermissionsVM) IsSet ¶

func (v NullableMyPermissionsVM) IsSet() bool

func (NullableMyPermissionsVM) MarshalJSON ¶

func (v NullableMyPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableMyPermissionsVM) Set ¶

func (*NullableMyPermissionsVM) UnmarshalJSON ¶

func (v *NullableMyPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableMyPermissionsVM) Unset ¶

func (v *NullableMyPermissionsVM) Unset()

type NullableOutputFileVM ¶

type NullableOutputFileVM struct {
	// contains filtered or unexported fields
}

func NewNullableOutputFileVM ¶

func NewNullableOutputFileVM(val *OutputFileVM) *NullableOutputFileVM

func (NullableOutputFileVM) Get ¶

func (NullableOutputFileVM) IsSet ¶

func (v NullableOutputFileVM) IsSet() bool

func (NullableOutputFileVM) MarshalJSON ¶

func (v NullableOutputFileVM) MarshalJSON() ([]byte, error)

func (*NullableOutputFileVM) Set ¶

func (v *NullableOutputFileVM) Set(val *OutputFileVM)

func (*NullableOutputFileVM) UnmarshalJSON ¶

func (v *NullableOutputFileVM) UnmarshalJSON(src []byte) error

func (*NullableOutputFileVM) Unset ¶

func (v *NullableOutputFileVM) Unset()

type NullablePrepareTemplateTaskVM ¶

type NullablePrepareTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullablePrepareTemplateTaskVM) Get ¶

func (NullablePrepareTemplateTaskVM) IsSet ¶

func (NullablePrepareTemplateTaskVM) MarshalJSON ¶

func (v NullablePrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullablePrepareTemplateTaskVM) Set ¶

func (*NullablePrepareTemplateTaskVM) UnmarshalJSON ¶

func (v *NullablePrepareTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullablePrepareTemplateTaskVM) Unset ¶

func (v *NullablePrepareTemplateTaskVM) Unset()

type NullablePrepareTemplateVM ¶

type NullablePrepareTemplateVM struct {
	// contains filtered or unexported fields
}

func NewNullablePrepareTemplateVM ¶

func NewNullablePrepareTemplateVM(val *PrepareTemplateVM) *NullablePrepareTemplateVM

func (NullablePrepareTemplateVM) Get ¶

func (NullablePrepareTemplateVM) IsSet ¶

func (v NullablePrepareTemplateVM) IsSet() bool

func (NullablePrepareTemplateVM) MarshalJSON ¶

func (v NullablePrepareTemplateVM) MarshalJSON() ([]byte, error)

func (*NullablePrepareTemplateVM) Set ¶

func (*NullablePrepareTemplateVM) UnmarshalJSON ¶

func (v *NullablePrepareTemplateVM) UnmarshalJSON(src []byte) error

func (*NullablePrepareTemplateVM) Unset ¶

func (v *NullablePrepareTemplateVM) Unset()

type NullablePreviewReportVM ¶

type NullablePreviewReportVM struct {
	// contains filtered or unexported fields
}

func NewNullablePreviewReportVM ¶

func NewNullablePreviewReportVM(val *PreviewReportVM) *NullablePreviewReportVM

func (NullablePreviewReportVM) Get ¶

func (NullablePreviewReportVM) IsSet ¶

func (v NullablePreviewReportVM) IsSet() bool

func (NullablePreviewReportVM) MarshalJSON ¶

func (v NullablePreviewReportVM) MarshalJSON() ([]byte, error)

func (*NullablePreviewReportVM) Set ¶

func (*NullablePreviewReportVM) UnmarshalJSON ¶

func (v *NullablePreviewReportVM) UnmarshalJSON(src []byte) error

func (*NullablePreviewReportVM) Unset ¶

func (v *NullablePreviewReportVM) Unset()

type NullablePreviewTemplateVM ¶

type NullablePreviewTemplateVM struct {
	// contains filtered or unexported fields
}

func NewNullablePreviewTemplateVM ¶

func NewNullablePreviewTemplateVM(val *PreviewTemplateVM) *NullablePreviewTemplateVM

func (NullablePreviewTemplateVM) Get ¶

func (NullablePreviewTemplateVM) IsSet ¶

func (v NullablePreviewTemplateVM) IsSet() bool

func (NullablePreviewTemplateVM) MarshalJSON ¶

func (v NullablePreviewTemplateVM) MarshalJSON() ([]byte, error)

func (*NullablePreviewTemplateVM) Set ¶

func (*NullablePreviewTemplateVM) UnmarshalJSON ¶

func (v *NullablePreviewTemplateVM) UnmarshalJSON(src []byte) error

func (*NullablePreviewTemplateVM) Unset ¶

func (v *NullablePreviewTemplateVM) Unset()

type NullableProblemDetails ¶

type NullableProblemDetails struct {
	// contains filtered or unexported fields
}

func NewNullableProblemDetails ¶

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get ¶

func (NullableProblemDetails) IsSet ¶

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON ¶

func (v NullableProblemDetails) MarshalJSON() ([]byte, error)

func (*NullableProblemDetails) Set ¶

func (*NullableProblemDetails) UnmarshalJSON ¶

func (v *NullableProblemDetails) UnmarshalJSON(src []byte) error

func (*NullableProblemDetails) Unset ¶

func (v *NullableProblemDetails) Unset()

type NullableProfileVisibility ¶

type NullableProfileVisibility struct {
	// contains filtered or unexported fields
}

func NewNullableProfileVisibility ¶

func NewNullableProfileVisibility(val *ProfileVisibility) *NullableProfileVisibility

func (NullableProfileVisibility) Get ¶

func (NullableProfileVisibility) IsSet ¶

func (v NullableProfileVisibility) IsSet() bool

func (NullableProfileVisibility) MarshalJSON ¶

func (v NullableProfileVisibility) MarshalJSON() ([]byte, error)

func (*NullableProfileVisibility) Set ¶

func (*NullableProfileVisibility) UnmarshalJSON ¶

func (v *NullableProfileVisibility) UnmarshalJSON(src []byte) error

func (*NullableProfileVisibility) Unset ¶

func (v *NullableProfileVisibility) Unset()

type NullableRenameDataSourceVM ¶

type NullableRenameDataSourceVM struct {
	// contains filtered or unexported fields
}

func NewNullableRenameDataSourceVM ¶

func NewNullableRenameDataSourceVM(val *RenameDataSourceVM) *NullableRenameDataSourceVM

func (NullableRenameDataSourceVM) Get ¶

func (NullableRenameDataSourceVM) IsSet ¶

func (v NullableRenameDataSourceVM) IsSet() bool

func (NullableRenameDataSourceVM) MarshalJSON ¶

func (v NullableRenameDataSourceVM) MarshalJSON() ([]byte, error)

func (*NullableRenameDataSourceVM) Set ¶

func (*NullableRenameDataSourceVM) UnmarshalJSON ¶

func (v *NullableRenameDataSourceVM) UnmarshalJSON(src []byte) error

func (*NullableRenameDataSourceVM) Unset ¶

func (v *NullableRenameDataSourceVM) Unset()

type NullableRenameGroupVM ¶

type NullableRenameGroupVM struct {
	// contains filtered or unexported fields
}

func NewNullableRenameGroupVM ¶

func NewNullableRenameGroupVM(val *RenameGroupVM) *NullableRenameGroupVM

func (NullableRenameGroupVM) Get ¶

func (NullableRenameGroupVM) IsSet ¶

func (v NullableRenameGroupVM) IsSet() bool

func (NullableRenameGroupVM) MarshalJSON ¶

func (v NullableRenameGroupVM) MarshalJSON() ([]byte, error)

func (*NullableRenameGroupVM) Set ¶

func (v *NullableRenameGroupVM) Set(val *RenameGroupVM)

func (*NullableRenameGroupVM) UnmarshalJSON ¶

func (v *NullableRenameGroupVM) UnmarshalJSON(src []byte) error

func (*NullableRenameGroupVM) Unset ¶

func (v *NullableRenameGroupVM) Unset()

type NullableRenameSubscriptionVM ¶

type NullableRenameSubscriptionVM struct {
	// contains filtered or unexported fields
}

func (NullableRenameSubscriptionVM) Get ¶

func (NullableRenameSubscriptionVM) IsSet ¶

func (NullableRenameSubscriptionVM) MarshalJSON ¶

func (v NullableRenameSubscriptionVM) MarshalJSON() ([]byte, error)

func (*NullableRenameSubscriptionVM) Set ¶

func (*NullableRenameSubscriptionVM) UnmarshalJSON ¶

func (v *NullableRenameSubscriptionVM) UnmarshalJSON(src []byte) error

func (*NullableRenameSubscriptionVM) Unset ¶

func (v *NullableRenameSubscriptionVM) Unset()

type NullableReportCreateAdminVM ¶

type NullableReportCreateAdminVM struct {
	// contains filtered or unexported fields
}

func (NullableReportCreateAdminVM) Get ¶

func (NullableReportCreateAdminVM) IsSet ¶

func (NullableReportCreateAdminVM) MarshalJSON ¶

func (v NullableReportCreateAdminVM) MarshalJSON() ([]byte, error)

func (*NullableReportCreateAdminVM) Set ¶

func (*NullableReportCreateAdminVM) UnmarshalJSON ¶

func (v *NullableReportCreateAdminVM) UnmarshalJSON(src []byte) error

func (*NullableReportCreateAdminVM) Unset ¶

func (v *NullableReportCreateAdminVM) Unset()

type NullableReportCreateVM ¶

type NullableReportCreateVM struct {
	// contains filtered or unexported fields
}

func NewNullableReportCreateVM ¶

func NewNullableReportCreateVM(val *ReportCreateVM) *NullableReportCreateVM

func (NullableReportCreateVM) Get ¶

func (NullableReportCreateVM) IsSet ¶

func (v NullableReportCreateVM) IsSet() bool

func (NullableReportCreateVM) MarshalJSON ¶

func (v NullableReportCreateVM) MarshalJSON() ([]byte, error)

func (*NullableReportCreateVM) Set ¶

func (*NullableReportCreateVM) UnmarshalJSON ¶

func (v *NullableReportCreateVM) UnmarshalJSON(src []byte) error

func (*NullableReportCreateVM) Unset ¶

func (v *NullableReportCreateVM) Unset()

type NullableReportFolderCreateVM ¶

type NullableReportFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableReportFolderCreateVM) Get ¶

func (NullableReportFolderCreateVM) IsSet ¶

func (NullableReportFolderCreateVM) MarshalJSON ¶

func (v NullableReportFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableReportFolderCreateVM) Set ¶

func (*NullableReportFolderCreateVM) UnmarshalJSON ¶

func (v *NullableReportFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableReportFolderCreateVM) Unset ¶

func (v *NullableReportFolderCreateVM) Unset()

type NullableReportInfo ¶

type NullableReportInfo struct {
	// contains filtered or unexported fields
}

func NewNullableReportInfo ¶

func NewNullableReportInfo(val *ReportInfo) *NullableReportInfo

func (NullableReportInfo) Get ¶

func (v NullableReportInfo) Get() *ReportInfo

func (NullableReportInfo) IsSet ¶

func (v NullableReportInfo) IsSet() bool

func (NullableReportInfo) MarshalJSON ¶

func (v NullableReportInfo) MarshalJSON() ([]byte, error)

func (*NullableReportInfo) Set ¶

func (v *NullableReportInfo) Set(val *ReportInfo)

func (*NullableReportInfo) UnmarshalJSON ¶

func (v *NullableReportInfo) UnmarshalJSON(src []byte) error

func (*NullableReportInfo) Unset ¶

func (v *NullableReportInfo) Unset()

type NullableReportVM ¶

type NullableReportVM struct {
	// contains filtered or unexported fields
}

func NewNullableReportVM ¶

func NewNullableReportVM(val *ReportVM) *NullableReportVM

func (NullableReportVM) Get ¶

func (v NullableReportVM) Get() *ReportVM

func (NullableReportVM) IsSet ¶

func (v NullableReportVM) IsSet() bool

func (NullableReportVM) MarshalJSON ¶

func (v NullableReportVM) MarshalJSON() ([]byte, error)

func (*NullableReportVM) Set ¶

func (v *NullableReportVM) Set(val *ReportVM)

func (*NullableReportVM) UnmarshalJSON ¶

func (v *NullableReportVM) UnmarshalJSON(src []byte) error

func (*NullableReportVM) Unset ¶

func (v *NullableReportVM) Unset()

type NullableReportVMFilesVMBase ¶

type NullableReportVMFilesVMBase struct {
	// contains filtered or unexported fields
}

func (NullableReportVMFilesVMBase) Get ¶

func (NullableReportVMFilesVMBase) IsSet ¶

func (NullableReportVMFilesVMBase) MarshalJSON ¶

func (v NullableReportVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*NullableReportVMFilesVMBase) Set ¶

func (*NullableReportVMFilesVMBase) UnmarshalJSON ¶

func (v *NullableReportVMFilesVMBase) UnmarshalJSON(src []byte) error

func (*NullableReportVMFilesVMBase) Unset ¶

func (v *NullableReportVMFilesVMBase) Unset()

type NullableReportsVM ¶

type NullableReportsVM struct {
	// contains filtered or unexported fields
}

func NewNullableReportsVM ¶

func NewNullableReportsVM(val *ReportsVM) *NullableReportsVM

func (NullableReportsVM) Get ¶

func (v NullableReportsVM) Get() *ReportsVM

func (NullableReportsVM) IsSet ¶

func (v NullableReportsVM) IsSet() bool

func (NullableReportsVM) MarshalJSON ¶

func (v NullableReportsVM) MarshalJSON() ([]byte, error)

func (*NullableReportsVM) Set ¶

func (v *NullableReportsVM) Set(val *ReportsVM)

func (*NullableReportsVM) UnmarshalJSON ¶

func (v *NullableReportsVM) UnmarshalJSON(src []byte) error

func (*NullableReportsVM) Unset ¶

func (v *NullableReportsVM) Unset()

type NullableRunEmailTaskVM ¶

type NullableRunEmailTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableRunEmailTaskVM ¶

func NewNullableRunEmailTaskVM(val *RunEmailTaskVM) *NullableRunEmailTaskVM

func (NullableRunEmailTaskVM) Get ¶

func (NullableRunEmailTaskVM) IsSet ¶

func (v NullableRunEmailTaskVM) IsSet() bool

func (NullableRunEmailTaskVM) MarshalJSON ¶

func (v NullableRunEmailTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunEmailTaskVM) Set ¶

func (*NullableRunEmailTaskVM) UnmarshalJSON ¶

func (v *NullableRunEmailTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunEmailTaskVM) Unset ¶

func (v *NullableRunEmailTaskVM) Unset()

type NullableRunExportReportTaskVM ¶

type NullableRunExportReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableRunExportReportTaskVM) Get ¶

func (NullableRunExportReportTaskVM) IsSet ¶

func (NullableRunExportReportTaskVM) MarshalJSON ¶

func (v NullableRunExportReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunExportReportTaskVM) Set ¶

func (*NullableRunExportReportTaskVM) UnmarshalJSON ¶

func (v *NullableRunExportReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunExportReportTaskVM) Unset ¶

func (v *NullableRunExportReportTaskVM) Unset()

type NullableRunExportTemplateTaskVM ¶

type NullableRunExportTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableRunExportTemplateTaskVM) Get ¶

func (NullableRunExportTemplateTaskVM) IsSet ¶

func (NullableRunExportTemplateTaskVM) MarshalJSON ¶

func (v NullableRunExportTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunExportTemplateTaskVM) Set ¶

func (*NullableRunExportTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableRunExportTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunExportTemplateTaskVM) Unset ¶

type NullableRunFTPUploadTaskVM ¶

type NullableRunFTPUploadTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableRunFTPUploadTaskVM ¶

func NewNullableRunFTPUploadTaskVM(val *RunFTPUploadTaskVM) *NullableRunFTPUploadTaskVM

func (NullableRunFTPUploadTaskVM) Get ¶

func (NullableRunFTPUploadTaskVM) IsSet ¶

func (v NullableRunFTPUploadTaskVM) IsSet() bool

func (NullableRunFTPUploadTaskVM) MarshalJSON ¶

func (v NullableRunFTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunFTPUploadTaskVM) Set ¶

func (*NullableRunFTPUploadTaskVM) UnmarshalJSON ¶

func (v *NullableRunFTPUploadTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunFTPUploadTaskVM) Unset ¶

func (v *NullableRunFTPUploadTaskVM) Unset()

type NullableRunFetchTaskVM ¶

type NullableRunFetchTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableRunFetchTaskVM ¶

func NewNullableRunFetchTaskVM(val *RunFetchTaskVM) *NullableRunFetchTaskVM

func (NullableRunFetchTaskVM) Get ¶

func (NullableRunFetchTaskVM) IsSet ¶

func (v NullableRunFetchTaskVM) IsSet() bool

func (NullableRunFetchTaskVM) MarshalJSON ¶

func (v NullableRunFetchTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunFetchTaskVM) Set ¶

func (*NullableRunFetchTaskVM) UnmarshalJSON ¶

func (v *NullableRunFetchTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunFetchTaskVM) Unset ¶

func (v *NullableRunFetchTaskVM) Unset()

type NullableRunInputFileVM ¶

type NullableRunInputFileVM struct {
	// contains filtered or unexported fields
}

func NewNullableRunInputFileVM ¶

func NewNullableRunInputFileVM(val *RunInputFileVM) *NullableRunInputFileVM

func (NullableRunInputFileVM) Get ¶

func (NullableRunInputFileVM) IsSet ¶

func (v NullableRunInputFileVM) IsSet() bool

func (NullableRunInputFileVM) MarshalJSON ¶

func (v NullableRunInputFileVM) MarshalJSON() ([]byte, error)

func (*NullableRunInputFileVM) Set ¶

func (*NullableRunInputFileVM) UnmarshalJSON ¶

func (v *NullableRunInputFileVM) UnmarshalJSON(src []byte) error

func (*NullableRunInputFileVM) Unset ¶

func (v *NullableRunInputFileVM) Unset()

type NullableRunPrepareTemplateTaskVM ¶

type NullableRunPrepareTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableRunPrepareTemplateTaskVM) Get ¶

func (NullableRunPrepareTemplateTaskVM) IsSet ¶

func (NullableRunPrepareTemplateTaskVM) MarshalJSON ¶

func (v NullableRunPrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunPrepareTemplateTaskVM) Set ¶

func (*NullableRunPrepareTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableRunPrepareTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunPrepareTemplateTaskVM) Unset ¶

type NullableRunTaskBaseVM ¶

type NullableRunTaskBaseVM struct {
	// contains filtered or unexported fields
}

func NewNullableRunTaskBaseVM ¶

func NewNullableRunTaskBaseVM(val *RunTaskBaseVM) *NullableRunTaskBaseVM

func (NullableRunTaskBaseVM) Get ¶

func (NullableRunTaskBaseVM) IsSet ¶

func (v NullableRunTaskBaseVM) IsSet() bool

func (NullableRunTaskBaseVM) MarshalJSON ¶

func (v NullableRunTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableRunTaskBaseVM) Set ¶

func (v *NullableRunTaskBaseVM) Set(val *RunTaskBaseVM)

func (*NullableRunTaskBaseVM) UnmarshalJSON ¶

func (v *NullableRunTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableRunTaskBaseVM) Unset ¶

func (v *NullableRunTaskBaseVM) Unset()

type NullableRunThumbnailReportTaskVM ¶

type NullableRunThumbnailReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableRunThumbnailReportTaskVM) Get ¶

func (NullableRunThumbnailReportTaskVM) IsSet ¶

func (NullableRunThumbnailReportTaskVM) MarshalJSON ¶

func (v NullableRunThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunThumbnailReportTaskVM) Set ¶

func (*NullableRunThumbnailReportTaskVM) UnmarshalJSON ¶

func (v *NullableRunThumbnailReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunThumbnailReportTaskVM) Unset ¶

type NullableRunThumbnailTemplateTaskVM ¶

type NullableRunThumbnailTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableRunThumbnailTemplateTaskVM) Get ¶

func (NullableRunThumbnailTemplateTaskVM) IsSet ¶

func (NullableRunThumbnailTemplateTaskVM) MarshalJSON ¶

func (v NullableRunThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunThumbnailTemplateTaskVM) Set ¶

func (*NullableRunThumbnailTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableRunThumbnailTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunThumbnailTemplateTaskVM) Unset ¶

type NullableRunTransformTaskBaseVM ¶

type NullableRunTransformTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableRunTransformTaskBaseVM) Get ¶

func (NullableRunTransformTaskBaseVM) IsSet ¶

func (NullableRunTransformTaskBaseVM) MarshalJSON ¶

func (v NullableRunTransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableRunTransformTaskBaseVM) Set ¶

func (*NullableRunTransformTaskBaseVM) UnmarshalJSON ¶

func (v *NullableRunTransformTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableRunTransformTaskBaseVM) Unset ¶

func (v *NullableRunTransformTaskBaseVM) Unset()

type NullableRunTransportTaskBaseVM ¶

type NullableRunTransportTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableRunTransportTaskBaseVM) Get ¶

func (NullableRunTransportTaskBaseVM) IsSet ¶

func (NullableRunTransportTaskBaseVM) MarshalJSON ¶

func (v NullableRunTransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableRunTransportTaskBaseVM) Set ¶

func (*NullableRunTransportTaskBaseVM) UnmarshalJSON ¶

func (v *NullableRunTransportTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableRunTransportTaskBaseVM) Unset ¶

func (v *NullableRunTransportTaskBaseVM) Unset()

type NullableRunWebhookTaskVM ¶

type NullableRunWebhookTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableRunWebhookTaskVM ¶

func NewNullableRunWebhookTaskVM(val *RunWebhookTaskVM) *NullableRunWebhookTaskVM

func (NullableRunWebhookTaskVM) Get ¶

func (NullableRunWebhookTaskVM) IsSet ¶

func (v NullableRunWebhookTaskVM) IsSet() bool

func (NullableRunWebhookTaskVM) MarshalJSON ¶

func (v NullableRunWebhookTaskVM) MarshalJSON() ([]byte, error)

func (*NullableRunWebhookTaskVM) Set ¶

func (*NullableRunWebhookTaskVM) UnmarshalJSON ¶

func (v *NullableRunWebhookTaskVM) UnmarshalJSON(src []byte) error

func (*NullableRunWebhookTaskVM) Unset ¶

func (v *NullableRunWebhookTaskVM) Unset()

type NullableSaveMode ¶

type NullableSaveMode struct {
	// contains filtered or unexported fields
}

func NewNullableSaveMode ¶

func NewNullableSaveMode(val *SaveMode) *NullableSaveMode

func (NullableSaveMode) Get ¶

func (v NullableSaveMode) Get() *SaveMode

func (NullableSaveMode) IsSet ¶

func (v NullableSaveMode) IsSet() bool

func (NullableSaveMode) MarshalJSON ¶

func (v NullableSaveMode) MarshalJSON() ([]byte, error)

func (*NullableSaveMode) Set ¶

func (v *NullableSaveMode) Set(val *SaveMode)

func (*NullableSaveMode) UnmarshalJSON ¶

func (v *NullableSaveMode) UnmarshalJSON(src []byte) error

func (*NullableSaveMode) Unset ¶

func (v *NullableSaveMode) Unset()

type NullableSelectedFilesForDeletingVM ¶

type NullableSelectedFilesForDeletingVM struct {
	// contains filtered or unexported fields
}

func (NullableSelectedFilesForDeletingVM) Get ¶

func (NullableSelectedFilesForDeletingVM) IsSet ¶

func (NullableSelectedFilesForDeletingVM) MarshalJSON ¶

func (v NullableSelectedFilesForDeletingVM) MarshalJSON() ([]byte, error)

func (*NullableSelectedFilesForDeletingVM) Set ¶

func (*NullableSelectedFilesForDeletingVM) UnmarshalJSON ¶

func (v *NullableSelectedFilesForDeletingVM) UnmarshalJSON(src []byte) error

func (*NullableSelectedFilesForDeletingVM) Unset ¶

type NullableSelectedFilesVM ¶

type NullableSelectedFilesVM struct {
	// contains filtered or unexported fields
}

func NewNullableSelectedFilesVM ¶

func NewNullableSelectedFilesVM(val *SelectedFilesVM) *NullableSelectedFilesVM

func (NullableSelectedFilesVM) Get ¶

func (NullableSelectedFilesVM) IsSet ¶

func (v NullableSelectedFilesVM) IsSet() bool

func (NullableSelectedFilesVM) MarshalJSON ¶

func (v NullableSelectedFilesVM) MarshalJSON() ([]byte, error)

func (*NullableSelectedFilesVM) Set ¶

func (*NullableSelectedFilesVM) UnmarshalJSON ¶

func (v *NullableSelectedFilesVM) UnmarshalJSON(src []byte) error

func (*NullableSelectedFilesVM) Unset ¶

func (v *NullableSelectedFilesVM) Unset()

type NullableServerConfigurationVM ¶

type NullableServerConfigurationVM struct {
	// contains filtered or unexported fields
}

func (NullableServerConfigurationVM) Get ¶

func (NullableServerConfigurationVM) IsSet ¶

func (NullableServerConfigurationVM) MarshalJSON ¶

func (v NullableServerConfigurationVM) MarshalJSON() ([]byte, error)

func (*NullableServerConfigurationVM) Set ¶

func (*NullableServerConfigurationVM) UnmarshalJSON ¶

func (v *NullableServerConfigurationVM) UnmarshalJSON(src []byte) error

func (*NullableServerConfigurationVM) Unset ¶

func (v *NullableServerConfigurationVM) 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 NullableSubscriptionAdministrate ¶

type NullableSubscriptionAdministrate struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionAdministrate) Get ¶

func (NullableSubscriptionAdministrate) IsSet ¶

func (NullableSubscriptionAdministrate) MarshalJSON ¶

func (v NullableSubscriptionAdministrate) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionAdministrate) Set ¶

func (*NullableSubscriptionAdministrate) UnmarshalJSON ¶

func (v *NullableSubscriptionAdministrate) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionAdministrate) Unset ¶

type NullableSubscriptionCreate ¶

type NullableSubscriptionCreate struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionCreate ¶

func NewNullableSubscriptionCreate(val *SubscriptionCreate) *NullableSubscriptionCreate

func (NullableSubscriptionCreate) Get ¶

func (NullableSubscriptionCreate) IsSet ¶

func (v NullableSubscriptionCreate) IsSet() bool

func (NullableSubscriptionCreate) MarshalJSON ¶

func (v NullableSubscriptionCreate) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionCreate) Set ¶

func (*NullableSubscriptionCreate) UnmarshalJSON ¶

func (v *NullableSubscriptionCreate) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionCreate) Unset ¶

func (v *NullableSubscriptionCreate) Unset()

type NullableSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission ¶

type NullableSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) IsSet ¶

func (NullableSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) MarshalJSON ¶

func (*NullableSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) UnmarshalJSON ¶

func (*NullableSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) Unset ¶

type NullableSubscriptionDelete ¶

type NullableSubscriptionDelete struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionDelete ¶

func NewNullableSubscriptionDelete(val *SubscriptionDelete) *NullableSubscriptionDelete

func (NullableSubscriptionDelete) Get ¶

func (NullableSubscriptionDelete) IsSet ¶

func (v NullableSubscriptionDelete) IsSet() bool

func (NullableSubscriptionDelete) MarshalJSON ¶

func (v NullableSubscriptionDelete) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionDelete) Set ¶

func (*NullableSubscriptionDelete) UnmarshalJSON ¶

func (v *NullableSubscriptionDelete) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionDelete) Unset ¶

func (v *NullableSubscriptionDelete) Unset()

type NullableSubscriptionExecute ¶

type NullableSubscriptionExecute struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionExecute) Get ¶

func (NullableSubscriptionExecute) IsSet ¶

func (NullableSubscriptionExecute) MarshalJSON ¶

func (v NullableSubscriptionExecute) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionExecute) Set ¶

func (*NullableSubscriptionExecute) UnmarshalJSON ¶

func (v *NullableSubscriptionExecute) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionExecute) Unset ¶

func (v *NullableSubscriptionExecute) Unset()

type NullableSubscriptionFolder ¶

type NullableSubscriptionFolder struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionFolder ¶

func NewNullableSubscriptionFolder(val *SubscriptionFolder) *NullableSubscriptionFolder

func (NullableSubscriptionFolder) Get ¶

func (NullableSubscriptionFolder) IsSet ¶

func (v NullableSubscriptionFolder) IsSet() bool

func (NullableSubscriptionFolder) MarshalJSON ¶

func (v NullableSubscriptionFolder) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionFolder) Set ¶

func (*NullableSubscriptionFolder) UnmarshalJSON ¶

func (v *NullableSubscriptionFolder) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionFolder) Unset ¶

func (v *NullableSubscriptionFolder) Unset()

type NullableSubscriptionGet ¶

type NullableSubscriptionGet struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionGet ¶

func NewNullableSubscriptionGet(val *SubscriptionGet) *NullableSubscriptionGet

func (NullableSubscriptionGet) Get ¶

func (NullableSubscriptionGet) IsSet ¶

func (v NullableSubscriptionGet) IsSet() bool

func (NullableSubscriptionGet) MarshalJSON ¶

func (v NullableSubscriptionGet) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionGet) Set ¶

func (*NullableSubscriptionGet) UnmarshalJSON ¶

func (v *NullableSubscriptionGet) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionGet) Unset ¶

func (v *NullableSubscriptionGet) Unset()

type NullableSubscriptionInviteVM ¶

type NullableSubscriptionInviteVM struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionInviteVM) Get ¶

func (NullableSubscriptionInviteVM) IsSet ¶

func (NullableSubscriptionInviteVM) MarshalJSON ¶

func (v NullableSubscriptionInviteVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionInviteVM) Set ¶

func (*NullableSubscriptionInviteVM) UnmarshalJSON ¶

func (v *NullableSubscriptionInviteVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionInviteVM) Unset ¶

func (v *NullableSubscriptionInviteVM) Unset()

type NullableSubscriptionInvitesVM ¶

type NullableSubscriptionInvitesVM struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionInvitesVM) Get ¶

func (NullableSubscriptionInvitesVM) IsSet ¶

func (NullableSubscriptionInvitesVM) MarshalJSON ¶

func (v NullableSubscriptionInvitesVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionInvitesVM) Set ¶

func (*NullableSubscriptionInvitesVM) UnmarshalJSON ¶

func (v *NullableSubscriptionInvitesVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionInvitesVM) Unset ¶

func (v *NullableSubscriptionInvitesVM) Unset()

type NullableSubscriptionPeriodVM ¶

type NullableSubscriptionPeriodVM struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPeriodVM) Get ¶

func (NullableSubscriptionPeriodVM) IsSet ¶

func (NullableSubscriptionPeriodVM) MarshalJSON ¶

func (v NullableSubscriptionPeriodVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPeriodVM) Set ¶

func (*NullableSubscriptionPeriodVM) UnmarshalJSON ¶

func (v *NullableSubscriptionPeriodVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPeriodVM) Unset ¶

func (v *NullableSubscriptionPeriodVM) Unset()

type NullableSubscriptionPermission ¶

type NullableSubscriptionPermission struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPermission) Get ¶

func (NullableSubscriptionPermission) IsSet ¶

func (NullableSubscriptionPermission) MarshalJSON ¶

func (v NullableSubscriptionPermission) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPermission) Set ¶

func (*NullableSubscriptionPermission) UnmarshalJSON ¶

func (v *NullableSubscriptionPermission) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPermission) Unset ¶

func (v *NullableSubscriptionPermission) Unset()

type NullableSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions ¶

type NullableSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) IsSet ¶

func (NullableSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) MarshalJSON ¶

func (*NullableSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) UnmarshalJSON ¶

func (*NullableSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) Unset ¶

type NullableSubscriptionPermissions ¶

type NullableSubscriptionPermissions struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPermissions) Get ¶

func (NullableSubscriptionPermissions) IsSet ¶

func (NullableSubscriptionPermissions) MarshalJSON ¶

func (v NullableSubscriptionPermissions) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPermissions) Set ¶

func (*NullableSubscriptionPermissions) UnmarshalJSON ¶

func (v *NullableSubscriptionPermissions) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPermissions) Unset ¶

type NullableSubscriptionPermissionsVM ¶

type NullableSubscriptionPermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPermissionsVM) Get ¶

func (NullableSubscriptionPermissionsVM) IsSet ¶

func (NullableSubscriptionPermissionsVM) MarshalJSON ¶

func (v NullableSubscriptionPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPermissionsVM) Set ¶

func (*NullableSubscriptionPermissionsVM) UnmarshalJSON ¶

func (v *NullableSubscriptionPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPermissionsVM) Unset ¶

type NullableSubscriptionPlanVM ¶

type NullableSubscriptionPlanVM struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionPlanVM ¶

func NewNullableSubscriptionPlanVM(val *SubscriptionPlanVM) *NullableSubscriptionPlanVM

func (NullableSubscriptionPlanVM) Get ¶

func (NullableSubscriptionPlanVM) IsSet ¶

func (v NullableSubscriptionPlanVM) IsSet() bool

func (NullableSubscriptionPlanVM) MarshalJSON ¶

func (v NullableSubscriptionPlanVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPlanVM) Set ¶

func (*NullableSubscriptionPlanVM) UnmarshalJSON ¶

func (v *NullableSubscriptionPlanVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPlanVM) Unset ¶

func (v *NullableSubscriptionPlanVM) Unset()

type NullableSubscriptionPlansVM ¶

type NullableSubscriptionPlansVM struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPlansVM) Get ¶

func (NullableSubscriptionPlansVM) IsSet ¶

func (NullableSubscriptionPlansVM) MarshalJSON ¶

func (v NullableSubscriptionPlansVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPlansVM) Set ¶

func (*NullableSubscriptionPlansVM) UnmarshalJSON ¶

func (v *NullableSubscriptionPlansVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPlansVM) Unset ¶

func (v *NullableSubscriptionPlansVM) Unset()

type NullableSubscriptionUpdate ¶

type NullableSubscriptionUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionUpdate ¶

func NewNullableSubscriptionUpdate(val *SubscriptionUpdate) *NullableSubscriptionUpdate

func (NullableSubscriptionUpdate) Get ¶

func (NullableSubscriptionUpdate) IsSet ¶

func (v NullableSubscriptionUpdate) IsSet() bool

func (NullableSubscriptionUpdate) MarshalJSON ¶

func (v NullableSubscriptionUpdate) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionUpdate) Set ¶

func (*NullableSubscriptionUpdate) UnmarshalJSON ¶

func (v *NullableSubscriptionUpdate) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionUpdate) Unset ¶

func (v *NullableSubscriptionUpdate) Unset()

type NullableSubscriptionUserVM ¶

type NullableSubscriptionUserVM struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionUserVM ¶

func NewNullableSubscriptionUserVM(val *SubscriptionUserVM) *NullableSubscriptionUserVM

func (NullableSubscriptionUserVM) Get ¶

func (NullableSubscriptionUserVM) IsSet ¶

func (v NullableSubscriptionUserVM) IsSet() bool

func (NullableSubscriptionUserVM) MarshalJSON ¶

func (v NullableSubscriptionUserVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionUserVM) Set ¶

func (*NullableSubscriptionUserVM) UnmarshalJSON ¶

func (v *NullableSubscriptionUserVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionUserVM) Unset ¶

func (v *NullableSubscriptionUserVM) Unset()

type NullableSubscriptionUsersVM ¶

type NullableSubscriptionUsersVM struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionUsersVM) Get ¶

func (NullableSubscriptionUsersVM) IsSet ¶

func (NullableSubscriptionUsersVM) MarshalJSON ¶

func (v NullableSubscriptionUsersVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionUsersVM) Set ¶

func (*NullableSubscriptionUsersVM) UnmarshalJSON ¶

func (v *NullableSubscriptionUsersVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionUsersVM) Unset ¶

func (v *NullableSubscriptionUsersVM) Unset()

type NullableSubscriptionVM ¶

type NullableSubscriptionVM struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionVM ¶

func NewNullableSubscriptionVM(val *SubscriptionVM) *NullableSubscriptionVM

func (NullableSubscriptionVM) Get ¶

func (NullableSubscriptionVM) IsSet ¶

func (v NullableSubscriptionVM) IsSet() bool

func (NullableSubscriptionVM) MarshalJSON ¶

func (v NullableSubscriptionVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionVM) Set ¶

func (*NullableSubscriptionVM) UnmarshalJSON ¶

func (v *NullableSubscriptionVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionVM) Unset ¶

func (v *NullableSubscriptionVM) Unset()

type NullableSubscriptionsVM ¶

type NullableSubscriptionsVM struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionsVM ¶

func NewNullableSubscriptionsVM(val *SubscriptionsVM) *NullableSubscriptionsVM

func (NullableSubscriptionsVM) Get ¶

func (NullableSubscriptionsVM) IsSet ¶

func (v NullableSubscriptionsVM) IsSet() bool

func (NullableSubscriptionsVM) MarshalJSON ¶

func (v NullableSubscriptionsVM) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionsVM) Set ¶

func (*NullableSubscriptionsVM) UnmarshalJSON ¶

func (v *NullableSubscriptionsVM) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionsVM) Unset ¶

func (v *NullableSubscriptionsVM) Unset()

type NullableTaskAdministrate ¶

type NullableTaskAdministrate struct {
	// contains filtered or unexported fields
}

func NewNullableTaskAdministrate ¶

func NewNullableTaskAdministrate(val *TaskAdministrate) *NullableTaskAdministrate

func (NullableTaskAdministrate) Get ¶

func (NullableTaskAdministrate) IsSet ¶

func (v NullableTaskAdministrate) IsSet() bool

func (NullableTaskAdministrate) MarshalJSON ¶

func (v NullableTaskAdministrate) MarshalJSON() ([]byte, error)

func (*NullableTaskAdministrate) Set ¶

func (*NullableTaskAdministrate) UnmarshalJSON ¶

func (v *NullableTaskAdministrate) UnmarshalJSON(src []byte) error

func (*NullableTaskAdministrate) Unset ¶

func (v *NullableTaskAdministrate) Unset()

type NullableTaskBaseVM ¶

type NullableTaskBaseVM struct {
	// contains filtered or unexported fields
}

func NewNullableTaskBaseVM ¶

func NewNullableTaskBaseVM(val *TaskBaseVM) *NullableTaskBaseVM

func (NullableTaskBaseVM) Get ¶

func (v NullableTaskBaseVM) Get() *TaskBaseVM

func (NullableTaskBaseVM) IsSet ¶

func (v NullableTaskBaseVM) IsSet() bool

func (NullableTaskBaseVM) MarshalJSON ¶

func (v NullableTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableTaskBaseVM) Set ¶

func (v *NullableTaskBaseVM) Set(val *TaskBaseVM)

func (*NullableTaskBaseVM) UnmarshalJSON ¶

func (v *NullableTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableTaskBaseVM) Unset ¶

func (v *NullableTaskBaseVM) 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 NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission ¶

type NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission struct {
	// contains filtered or unexported fields
}

func (NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) Get ¶

func (NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) IsSet ¶

func (NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) MarshalJSON ¶

func (*NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) Set ¶

func (*NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) UnmarshalJSON ¶

func (*NullableTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) Unset ¶

type NullableTaskDelete ¶

type NullableTaskDelete struct {
	// contains filtered or unexported fields
}

func NewNullableTaskDelete ¶

func NewNullableTaskDelete(val *TaskDelete) *NullableTaskDelete

func (NullableTaskDelete) Get ¶

func (v NullableTaskDelete) Get() *TaskDelete

func (NullableTaskDelete) IsSet ¶

func (v NullableTaskDelete) IsSet() bool

func (NullableTaskDelete) MarshalJSON ¶

func (v NullableTaskDelete) MarshalJSON() ([]byte, error)

func (*NullableTaskDelete) Set ¶

func (v *NullableTaskDelete) Set(val *TaskDelete)

func (*NullableTaskDelete) UnmarshalJSON ¶

func (v *NullableTaskDelete) UnmarshalJSON(src []byte) error

func (*NullableTaskDelete) Unset ¶

func (v *NullableTaskDelete) Unset()

type NullableTaskExecute ¶

type NullableTaskExecute struct {
	// contains filtered or unexported fields
}

func NewNullableTaskExecute ¶

func NewNullableTaskExecute(val *TaskExecute) *NullableTaskExecute

func (NullableTaskExecute) Get ¶

func (NullableTaskExecute) IsSet ¶

func (v NullableTaskExecute) IsSet() bool

func (NullableTaskExecute) MarshalJSON ¶

func (v NullableTaskExecute) MarshalJSON() ([]byte, error)

func (*NullableTaskExecute) Set ¶

func (v *NullableTaskExecute) Set(val *TaskExecute)

func (*NullableTaskExecute) UnmarshalJSON ¶

func (v *NullableTaskExecute) UnmarshalJSON(src []byte) error

func (*NullableTaskExecute) Unset ¶

func (v *NullableTaskExecute) Unset()

type NullableTaskGet ¶

type NullableTaskGet struct {
	// contains filtered or unexported fields
}

func NewNullableTaskGet ¶

func NewNullableTaskGet(val *TaskGet) *NullableTaskGet

func (NullableTaskGet) Get ¶

func (v NullableTaskGet) Get() *TaskGet

func (NullableTaskGet) IsSet ¶

func (v NullableTaskGet) IsSet() bool

func (NullableTaskGet) MarshalJSON ¶

func (v NullableTaskGet) MarshalJSON() ([]byte, error)

func (*NullableTaskGet) Set ¶

func (v *NullableTaskGet) Set(val *TaskGet)

func (*NullableTaskGet) UnmarshalJSON ¶

func (v *NullableTaskGet) UnmarshalJSON(src []byte) error

func (*NullableTaskGet) Unset ¶

func (v *NullableTaskGet) Unset()

type NullableTaskPermission ¶

type NullableTaskPermission struct {
	// contains filtered or unexported fields
}

func NewNullableTaskPermission ¶

func NewNullableTaskPermission(val *TaskPermission) *NullableTaskPermission

func (NullableTaskPermission) Get ¶

func (NullableTaskPermission) IsSet ¶

func (v NullableTaskPermission) IsSet() bool

func (NullableTaskPermission) MarshalJSON ¶

func (v NullableTaskPermission) MarshalJSON() ([]byte, error)

func (*NullableTaskPermission) Set ¶

func (*NullableTaskPermission) UnmarshalJSON ¶

func (v *NullableTaskPermission) UnmarshalJSON(src []byte) error

func (*NullableTaskPermission) Unset ¶

func (v *NullableTaskPermission) Unset()

type NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions ¶

type NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions struct {
	// contains filtered or unexported fields
}

func (NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) IsSet ¶

func (NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) MarshalJSON ¶

func (*NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) Set ¶

func (*NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) UnmarshalJSON ¶

func (*NullableTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) Unset ¶

type NullableTaskPermissions ¶

type NullableTaskPermissions struct {
	// contains filtered or unexported fields
}

func NewNullableTaskPermissions ¶

func NewNullableTaskPermissions(val *TaskPermissions) *NullableTaskPermissions

func (NullableTaskPermissions) Get ¶

func (NullableTaskPermissions) IsSet ¶

func (v NullableTaskPermissions) IsSet() bool

func (NullableTaskPermissions) MarshalJSON ¶

func (v NullableTaskPermissions) MarshalJSON() ([]byte, error)

func (*NullableTaskPermissions) Set ¶

func (*NullableTaskPermissions) UnmarshalJSON ¶

func (v *NullableTaskPermissions) UnmarshalJSON(src []byte) error

func (*NullableTaskPermissions) Unset ¶

func (v *NullableTaskPermissions) Unset()

type NullableTaskPermissionsVM ¶

type NullableTaskPermissionsVM struct {
	// contains filtered or unexported fields
}

func NewNullableTaskPermissionsVM ¶

func NewNullableTaskPermissionsVM(val *TaskPermissionsVM) *NullableTaskPermissionsVM

func (NullableTaskPermissionsVM) Get ¶

func (NullableTaskPermissionsVM) IsSet ¶

func (v NullableTaskPermissionsVM) IsSet() bool

func (NullableTaskPermissionsVM) MarshalJSON ¶

func (v NullableTaskPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableTaskPermissionsVM) Set ¶

func (*NullableTaskPermissionsVM) UnmarshalJSON ¶

func (v *NullableTaskPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableTaskPermissionsVM) Unset ¶

func (v *NullableTaskPermissionsVM) Unset()

type NullableTaskSettingsVM ¶

type NullableTaskSettingsVM struct {
	// contains filtered or unexported fields
}

func NewNullableTaskSettingsVM ¶

func NewNullableTaskSettingsVM(val *TaskSettingsVM) *NullableTaskSettingsVM

func (NullableTaskSettingsVM) Get ¶

func (NullableTaskSettingsVM) IsSet ¶

func (v NullableTaskSettingsVM) IsSet() bool

func (NullableTaskSettingsVM) MarshalJSON ¶

func (v NullableTaskSettingsVM) MarshalJSON() ([]byte, error)

func (*NullableTaskSettingsVM) Set ¶

func (*NullableTaskSettingsVM) UnmarshalJSON ¶

func (v *NullableTaskSettingsVM) UnmarshalJSON(src []byte) error

func (*NullableTaskSettingsVM) Unset ¶

func (v *NullableTaskSettingsVM) Unset()

type NullableTaskUpdate ¶

type NullableTaskUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableTaskUpdate ¶

func NewNullableTaskUpdate(val *TaskUpdate) *NullableTaskUpdate

func (NullableTaskUpdate) Get ¶

func (v NullableTaskUpdate) Get() *TaskUpdate

func (NullableTaskUpdate) IsSet ¶

func (v NullableTaskUpdate) IsSet() bool

func (NullableTaskUpdate) MarshalJSON ¶

func (v NullableTaskUpdate) MarshalJSON() ([]byte, error)

func (*NullableTaskUpdate) Set ¶

func (v *NullableTaskUpdate) Set(val *TaskUpdate)

func (*NullableTaskUpdate) UnmarshalJSON ¶

func (v *NullableTaskUpdate) UnmarshalJSON(src []byte) error

func (*NullableTaskUpdate) Unset ¶

func (v *NullableTaskUpdate) Unset()

type NullableTasksVM ¶

type NullableTasksVM struct {
	// contains filtered or unexported fields
}

func NewNullableTasksVM ¶

func NewNullableTasksVM(val *TasksVM) *NullableTasksVM

func (NullableTasksVM) Get ¶

func (v NullableTasksVM) Get() *TasksVM

func (NullableTasksVM) IsSet ¶

func (v NullableTasksVM) IsSet() bool

func (NullableTasksVM) MarshalJSON ¶

func (v NullableTasksVM) MarshalJSON() ([]byte, error)

func (*NullableTasksVM) Set ¶

func (v *NullableTasksVM) Set(val *TasksVM)

func (*NullableTasksVM) UnmarshalJSON ¶

func (v *NullableTasksVM) UnmarshalJSON(src []byte) error

func (*NullableTasksVM) Unset ¶

func (v *NullableTasksVM) Unset()

type NullableTemplateCreateAdminVM ¶

type NullableTemplateCreateAdminVM struct {
	// contains filtered or unexported fields
}

func (NullableTemplateCreateAdminVM) Get ¶

func (NullableTemplateCreateAdminVM) IsSet ¶

func (NullableTemplateCreateAdminVM) MarshalJSON ¶

func (v NullableTemplateCreateAdminVM) MarshalJSON() ([]byte, error)

func (*NullableTemplateCreateAdminVM) Set ¶

func (*NullableTemplateCreateAdminVM) UnmarshalJSON ¶

func (v *NullableTemplateCreateAdminVM) UnmarshalJSON(src []byte) error

func (*NullableTemplateCreateAdminVM) Unset ¶

func (v *NullableTemplateCreateAdminVM) Unset()

type NullableTemplateCreateVM ¶

type NullableTemplateCreateVM struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateCreateVM ¶

func NewNullableTemplateCreateVM(val *TemplateCreateVM) *NullableTemplateCreateVM

func (NullableTemplateCreateVM) Get ¶

func (NullableTemplateCreateVM) IsSet ¶

func (v NullableTemplateCreateVM) IsSet() bool

func (NullableTemplateCreateVM) MarshalJSON ¶

func (v NullableTemplateCreateVM) MarshalJSON() ([]byte, error)

func (*NullableTemplateCreateVM) Set ¶

func (*NullableTemplateCreateVM) UnmarshalJSON ¶

func (v *NullableTemplateCreateVM) UnmarshalJSON(src []byte) error

func (*NullableTemplateCreateVM) Unset ¶

func (v *NullableTemplateCreateVM) Unset()

type NullableTemplateFolderCreateVM ¶

type NullableTemplateFolderCreateVM struct {
	// contains filtered or unexported fields
}

func (NullableTemplateFolderCreateVM) Get ¶

func (NullableTemplateFolderCreateVM) IsSet ¶

func (NullableTemplateFolderCreateVM) MarshalJSON ¶

func (v NullableTemplateFolderCreateVM) MarshalJSON() ([]byte, error)

func (*NullableTemplateFolderCreateVM) Set ¶

func (*NullableTemplateFolderCreateVM) UnmarshalJSON ¶

func (v *NullableTemplateFolderCreateVM) UnmarshalJSON(src []byte) error

func (*NullableTemplateFolderCreateVM) Unset ¶

func (v *NullableTemplateFolderCreateVM) Unset()

type NullableTemplateVM ¶

type NullableTemplateVM struct {
	// contains filtered or unexported fields
}

func NewNullableTemplateVM ¶

func NewNullableTemplateVM(val *TemplateVM) *NullableTemplateVM

func (NullableTemplateVM) Get ¶

func (v NullableTemplateVM) Get() *TemplateVM

func (NullableTemplateVM) IsSet ¶

func (v NullableTemplateVM) IsSet() bool

func (NullableTemplateVM) MarshalJSON ¶

func (v NullableTemplateVM) MarshalJSON() ([]byte, error)

func (*NullableTemplateVM) Set ¶

func (v *NullableTemplateVM) Set(val *TemplateVM)

func (*NullableTemplateVM) UnmarshalJSON ¶

func (v *NullableTemplateVM) UnmarshalJSON(src []byte) error

func (*NullableTemplateVM) Unset ¶

func (v *NullableTemplateVM) Unset()

type NullableTemplateVMFilesVMBase ¶

type NullableTemplateVMFilesVMBase struct {
	// contains filtered or unexported fields
}

func (NullableTemplateVMFilesVMBase) Get ¶

func (NullableTemplateVMFilesVMBase) IsSet ¶

func (NullableTemplateVMFilesVMBase) MarshalJSON ¶

func (v NullableTemplateVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*NullableTemplateVMFilesVMBase) Set ¶

func (*NullableTemplateVMFilesVMBase) UnmarshalJSON ¶

func (v *NullableTemplateVMFilesVMBase) UnmarshalJSON(src []byte) error

func (*NullableTemplateVMFilesVMBase) Unset ¶

func (v *NullableTemplateVMFilesVMBase) Unset()

type NullableTemplatesVM ¶

type NullableTemplatesVM struct {
	// contains filtered or unexported fields
}

func NewNullableTemplatesVM ¶

func NewNullableTemplatesVM(val *TemplatesVM) *NullableTemplatesVM

func (NullableTemplatesVM) Get ¶

func (NullableTemplatesVM) IsSet ¶

func (v NullableTemplatesVM) IsSet() bool

func (NullableTemplatesVM) MarshalJSON ¶

func (v NullableTemplatesVM) MarshalJSON() ([]byte, error)

func (*NullableTemplatesVM) Set ¶

func (v *NullableTemplatesVM) Set(val *TemplatesVM)

func (*NullableTemplatesVM) UnmarshalJSON ¶

func (v *NullableTemplatesVM) UnmarshalJSON(src []byte) error

func (*NullableTemplatesVM) Unset ¶

func (v *NullableTemplatesVM) Unset()

type NullableThumbnailReportTaskVM ¶

type NullableThumbnailReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableThumbnailReportTaskVM) Get ¶

func (NullableThumbnailReportTaskVM) IsSet ¶

func (NullableThumbnailReportTaskVM) MarshalJSON ¶

func (v NullableThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableThumbnailReportTaskVM) Set ¶

func (*NullableThumbnailReportTaskVM) UnmarshalJSON ¶

func (v *NullableThumbnailReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableThumbnailReportTaskVM) Unset ¶

func (v *NullableThumbnailReportTaskVM) Unset()

type NullableThumbnailTemplateTaskVM ¶

type NullableThumbnailTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableThumbnailTemplateTaskVM) Get ¶

func (NullableThumbnailTemplateTaskVM) IsSet ¶

func (NullableThumbnailTemplateTaskVM) MarshalJSON ¶

func (v NullableThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableThumbnailTemplateTaskVM) Set ¶

func (*NullableThumbnailTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableThumbnailTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableThumbnailTemplateTaskVM) 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 NullableTimePeriodType ¶

type NullableTimePeriodType struct {
	// contains filtered or unexported fields
}

func NewNullableTimePeriodType ¶

func NewNullableTimePeriodType(val *TimePeriodType) *NullableTimePeriodType

func (NullableTimePeriodType) Get ¶

func (NullableTimePeriodType) IsSet ¶

func (v NullableTimePeriodType) IsSet() bool

func (NullableTimePeriodType) MarshalJSON ¶

func (v NullableTimePeriodType) MarshalJSON() ([]byte, error)

func (*NullableTimePeriodType) Set ¶

func (*NullableTimePeriodType) UnmarshalJSON ¶

func (v *NullableTimePeriodType) UnmarshalJSON(src []byte) error

func (*NullableTimePeriodType) Unset ¶

func (v *NullableTimePeriodType) Unset()

type NullableTransformTaskBaseVM ¶

type NullableTransformTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableTransformTaskBaseVM) Get ¶

func (NullableTransformTaskBaseVM) IsSet ¶

func (NullableTransformTaskBaseVM) MarshalJSON ¶

func (v NullableTransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableTransformTaskBaseVM) Set ¶

func (*NullableTransformTaskBaseVM) UnmarshalJSON ¶

func (v *NullableTransformTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableTransformTaskBaseVM) Unset ¶

func (v *NullableTransformTaskBaseVM) Unset()

type NullableTransportTaskBaseVM ¶

type NullableTransportTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableTransportTaskBaseVM) Get ¶

func (NullableTransportTaskBaseVM) IsSet ¶

func (NullableTransportTaskBaseVM) MarshalJSON ¶

func (v NullableTransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableTransportTaskBaseVM) Set ¶

func (*NullableTransportTaskBaseVM) UnmarshalJSON ¶

func (v *NullableTransportTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableTransportTaskBaseVM) Unset ¶

func (v *NullableTransportTaskBaseVM) Unset()

type NullableUpdateContactGroupVM ¶

type NullableUpdateContactGroupVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateContactGroupVM) Get ¶

func (NullableUpdateContactGroupVM) IsSet ¶

func (NullableUpdateContactGroupVM) MarshalJSON ¶

func (v NullableUpdateContactGroupVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateContactGroupVM) Set ¶

func (*NullableUpdateContactGroupVM) UnmarshalJSON ¶

func (v *NullableUpdateContactGroupVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateContactGroupVM) Unset ¶

func (v *NullableUpdateContactGroupVM) Unset()

type NullableUpdateContactVM ¶

type NullableUpdateContactVM struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateContactVM ¶

func NewNullableUpdateContactVM(val *UpdateContactVM) *NullableUpdateContactVM

func (NullableUpdateContactVM) Get ¶

func (NullableUpdateContactVM) IsSet ¶

func (v NullableUpdateContactVM) IsSet() bool

func (NullableUpdateContactVM) MarshalJSON ¶

func (v NullableUpdateContactVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateContactVM) Set ¶

func (*NullableUpdateContactVM) UnmarshalJSON ¶

func (v *NullableUpdateContactVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateContactVM) Unset ¶

func (v *NullableUpdateContactVM) Unset()

type NullableUpdateDataSourceConnectionStringVM ¶

type NullableUpdateDataSourceConnectionStringVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDataSourceConnectionStringVM) Get ¶

func (NullableUpdateDataSourceConnectionStringVM) IsSet ¶

func (NullableUpdateDataSourceConnectionStringVM) MarshalJSON ¶

func (*NullableUpdateDataSourceConnectionStringVM) Set ¶

func (*NullableUpdateDataSourceConnectionStringVM) UnmarshalJSON ¶

func (v *NullableUpdateDataSourceConnectionStringVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateDataSourceConnectionStringVM) Unset ¶

type NullableUpdateDataSourcePermissionsVM ¶

type NullableUpdateDataSourcePermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDataSourcePermissionsVM) Get ¶

func (NullableUpdateDataSourcePermissionsVM) IsSet ¶

func (NullableUpdateDataSourcePermissionsVM) MarshalJSON ¶

func (v NullableUpdateDataSourcePermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateDataSourcePermissionsVM) Set ¶

func (*NullableUpdateDataSourcePermissionsVM) UnmarshalJSON ¶

func (v *NullableUpdateDataSourcePermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateDataSourcePermissionsVM) Unset ¶

type NullableUpdateDataSourceSubscriptionVM ¶

type NullableUpdateDataSourceSubscriptionVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDataSourceSubscriptionVM) Get ¶

func (NullableUpdateDataSourceSubscriptionVM) IsSet ¶

func (NullableUpdateDataSourceSubscriptionVM) MarshalJSON ¶

func (v NullableUpdateDataSourceSubscriptionVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateDataSourceSubscriptionVM) Set ¶

func (*NullableUpdateDataSourceSubscriptionVM) UnmarshalJSON ¶

func (v *NullableUpdateDataSourceSubscriptionVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateDataSourceSubscriptionVM) Unset ¶

type NullableUpdateDefaultPermissionsVM ¶

type NullableUpdateDefaultPermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateDefaultPermissionsVM) Get ¶

func (NullableUpdateDefaultPermissionsVM) IsSet ¶

func (NullableUpdateDefaultPermissionsVM) MarshalJSON ¶

func (v NullableUpdateDefaultPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateDefaultPermissionsVM) Set ¶

func (*NullableUpdateDefaultPermissionsVM) UnmarshalJSON ¶

func (v *NullableUpdateDefaultPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateDefaultPermissionsVM) Unset ¶

type NullableUpdateEmailTaskVM ¶

type NullableUpdateEmailTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateEmailTaskVM ¶

func NewNullableUpdateEmailTaskVM(val *UpdateEmailTaskVM) *NullableUpdateEmailTaskVM

func (NullableUpdateEmailTaskVM) Get ¶

func (NullableUpdateEmailTaskVM) IsSet ¶

func (v NullableUpdateEmailTaskVM) IsSet() bool

func (NullableUpdateEmailTaskVM) MarshalJSON ¶

func (v NullableUpdateEmailTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateEmailTaskVM) Set ¶

func (*NullableUpdateEmailTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateEmailTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateEmailTaskVM) Unset ¶

func (v *NullableUpdateEmailTaskVM) Unset()

type NullableUpdateExportReportTaskVM ¶

type NullableUpdateExportReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateExportReportTaskVM) Get ¶

func (NullableUpdateExportReportTaskVM) IsSet ¶

func (NullableUpdateExportReportTaskVM) MarshalJSON ¶

func (v NullableUpdateExportReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateExportReportTaskVM) Set ¶

func (*NullableUpdateExportReportTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateExportReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateExportReportTaskVM) Unset ¶

type NullableUpdateExportTemplateTaskVM ¶

type NullableUpdateExportTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateExportTemplateTaskVM) Get ¶

func (NullableUpdateExportTemplateTaskVM) IsSet ¶

func (NullableUpdateExportTemplateTaskVM) MarshalJSON ¶

func (v NullableUpdateExportTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateExportTemplateTaskVM) Set ¶

func (*NullableUpdateExportTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateExportTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateExportTemplateTaskVM) Unset ¶

type NullableUpdateFTPUploadTaskVM ¶

type NullableUpdateFTPUploadTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateFTPUploadTaskVM) Get ¶

func (NullableUpdateFTPUploadTaskVM) IsSet ¶

func (NullableUpdateFTPUploadTaskVM) MarshalJSON ¶

func (v NullableUpdateFTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateFTPUploadTaskVM) Set ¶

func (*NullableUpdateFTPUploadTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateFTPUploadTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateFTPUploadTaskVM) Unset ¶

func (v *NullableUpdateFTPUploadTaskVM) Unset()

type NullableUpdateFetchTaskVM ¶

type NullableUpdateFetchTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateFetchTaskVM ¶

func NewNullableUpdateFetchTaskVM(val *UpdateFetchTaskVM) *NullableUpdateFetchTaskVM

func (NullableUpdateFetchTaskVM) Get ¶

func (NullableUpdateFetchTaskVM) IsSet ¶

func (v NullableUpdateFetchTaskVM) IsSet() bool

func (NullableUpdateFetchTaskVM) MarshalJSON ¶

func (v NullableUpdateFetchTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateFetchTaskVM) Set ¶

func (*NullableUpdateFetchTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateFetchTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateFetchTaskVM) Unset ¶

func (v *NullableUpdateFetchTaskVM) Unset()

type NullableUpdateFileContentVM ¶

type NullableUpdateFileContentVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateFileContentVM) Get ¶

func (NullableUpdateFileContentVM) IsSet ¶

func (NullableUpdateFileContentVM) MarshalJSON ¶

func (v NullableUpdateFileContentVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateFileContentVM) Set ¶

func (*NullableUpdateFileContentVM) UnmarshalJSON ¶

func (v *NullableUpdateFileContentVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateFileContentVM) Unset ¶

func (v *NullableUpdateFileContentVM) Unset()

type NullableUpdateFilePermissionsVM ¶

type NullableUpdateFilePermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateFilePermissionsVM) Get ¶

func (NullableUpdateFilePermissionsVM) IsSet ¶

func (NullableUpdateFilePermissionsVM) MarshalJSON ¶

func (v NullableUpdateFilePermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateFilePermissionsVM) Set ¶

func (*NullableUpdateFilePermissionsVM) UnmarshalJSON ¶

func (v *NullableUpdateFilePermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateFilePermissionsVM) Unset ¶

type NullableUpdateGroupPermissionsVM ¶

type NullableUpdateGroupPermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateGroupPermissionsVM) Get ¶

func (NullableUpdateGroupPermissionsVM) IsSet ¶

func (NullableUpdateGroupPermissionsVM) MarshalJSON ¶

func (v NullableUpdateGroupPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateGroupPermissionsVM) Set ¶

func (*NullableUpdateGroupPermissionsVM) UnmarshalJSON ¶

func (v *NullableUpdateGroupPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateGroupPermissionsVM) Unset ¶

type NullableUpdatePrepareTemplateTaskVM ¶

type NullableUpdatePrepareTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePrepareTemplateTaskVM) Get ¶

func (NullableUpdatePrepareTemplateTaskVM) IsSet ¶

func (NullableUpdatePrepareTemplateTaskVM) MarshalJSON ¶

func (v NullableUpdatePrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdatePrepareTemplateTaskVM) Set ¶

func (*NullableUpdatePrepareTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableUpdatePrepareTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdatePrepareTemplateTaskVM) Unset ¶

type NullableUpdateSubscriptionLocaleVM ¶

type NullableUpdateSubscriptionLocaleVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSubscriptionLocaleVM) Get ¶

func (NullableUpdateSubscriptionLocaleVM) IsSet ¶

func (NullableUpdateSubscriptionLocaleVM) MarshalJSON ¶

func (v NullableUpdateSubscriptionLocaleVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateSubscriptionLocaleVM) Set ¶

func (*NullableUpdateSubscriptionLocaleVM) UnmarshalJSON ¶

func (v *NullableUpdateSubscriptionLocaleVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateSubscriptionLocaleVM) Unset ¶

type NullableUpdateSubscriptionPermissionsVM ¶

type NullableUpdateSubscriptionPermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSubscriptionPermissionsVM) Get ¶

func (NullableUpdateSubscriptionPermissionsVM) IsSet ¶

func (NullableUpdateSubscriptionPermissionsVM) MarshalJSON ¶

func (v NullableUpdateSubscriptionPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateSubscriptionPermissionsVM) Set ¶

func (*NullableUpdateSubscriptionPermissionsVM) UnmarshalJSON ¶

func (v *NullableUpdateSubscriptionPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateSubscriptionPermissionsVM) Unset ¶

type NullableUpdateTaskBaseVM ¶

type NullableUpdateTaskBaseVM struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateTaskBaseVM ¶

func NewNullableUpdateTaskBaseVM(val *UpdateTaskBaseVM) *NullableUpdateTaskBaseVM

func (NullableUpdateTaskBaseVM) Get ¶

func (NullableUpdateTaskBaseVM) IsSet ¶

func (v NullableUpdateTaskBaseVM) IsSet() bool

func (NullableUpdateTaskBaseVM) MarshalJSON ¶

func (v NullableUpdateTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateTaskBaseVM) Set ¶

func (*NullableUpdateTaskBaseVM) UnmarshalJSON ¶

func (v *NullableUpdateTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateTaskBaseVM) Unset ¶

func (v *NullableUpdateTaskBaseVM) Unset()

type NullableUpdateTaskPermissionsVM ¶

type NullableUpdateTaskPermissionsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateTaskPermissionsVM) Get ¶

func (NullableUpdateTaskPermissionsVM) IsSet ¶

func (NullableUpdateTaskPermissionsVM) MarshalJSON ¶

func (v NullableUpdateTaskPermissionsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateTaskPermissionsVM) Set ¶

func (*NullableUpdateTaskPermissionsVM) UnmarshalJSON ¶

func (v *NullableUpdateTaskPermissionsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateTaskPermissionsVM) Unset ¶

type NullableUpdateThumbnailReportTaskVM ¶

type NullableUpdateThumbnailReportTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateThumbnailReportTaskVM) Get ¶

func (NullableUpdateThumbnailReportTaskVM) IsSet ¶

func (NullableUpdateThumbnailReportTaskVM) MarshalJSON ¶

func (v NullableUpdateThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateThumbnailReportTaskVM) Set ¶

func (*NullableUpdateThumbnailReportTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateThumbnailReportTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateThumbnailReportTaskVM) Unset ¶

type NullableUpdateThumbnailTemplateTaskVM ¶

type NullableUpdateThumbnailTemplateTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateThumbnailTemplateTaskVM) Get ¶

func (NullableUpdateThumbnailTemplateTaskVM) IsSet ¶

func (NullableUpdateThumbnailTemplateTaskVM) MarshalJSON ¶

func (v NullableUpdateThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateThumbnailTemplateTaskVM) Set ¶

func (*NullableUpdateThumbnailTemplateTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateThumbnailTemplateTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateThumbnailTemplateTaskVM) Unset ¶

type NullableUpdateTransformTaskBaseVM ¶

type NullableUpdateTransformTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateTransformTaskBaseVM) Get ¶

func (NullableUpdateTransformTaskBaseVM) IsSet ¶

func (NullableUpdateTransformTaskBaseVM) MarshalJSON ¶

func (v NullableUpdateTransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateTransformTaskBaseVM) Set ¶

func (*NullableUpdateTransformTaskBaseVM) UnmarshalJSON ¶

func (v *NullableUpdateTransformTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateTransformTaskBaseVM) Unset ¶

type NullableUpdateTransportTaskBaseVM ¶

type NullableUpdateTransportTaskBaseVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateTransportTaskBaseVM) Get ¶

func (NullableUpdateTransportTaskBaseVM) IsSet ¶

func (NullableUpdateTransportTaskBaseVM) MarshalJSON ¶

func (v NullableUpdateTransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateTransportTaskBaseVM) Set ¶

func (*NullableUpdateTransportTaskBaseVM) UnmarshalJSON ¶

func (v *NullableUpdateTransportTaskBaseVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateTransportTaskBaseVM) Unset ¶

type NullableUpdateUserProfileVM ¶

type NullableUpdateUserProfileVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateUserProfileVM) Get ¶

func (NullableUpdateUserProfileVM) IsSet ¶

func (NullableUpdateUserProfileVM) MarshalJSON ¶

func (v NullableUpdateUserProfileVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserProfileVM) Set ¶

func (*NullableUpdateUserProfileVM) UnmarshalJSON ¶

func (v *NullableUpdateUserProfileVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateUserProfileVM) Unset ¶

func (v *NullableUpdateUserProfileVM) Unset()

type NullableUpdateUserSettingsVM ¶

type NullableUpdateUserSettingsVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateUserSettingsVM) Get ¶

func (NullableUpdateUserSettingsVM) IsSet ¶

func (NullableUpdateUserSettingsVM) MarshalJSON ¶

func (v NullableUpdateUserSettingsVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserSettingsVM) Set ¶

func (*NullableUpdateUserSettingsVM) UnmarshalJSON ¶

func (v *NullableUpdateUserSettingsVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateUserSettingsVM) Unset ¶

func (v *NullableUpdateUserSettingsVM) Unset()

type NullableUpdateWebhookTaskVM ¶

type NullableUpdateWebhookTaskVM struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWebhookTaskVM) Get ¶

func (NullableUpdateWebhookTaskVM) IsSet ¶

func (NullableUpdateWebhookTaskVM) MarshalJSON ¶

func (v NullableUpdateWebhookTaskVM) MarshalJSON() ([]byte, error)

func (*NullableUpdateWebhookTaskVM) Set ¶

func (*NullableUpdateWebhookTaskVM) UnmarshalJSON ¶

func (v *NullableUpdateWebhookTaskVM) UnmarshalJSON(src []byte) error

func (*NullableUpdateWebhookTaskVM) Unset ¶

func (v *NullableUpdateWebhookTaskVM) Unset()

type NullableUserProfileVM ¶

type NullableUserProfileVM struct {
	// contains filtered or unexported fields
}

func NewNullableUserProfileVM ¶

func NewNullableUserProfileVM(val *UserProfileVM) *NullableUserProfileVM

func (NullableUserProfileVM) Get ¶

func (NullableUserProfileVM) IsSet ¶

func (v NullableUserProfileVM) IsSet() bool

func (NullableUserProfileVM) MarshalJSON ¶

func (v NullableUserProfileVM) MarshalJSON() ([]byte, error)

func (*NullableUserProfileVM) Set ¶

func (v *NullableUserProfileVM) Set(val *UserProfileVM)

func (*NullableUserProfileVM) UnmarshalJSON ¶

func (v *NullableUserProfileVM) UnmarshalJSON(src []byte) error

func (*NullableUserProfileVM) Unset ¶

func (v *NullableUserProfileVM) Unset()

type NullableUserSettingsVM ¶

type NullableUserSettingsVM struct {
	// contains filtered or unexported fields
}

func NewNullableUserSettingsVM ¶

func NewNullableUserSettingsVM(val *UserSettingsVM) *NullableUserSettingsVM

func (NullableUserSettingsVM) Get ¶

func (NullableUserSettingsVM) IsSet ¶

func (v NullableUserSettingsVM) IsSet() bool

func (NullableUserSettingsVM) MarshalJSON ¶

func (v NullableUserSettingsVM) MarshalJSON() ([]byte, error)

func (*NullableUserSettingsVM) Set ¶

func (*NullableUserSettingsVM) UnmarshalJSON ¶

func (v *NullableUserSettingsVM) UnmarshalJSON(src []byte) error

func (*NullableUserSettingsVM) Unset ¶

func (v *NullableUserSettingsVM) Unset()

type NullableWebhookTaskVM ¶

type NullableWebhookTaskVM struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookTaskVM ¶

func NewNullableWebhookTaskVM(val *WebhookTaskVM) *NullableWebhookTaskVM

func (NullableWebhookTaskVM) Get ¶

func (NullableWebhookTaskVM) IsSet ¶

func (v NullableWebhookTaskVM) IsSet() bool

func (NullableWebhookTaskVM) MarshalJSON ¶

func (v NullableWebhookTaskVM) MarshalJSON() ([]byte, error)

func (*NullableWebhookTaskVM) Set ¶

func (v *NullableWebhookTaskVM) Set(val *WebhookTaskVM)

func (*NullableWebhookTaskVM) UnmarshalJSON ¶

func (v *NullableWebhookTaskVM) UnmarshalJSON(src []byte) error

func (*NullableWebhookTaskVM) Unset ¶

func (v *NullableWebhookTaskVM) Unset()

type OutputFileVM ¶

type OutputFileVM struct {
	FileName    NullableString `json:"fileName,omitempty"`
	FolderId    NullableString `json:"folderId,omitempty"`
	Type        *FileKind      `json:"type,omitempty"`
	IsTemporary *bool          `json:"isTemporary,omitempty"`
}

OutputFileVM struct for OutputFileVM

func NewOutputFileVM ¶

func NewOutputFileVM() *OutputFileVM

NewOutputFileVM instantiates a new OutputFileVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOutputFileVMWithDefaults ¶

func NewOutputFileVMWithDefaults() *OutputFileVM

NewOutputFileVMWithDefaults instantiates a new OutputFileVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OutputFileVM) GetFileName ¶

func (o *OutputFileVM) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OutputFileVM) GetFileNameOk ¶

func (o *OutputFileVM) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OutputFileVM) GetFolderId ¶

func (o *OutputFileVM) GetFolderId() string

GetFolderId returns the FolderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OutputFileVM) GetFolderIdOk ¶

func (o *OutputFileVM) GetFolderIdOk() (*string, bool)

GetFolderIdOk returns a tuple with the FolderId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OutputFileVM) GetIsTemporary ¶

func (o *OutputFileVM) GetIsTemporary() bool

GetIsTemporary returns the IsTemporary field value if set, zero value otherwise.

func (*OutputFileVM) GetIsTemporaryOk ¶

func (o *OutputFileVM) GetIsTemporaryOk() (*bool, bool)

GetIsTemporaryOk returns a tuple with the IsTemporary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OutputFileVM) GetType ¶

func (o *OutputFileVM) GetType() FileKind

GetType returns the Type field value if set, zero value otherwise.

func (*OutputFileVM) GetTypeOk ¶

func (o *OutputFileVM) GetTypeOk() (*FileKind, 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 (*OutputFileVM) HasFileName ¶

func (o *OutputFileVM) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*OutputFileVM) HasFolderId ¶

func (o *OutputFileVM) HasFolderId() bool

HasFolderId returns a boolean if a field has been set.

func (*OutputFileVM) HasIsTemporary ¶

func (o *OutputFileVM) HasIsTemporary() bool

HasIsTemporary returns a boolean if a field has been set.

func (*OutputFileVM) HasType ¶

func (o *OutputFileVM) HasType() bool

HasType returns a boolean if a field has been set.

func (OutputFileVM) MarshalJSON ¶

func (o OutputFileVM) MarshalJSON() ([]byte, error)

func (*OutputFileVM) SetFileName ¶

func (o *OutputFileVM) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*OutputFileVM) SetFileNameNil ¶

func (o *OutputFileVM) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*OutputFileVM) SetFolderId ¶

func (o *OutputFileVM) SetFolderId(v string)

SetFolderId gets a reference to the given NullableString and assigns it to the FolderId field.

func (*OutputFileVM) SetFolderIdNil ¶

func (o *OutputFileVM) SetFolderIdNil()

SetFolderIdNil sets the value for FolderId to be an explicit nil

func (*OutputFileVM) SetIsTemporary ¶

func (o *OutputFileVM) SetIsTemporary(v bool)

SetIsTemporary gets a reference to the given bool and assigns it to the IsTemporary field.

func (*OutputFileVM) SetType ¶

func (o *OutputFileVM) SetType(v FileKind)

SetType gets a reference to the given FileKind and assigns it to the Type field.

func (OutputFileVM) ToMap ¶

func (o OutputFileVM) ToMap() (map[string]interface{}, error)

func (*OutputFileVM) UnsetFileName ¶

func (o *OutputFileVM) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*OutputFileVM) UnsetFolderId ¶

func (o *OutputFileVM) UnsetFolderId()

UnsetFolderId ensures that no value is present for FolderId, not even an explicit nil

type PrepareTemplateTaskVM ¶

type PrepareTemplateTaskVM struct {
	ExportIds        []string          `json:"exportIds,omitempty"`
	PagesCount       *int32            `json:"pagesCount,omitempty"`
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

PrepareTemplateTaskVM struct for PrepareTemplateTaskVM

func NewPrepareTemplateTaskVM ¶

func NewPrepareTemplateTaskVM(t string) *PrepareTemplateTaskVM

NewPrepareTemplateTaskVM instantiates a new PrepareTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPrepareTemplateTaskVMWithDefaults ¶

func NewPrepareTemplateTaskVMWithDefaults() *PrepareTemplateTaskVM

NewPrepareTemplateTaskVMWithDefaults instantiates a new PrepareTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PrepareTemplateTaskVM) GetExportIds ¶

func (o *PrepareTemplateTaskVM) GetExportIds() []string

GetExportIds returns the ExportIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateTaskVM) GetExportIdsOk ¶

func (o *PrepareTemplateTaskVM) GetExportIdsOk() ([]string, bool)

GetExportIdsOk returns a tuple with the ExportIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateTaskVM) GetPagesCount ¶

func (o *PrepareTemplateTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise.

func (*PrepareTemplateTaskVM) GetPagesCountOk ¶

func (o *PrepareTemplateTaskVM) GetPagesCountOk() (*int32, bool)

GetPagesCountOk returns a tuple with the PagesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrepareTemplateTaskVM) GetReportParameters ¶

func (o *PrepareTemplateTaskVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateTaskVM) GetReportParametersOk ¶

func (o *PrepareTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateTaskVM) HasExportIds ¶

func (o *PrepareTemplateTaskVM) HasExportIds() bool

HasExportIds returns a boolean if a field has been set.

func (*PrepareTemplateTaskVM) HasPagesCount ¶

func (o *PrepareTemplateTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (*PrepareTemplateTaskVM) HasReportParameters ¶

func (o *PrepareTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (PrepareTemplateTaskVM) MarshalJSON ¶

func (o PrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*PrepareTemplateTaskVM) SetExportIds ¶

func (o *PrepareTemplateTaskVM) SetExportIds(v []string)

SetExportIds gets a reference to the given []string and assigns it to the ExportIds field.

func (*PrepareTemplateTaskVM) SetPagesCount ¶

func (o *PrepareTemplateTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given int32 and assigns it to the PagesCount field.

func (*PrepareTemplateTaskVM) SetReportParameters ¶

func (o *PrepareTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (PrepareTemplateTaskVM) ToMap ¶

func (o PrepareTemplateTaskVM) ToMap() (map[string]interface{}, error)

type PrepareTemplateVM ¶

type PrepareTemplateVM struct {
	Name             NullableString    `json:"name,omitempty"`
	Locale           NullableString    `json:"locale,omitempty"`
	FolderId         NullableString    `json:"folderId,omitempty"`
	PagesCount       NullableInt32     `json:"pagesCount,omitempty"`
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

PrepareTemplateVM struct for PrepareTemplateVM

func NewPrepareTemplateVM ¶

func NewPrepareTemplateVM() *PrepareTemplateVM

NewPrepareTemplateVM instantiates a new PrepareTemplateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPrepareTemplateVMWithDefaults ¶

func NewPrepareTemplateVMWithDefaults() *PrepareTemplateVM

NewPrepareTemplateVMWithDefaults instantiates a new PrepareTemplateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PrepareTemplateVM) GetFolderId ¶

func (o *PrepareTemplateVM) GetFolderId() string

GetFolderId returns the FolderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateVM) GetFolderIdOk ¶

func (o *PrepareTemplateVM) GetFolderIdOk() (*string, bool)

GetFolderIdOk returns a tuple with the FolderId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateVM) GetLocale ¶

func (o *PrepareTemplateVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateVM) GetLocaleOk ¶

func (o *PrepareTemplateVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateVM) GetName ¶

func (o *PrepareTemplateVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateVM) GetNameOk ¶

func (o *PrepareTemplateVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateVM) GetPagesCount ¶

func (o *PrepareTemplateVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateVM) GetPagesCountOk ¶

func (o *PrepareTemplateVM) GetPagesCountOk() (*int32, bool)

GetPagesCountOk returns a tuple with the PagesCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateVM) GetReportParameters ¶

func (o *PrepareTemplateVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PrepareTemplateVM) GetReportParametersOk ¶

func (o *PrepareTemplateVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PrepareTemplateVM) HasFolderId ¶

func (o *PrepareTemplateVM) HasFolderId() bool

HasFolderId returns a boolean if a field has been set.

func (*PrepareTemplateVM) HasLocale ¶

func (o *PrepareTemplateVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*PrepareTemplateVM) HasName ¶

func (o *PrepareTemplateVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*PrepareTemplateVM) HasPagesCount ¶

func (o *PrepareTemplateVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (*PrepareTemplateVM) HasReportParameters ¶

func (o *PrepareTemplateVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (PrepareTemplateVM) MarshalJSON ¶

func (o PrepareTemplateVM) MarshalJSON() ([]byte, error)

func (*PrepareTemplateVM) SetFolderId ¶

func (o *PrepareTemplateVM) SetFolderId(v string)

SetFolderId gets a reference to the given NullableString and assigns it to the FolderId field.

func (*PrepareTemplateVM) SetFolderIdNil ¶

func (o *PrepareTemplateVM) SetFolderIdNil()

SetFolderIdNil sets the value for FolderId to be an explicit nil

func (*PrepareTemplateVM) SetLocale ¶

func (o *PrepareTemplateVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*PrepareTemplateVM) SetLocaleNil ¶

func (o *PrepareTemplateVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*PrepareTemplateVM) SetName ¶

func (o *PrepareTemplateVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*PrepareTemplateVM) SetNameNil ¶

func (o *PrepareTemplateVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*PrepareTemplateVM) SetPagesCount ¶

func (o *PrepareTemplateVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given NullableInt32 and assigns it to the PagesCount field.

func (*PrepareTemplateVM) SetPagesCountNil ¶

func (o *PrepareTemplateVM) SetPagesCountNil()

SetPagesCountNil sets the value for PagesCount to be an explicit nil

func (*PrepareTemplateVM) SetReportParameters ¶

func (o *PrepareTemplateVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (PrepareTemplateVM) ToMap ¶

func (o PrepareTemplateVM) ToMap() (map[string]interface{}, error)

func (*PrepareTemplateVM) UnsetFolderId ¶

func (o *PrepareTemplateVM) UnsetFolderId()

UnsetFolderId ensures that no value is present for FolderId, not even an explicit nil

func (*PrepareTemplateVM) UnsetLocale ¶

func (o *PrepareTemplateVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

func (*PrepareTemplateVM) UnsetName ¶

func (o *PrepareTemplateVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*PrepareTemplateVM) UnsetPagesCount ¶

func (o *PrepareTemplateVM) UnsetPagesCount()

UnsetPagesCount ensures that no value is present for PagesCount, not even an explicit nil

type PreviewReportVM ¶

type PreviewReportVM struct {
	Locale         NullableString `json:"locale,omitempty"`
	CacheTolerance *float64       `json:"cacheTolerance,omitempty"`
}

PreviewReportVM struct for PreviewReportVM

func NewPreviewReportVM ¶

func NewPreviewReportVM() *PreviewReportVM

NewPreviewReportVM instantiates a new PreviewReportVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewReportVMWithDefaults ¶

func NewPreviewReportVMWithDefaults() *PreviewReportVM

NewPreviewReportVMWithDefaults instantiates a new PreviewReportVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewReportVM) GetCacheTolerance ¶

func (o *PreviewReportVM) GetCacheTolerance() float64

GetCacheTolerance returns the CacheTolerance field value if set, zero value otherwise.

func (*PreviewReportVM) GetCacheToleranceOk ¶

func (o *PreviewReportVM) GetCacheToleranceOk() (*float64, bool)

GetCacheToleranceOk returns a tuple with the CacheTolerance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewReportVM) GetLocale ¶

func (o *PreviewReportVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PreviewReportVM) GetLocaleOk ¶

func (o *PreviewReportVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PreviewReportVM) HasCacheTolerance ¶

func (o *PreviewReportVM) HasCacheTolerance() bool

HasCacheTolerance returns a boolean if a field has been set.

func (*PreviewReportVM) HasLocale ¶

func (o *PreviewReportVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (PreviewReportVM) MarshalJSON ¶

func (o PreviewReportVM) MarshalJSON() ([]byte, error)

func (*PreviewReportVM) SetCacheTolerance ¶

func (o *PreviewReportVM) SetCacheTolerance(v float64)

SetCacheTolerance gets a reference to the given float64 and assigns it to the CacheTolerance field.

func (*PreviewReportVM) SetLocale ¶

func (o *PreviewReportVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*PreviewReportVM) SetLocaleNil ¶

func (o *PreviewReportVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (PreviewReportVM) ToMap ¶

func (o PreviewReportVM) ToMap() (map[string]interface{}, error)

func (*PreviewReportVM) UnsetLocale ¶

func (o *PreviewReportVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

type PreviewTemplateVM ¶

type PreviewTemplateVM struct {
	Locale           NullableString    `json:"locale,omitempty"`
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
	CacheTolerance   *float64          `json:"cacheTolerance,omitempty"`
}

PreviewTemplateVM struct for PreviewTemplateVM

func NewPreviewTemplateVM ¶

func NewPreviewTemplateVM() *PreviewTemplateVM

NewPreviewTemplateVM instantiates a new PreviewTemplateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewTemplateVMWithDefaults ¶

func NewPreviewTemplateVMWithDefaults() *PreviewTemplateVM

NewPreviewTemplateVMWithDefaults instantiates a new PreviewTemplateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewTemplateVM) GetCacheTolerance ¶

func (o *PreviewTemplateVM) GetCacheTolerance() float64

GetCacheTolerance returns the CacheTolerance field value if set, zero value otherwise.

func (*PreviewTemplateVM) GetCacheToleranceOk ¶

func (o *PreviewTemplateVM) GetCacheToleranceOk() (*float64, bool)

GetCacheToleranceOk returns a tuple with the CacheTolerance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewTemplateVM) GetLocale ¶

func (o *PreviewTemplateVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PreviewTemplateVM) GetLocaleOk ¶

func (o *PreviewTemplateVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PreviewTemplateVM) GetReportParameters ¶

func (o *PreviewTemplateVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PreviewTemplateVM) GetReportParametersOk ¶

func (o *PreviewTemplateVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PreviewTemplateVM) HasCacheTolerance ¶

func (o *PreviewTemplateVM) HasCacheTolerance() bool

HasCacheTolerance returns a boolean if a field has been set.

func (*PreviewTemplateVM) HasLocale ¶

func (o *PreviewTemplateVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*PreviewTemplateVM) HasReportParameters ¶

func (o *PreviewTemplateVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (PreviewTemplateVM) MarshalJSON ¶

func (o PreviewTemplateVM) MarshalJSON() ([]byte, error)

func (*PreviewTemplateVM) SetCacheTolerance ¶

func (o *PreviewTemplateVM) SetCacheTolerance(v float64)

SetCacheTolerance gets a reference to the given float64 and assigns it to the CacheTolerance field.

func (*PreviewTemplateVM) SetLocale ¶

func (o *PreviewTemplateVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*PreviewTemplateVM) SetLocaleNil ¶

func (o *PreviewTemplateVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*PreviewTemplateVM) SetReportParameters ¶

func (o *PreviewTemplateVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (PreviewTemplateVM) ToMap ¶

func (o PreviewTemplateVM) ToMap() (map[string]interface{}, error)

func (*PreviewTemplateVM) UnsetLocale ¶

func (o *PreviewTemplateVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

type ProblemDetails ¶

type ProblemDetails struct {
	Type     NullableString `json:"type,omitempty"`
	Title    NullableString `json:"title,omitempty"`
	Status   NullableInt32  `json:"status,omitempty"`
	Detail   NullableString `json:"detail,omitempty"`
	Instance NullableString `json:"instance,omitempty"`
}

ProblemDetails struct for ProblemDetails

func NewProblemDetails ¶

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsWithDefaults ¶

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetails) GetDetail ¶

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetDetailOk ¶

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetInstance ¶

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetInstanceOk ¶

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetStatus ¶

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetStatusOk ¶

func (o *ProblemDetails) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetTitle ¶

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetTitleOk ¶

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) GetType ¶

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProblemDetails) GetTypeOk ¶

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProblemDetails) HasDetail ¶

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance ¶

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus ¶

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle ¶

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType ¶

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON ¶

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetDetail ¶

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*ProblemDetails) SetDetailNil ¶

func (o *ProblemDetails) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*ProblemDetails) SetInstance ¶

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given NullableString and assigns it to the Instance field.

func (*ProblemDetails) SetInstanceNil ¶

func (o *ProblemDetails) SetInstanceNil()

SetInstanceNil sets the value for Instance to be an explicit nil

func (*ProblemDetails) SetStatus ¶

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given NullableInt32 and assigns it to the Status field.

func (*ProblemDetails) SetStatusNil ¶

func (o *ProblemDetails) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ProblemDetails) SetTitle ¶

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*ProblemDetails) SetTitleNil ¶

func (o *ProblemDetails) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ProblemDetails) SetType ¶

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*ProblemDetails) SetTypeNil ¶

func (o *ProblemDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ProblemDetails) ToMap ¶

func (o ProblemDetails) ToMap() (map[string]interface{}, error)

func (*ProblemDetails) UnsetDetail ¶

func (o *ProblemDetails) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*ProblemDetails) UnsetInstance ¶

func (o *ProblemDetails) UnsetInstance()

UnsetInstance ensures that no value is present for Instance, not even an explicit nil

func (*ProblemDetails) UnsetStatus ¶

func (o *ProblemDetails) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*ProblemDetails) UnsetTitle ¶

func (o *ProblemDetails) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ProblemDetails) UnsetType ¶

func (o *ProblemDetails) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ProfileVisibility ¶

type ProfileVisibility int32

ProfileVisibility the model 'ProfileVisibility'

func NewProfileVisibilityFromValue ¶

func NewProfileVisibilityFromValue(v int32) (*ProfileVisibility, error)

NewProfileVisibilityFromValue returns a pointer to a valid ProfileVisibility for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProfileVisibility) IsValid ¶

func (v ProfileVisibility) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProfileVisibility) Ptr ¶

Ptr returns reference to ProfileVisibility value

func (*ProfileVisibility) UnmarshalJSON ¶

func (v *ProfileVisibility) UnmarshalJSON(src []byte) error

type RenameDataSourceVM ¶

type RenameDataSourceVM struct {
	Name string `json:"name"`
}

RenameDataSourceVM struct for RenameDataSourceVM

func NewRenameDataSourceVM ¶

func NewRenameDataSourceVM(name string) *RenameDataSourceVM

NewRenameDataSourceVM instantiates a new RenameDataSourceVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRenameDataSourceVMWithDefaults ¶

func NewRenameDataSourceVMWithDefaults() *RenameDataSourceVM

NewRenameDataSourceVMWithDefaults instantiates a new RenameDataSourceVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RenameDataSourceVM) GetName ¶

func (o *RenameDataSourceVM) GetName() string

GetName returns the Name field value

func (*RenameDataSourceVM) GetNameOk ¶

func (o *RenameDataSourceVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (RenameDataSourceVM) MarshalJSON ¶

func (o RenameDataSourceVM) MarshalJSON() ([]byte, error)

func (*RenameDataSourceVM) SetName ¶

func (o *RenameDataSourceVM) SetName(v string)

SetName sets field value

func (RenameDataSourceVM) ToMap ¶

func (o RenameDataSourceVM) ToMap() (map[string]interface{}, error)

type RenameGroupVM ¶

type RenameGroupVM struct {
	Name string `json:"name"`
}

RenameGroupVM struct for RenameGroupVM

func NewRenameGroupVM ¶

func NewRenameGroupVM(name string) *RenameGroupVM

NewRenameGroupVM instantiates a new RenameGroupVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRenameGroupVMWithDefaults ¶

func NewRenameGroupVMWithDefaults() *RenameGroupVM

NewRenameGroupVMWithDefaults instantiates a new RenameGroupVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RenameGroupVM) GetName ¶

func (o *RenameGroupVM) GetName() string

GetName returns the Name field value

func (*RenameGroupVM) GetNameOk ¶

func (o *RenameGroupVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (RenameGroupVM) MarshalJSON ¶

func (o RenameGroupVM) MarshalJSON() ([]byte, error)

func (*RenameGroupVM) SetName ¶

func (o *RenameGroupVM) SetName(v string)

SetName sets field value

func (RenameGroupVM) ToMap ¶

func (o RenameGroupVM) ToMap() (map[string]interface{}, error)

type RenameSubscriptionVM ¶

type RenameSubscriptionVM struct {
	Name string `json:"name"`
}

RenameSubscriptionVM struct for RenameSubscriptionVM

func NewRenameSubscriptionVM ¶

func NewRenameSubscriptionVM(name string) *RenameSubscriptionVM

NewRenameSubscriptionVM instantiates a new RenameSubscriptionVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRenameSubscriptionVMWithDefaults ¶

func NewRenameSubscriptionVMWithDefaults() *RenameSubscriptionVM

NewRenameSubscriptionVMWithDefaults instantiates a new RenameSubscriptionVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RenameSubscriptionVM) GetName ¶

func (o *RenameSubscriptionVM) GetName() string

GetName returns the Name field value

func (*RenameSubscriptionVM) GetNameOk ¶

func (o *RenameSubscriptionVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (RenameSubscriptionVM) MarshalJSON ¶

func (o RenameSubscriptionVM) MarshalJSON() ([]byte, error)

func (*RenameSubscriptionVM) SetName ¶

func (o *RenameSubscriptionVM) SetName(v string)

SetName sets field value

func (RenameSubscriptionVM) ToMap ¶

func (o RenameSubscriptionVM) ToMap() (map[string]interface{}, error)

type ReportCreateAdminVM ¶

type ReportCreateAdminVM struct {
	OwnerId  string `json:"ownerId"`
	ParentId string `json:"parentId"`
}

ReportCreateAdminVM struct for ReportCreateAdminVM

func NewReportCreateAdminVM ¶

func NewReportCreateAdminVM(ownerId string, parentId string) *ReportCreateAdminVM

NewReportCreateAdminVM instantiates a new ReportCreateAdminVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportCreateAdminVMWithDefaults ¶

func NewReportCreateAdminVMWithDefaults() *ReportCreateAdminVM

NewReportCreateAdminVMWithDefaults instantiates a new ReportCreateAdminVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportCreateAdminVM) GetOwnerId ¶

func (o *ReportCreateAdminVM) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*ReportCreateAdminVM) GetOwnerIdOk ¶

func (o *ReportCreateAdminVM) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value and a boolean to check if the value has been set.

func (*ReportCreateAdminVM) GetParentId ¶

func (o *ReportCreateAdminVM) GetParentId() string

GetParentId returns the ParentId field value

func (*ReportCreateAdminVM) GetParentIdOk ¶

func (o *ReportCreateAdminVM) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value and a boolean to check if the value has been set.

func (ReportCreateAdminVM) MarshalJSON ¶

func (o ReportCreateAdminVM) MarshalJSON() ([]byte, error)

func (*ReportCreateAdminVM) SetOwnerId ¶

func (o *ReportCreateAdminVM) SetOwnerId(v string)

SetOwnerId sets field value

func (*ReportCreateAdminVM) SetParentId ¶

func (o *ReportCreateAdminVM) SetParentId(v string)

SetParentId sets field value

func (ReportCreateAdminVM) ToMap ¶

func (o ReportCreateAdminVM) ToMap() (map[string]interface{}, error)

type ReportCreateVM ¶

type ReportCreateVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
}

ReportCreateVM struct for ReportCreateVM

func NewReportCreateVM ¶

func NewReportCreateVM() *ReportCreateVM

NewReportCreateVM instantiates a new ReportCreateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportCreateVMWithDefaults ¶

func NewReportCreateVMWithDefaults() *ReportCreateVM

NewReportCreateVMWithDefaults instantiates a new ReportCreateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportCreateVM) GetTemplateId ¶

func (o *ReportCreateVM) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportCreateVM) GetTemplateIdOk ¶

func (o *ReportCreateVM) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportCreateVM) HasTemplateId ¶

func (o *ReportCreateVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (ReportCreateVM) MarshalJSON ¶

func (o ReportCreateVM) MarshalJSON() ([]byte, error)

func (*ReportCreateVM) SetTemplateId ¶

func (o *ReportCreateVM) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*ReportCreateVM) SetTemplateIdNil ¶

func (o *ReportCreateVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (ReportCreateVM) ToMap ¶

func (o ReportCreateVM) ToMap() (map[string]interface{}, error)

func (*ReportCreateVM) UnsetTemplateId ¶

func (o *ReportCreateVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type ReportFolderCreateVM ¶

type ReportFolderCreateVM struct {
}

ReportFolderCreateVM struct for ReportFolderCreateVM

func NewReportFolderCreateVM ¶

func NewReportFolderCreateVM() *ReportFolderCreateVM

NewReportFolderCreateVM instantiates a new ReportFolderCreateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportFolderCreateVMWithDefaults ¶

func NewReportFolderCreateVMWithDefaults() *ReportFolderCreateVM

NewReportFolderCreateVMWithDefaults instantiates a new ReportFolderCreateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (ReportFolderCreateVM) MarshalJSON ¶

func (o ReportFolderCreateVM) MarshalJSON() ([]byte, error)

func (ReportFolderCreateVM) ToMap ¶

func (o ReportFolderCreateVM) ToMap() (map[string]interface{}, error)

type ReportInfo ¶

type ReportInfo struct {
	Author              NullableString `json:"author,omitempty"`
	Created             *time.Time     `json:"created,omitempty"`
	CreatorVersion      NullableString `json:"creatorVersion,omitempty"`
	Description         NullableString `json:"description,omitempty"`
	Modified            *time.Time     `json:"modified,omitempty"`
	Name                NullableString `json:"name,omitempty"`
	Picture             NullableString `json:"picture,omitempty"`
	PreviewPictureRatio *float32       `json:"previewPictureRatio,omitempty"`
	SaveMode            *SaveMode      `json:"saveMode,omitempty"`
	SavePreviewPicture  *bool          `json:"savePreviewPicture,omitempty"`
	Tag                 NullableString `json:"tag,omitempty"`
	Version             NullableString `json:"version,omitempty"`
}

ReportInfo struct for ReportInfo

func NewReportInfo ¶

func NewReportInfo() *ReportInfo

NewReportInfo instantiates a new ReportInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportInfoWithDefaults ¶

func NewReportInfoWithDefaults() *ReportInfo

NewReportInfoWithDefaults instantiates a new ReportInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportInfo) GetAuthor ¶

func (o *ReportInfo) GetAuthor() string

GetAuthor returns the Author field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetAuthorOk ¶

func (o *ReportInfo) GetAuthorOk() (*string, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) GetCreated ¶

func (o *ReportInfo) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*ReportInfo) GetCreatedOk ¶

func (o *ReportInfo) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportInfo) GetCreatorVersion ¶

func (o *ReportInfo) GetCreatorVersion() string

GetCreatorVersion returns the CreatorVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetCreatorVersionOk ¶

func (o *ReportInfo) GetCreatorVersionOk() (*string, bool)

GetCreatorVersionOk returns a tuple with the CreatorVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) GetDescription ¶

func (o *ReportInfo) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetDescriptionOk ¶

func (o *ReportInfo) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) GetModified ¶

func (o *ReportInfo) GetModified() time.Time

GetModified returns the Modified field value if set, zero value otherwise.

func (*ReportInfo) GetModifiedOk ¶

func (o *ReportInfo) GetModifiedOk() (*time.Time, bool)

GetModifiedOk returns a tuple with the Modified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportInfo) GetName ¶

func (o *ReportInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetNameOk ¶

func (o *ReportInfo) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) GetPicture ¶

func (o *ReportInfo) GetPicture() string

GetPicture returns the Picture field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetPictureOk ¶

func (o *ReportInfo) GetPictureOk() (*string, bool)

GetPictureOk returns a tuple with the Picture field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) GetPreviewPictureRatio ¶

func (o *ReportInfo) GetPreviewPictureRatio() float32

GetPreviewPictureRatio returns the PreviewPictureRatio field value if set, zero value otherwise.

func (*ReportInfo) GetPreviewPictureRatioOk ¶

func (o *ReportInfo) GetPreviewPictureRatioOk() (*float32, bool)

GetPreviewPictureRatioOk returns a tuple with the PreviewPictureRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportInfo) GetSaveMode ¶

func (o *ReportInfo) GetSaveMode() SaveMode

GetSaveMode returns the SaveMode field value if set, zero value otherwise.

func (*ReportInfo) GetSaveModeOk ¶

func (o *ReportInfo) GetSaveModeOk() (*SaveMode, bool)

GetSaveModeOk returns a tuple with the SaveMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportInfo) GetSavePreviewPicture ¶

func (o *ReportInfo) GetSavePreviewPicture() bool

GetSavePreviewPicture returns the SavePreviewPicture field value if set, zero value otherwise.

func (*ReportInfo) GetSavePreviewPictureOk ¶

func (o *ReportInfo) GetSavePreviewPictureOk() (*bool, bool)

GetSavePreviewPictureOk returns a tuple with the SavePreviewPicture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportInfo) GetTag ¶

func (o *ReportInfo) GetTag() string

GetTag returns the Tag field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetTagOk ¶

func (o *ReportInfo) GetTagOk() (*string, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) GetVersion ¶

func (o *ReportInfo) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportInfo) GetVersionOk ¶

func (o *ReportInfo) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportInfo) HasAuthor ¶

func (o *ReportInfo) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ReportInfo) HasCreated ¶

func (o *ReportInfo) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*ReportInfo) HasCreatorVersion ¶

func (o *ReportInfo) HasCreatorVersion() bool

HasCreatorVersion returns a boolean if a field has been set.

func (*ReportInfo) HasDescription ¶

func (o *ReportInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReportInfo) HasModified ¶

func (o *ReportInfo) HasModified() bool

HasModified returns a boolean if a field has been set.

func (*ReportInfo) HasName ¶

func (o *ReportInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReportInfo) HasPicture ¶

func (o *ReportInfo) HasPicture() bool

HasPicture returns a boolean if a field has been set.

func (*ReportInfo) HasPreviewPictureRatio ¶

func (o *ReportInfo) HasPreviewPictureRatio() bool

HasPreviewPictureRatio returns a boolean if a field has been set.

func (*ReportInfo) HasSaveMode ¶

func (o *ReportInfo) HasSaveMode() bool

HasSaveMode returns a boolean if a field has been set.

func (*ReportInfo) HasSavePreviewPicture ¶

func (o *ReportInfo) HasSavePreviewPicture() bool

HasSavePreviewPicture returns a boolean if a field has been set.

func (*ReportInfo) HasTag ¶

func (o *ReportInfo) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*ReportInfo) HasVersion ¶

func (o *ReportInfo) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ReportInfo) MarshalJSON ¶

func (o ReportInfo) MarshalJSON() ([]byte, error)

func (*ReportInfo) SetAuthor ¶

func (o *ReportInfo) SetAuthor(v string)

SetAuthor gets a reference to the given NullableString and assigns it to the Author field.

func (*ReportInfo) SetAuthorNil ¶

func (o *ReportInfo) SetAuthorNil()

SetAuthorNil sets the value for Author to be an explicit nil

func (*ReportInfo) SetCreated ¶

func (o *ReportInfo) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*ReportInfo) SetCreatorVersion ¶

func (o *ReportInfo) SetCreatorVersion(v string)

SetCreatorVersion gets a reference to the given NullableString and assigns it to the CreatorVersion field.

func (*ReportInfo) SetCreatorVersionNil ¶

func (o *ReportInfo) SetCreatorVersionNil()

SetCreatorVersionNil sets the value for CreatorVersion to be an explicit nil

func (*ReportInfo) SetDescription ¶

func (o *ReportInfo) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*ReportInfo) SetDescriptionNil ¶

func (o *ReportInfo) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ReportInfo) SetModified ¶

func (o *ReportInfo) SetModified(v time.Time)

SetModified gets a reference to the given time.Time and assigns it to the Modified field.

func (*ReportInfo) SetName ¶

func (o *ReportInfo) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*ReportInfo) SetNameNil ¶

func (o *ReportInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ReportInfo) SetPicture ¶

func (o *ReportInfo) SetPicture(v string)

SetPicture gets a reference to the given NullableString and assigns it to the Picture field.

func (*ReportInfo) SetPictureNil ¶

func (o *ReportInfo) SetPictureNil()

SetPictureNil sets the value for Picture to be an explicit nil

func (*ReportInfo) SetPreviewPictureRatio ¶

func (o *ReportInfo) SetPreviewPictureRatio(v float32)

SetPreviewPictureRatio gets a reference to the given float32 and assigns it to the PreviewPictureRatio field.

func (*ReportInfo) SetSaveMode ¶

func (o *ReportInfo) SetSaveMode(v SaveMode)

SetSaveMode gets a reference to the given SaveMode and assigns it to the SaveMode field.

func (*ReportInfo) SetSavePreviewPicture ¶

func (o *ReportInfo) SetSavePreviewPicture(v bool)

SetSavePreviewPicture gets a reference to the given bool and assigns it to the SavePreviewPicture field.

func (*ReportInfo) SetTag ¶

func (o *ReportInfo) SetTag(v string)

SetTag gets a reference to the given NullableString and assigns it to the Tag field.

func (*ReportInfo) SetTagNil ¶

func (o *ReportInfo) SetTagNil()

SetTagNil sets the value for Tag to be an explicit nil

func (*ReportInfo) SetVersion ¶

func (o *ReportInfo) SetVersion(v string)

SetVersion gets a reference to the given NullableString and assigns it to the Version field.

func (*ReportInfo) SetVersionNil ¶

func (o *ReportInfo) SetVersionNil()

SetVersionNil sets the value for Version to be an explicit nil

func (ReportInfo) ToMap ¶

func (o ReportInfo) ToMap() (map[string]interface{}, error)

func (*ReportInfo) UnsetAuthor ¶

func (o *ReportInfo) UnsetAuthor()

UnsetAuthor ensures that no value is present for Author, not even an explicit nil

func (*ReportInfo) UnsetCreatorVersion ¶

func (o *ReportInfo) UnsetCreatorVersion()

UnsetCreatorVersion ensures that no value is present for CreatorVersion, not even an explicit nil

func (*ReportInfo) UnsetDescription ¶

func (o *ReportInfo) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ReportInfo) UnsetName ¶

func (o *ReportInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ReportInfo) UnsetPicture ¶

func (o *ReportInfo) UnsetPicture()

UnsetPicture ensures that no value is present for Picture, not even an explicit nil

func (*ReportInfo) UnsetTag ¶

func (o *ReportInfo) UnsetTag()

UnsetTag ensures that no value is present for Tag, not even an explicit nil

func (*ReportInfo) UnsetVersion ¶

func (o *ReportInfo) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

type ReportVM ¶

type ReportVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
	ReportInfo *ReportInfo    `json:"reportInfo,omitempty"`
}

ReportVM struct for ReportVM

func NewReportVM ¶

func NewReportVM() *ReportVM

NewReportVM instantiates a new ReportVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportVMWithDefaults ¶

func NewReportVMWithDefaults() *ReportVM

NewReportVMWithDefaults instantiates a new ReportVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportVM) GetReportInfo ¶

func (o *ReportVM) GetReportInfo() ReportInfo

GetReportInfo returns the ReportInfo field value if set, zero value otherwise.

func (*ReportVM) GetReportInfoOk ¶

func (o *ReportVM) GetReportInfoOk() (*ReportInfo, bool)

GetReportInfoOk returns a tuple with the ReportInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportVM) GetTemplateId ¶

func (o *ReportVM) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportVM) GetTemplateIdOk ¶

func (o *ReportVM) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportVM) HasReportInfo ¶

func (o *ReportVM) HasReportInfo() bool

HasReportInfo returns a boolean if a field has been set.

func (*ReportVM) HasTemplateId ¶

func (o *ReportVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (ReportVM) MarshalJSON ¶

func (o ReportVM) MarshalJSON() ([]byte, error)

func (*ReportVM) SetReportInfo ¶

func (o *ReportVM) SetReportInfo(v ReportInfo)

SetReportInfo gets a reference to the given ReportInfo and assigns it to the ReportInfo field.

func (*ReportVM) SetTemplateId ¶

func (o *ReportVM) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*ReportVM) SetTemplateIdNil ¶

func (o *ReportVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (ReportVM) ToMap ¶

func (o ReportVM) ToMap() (map[string]interface{}, error)

func (*ReportVM) UnsetTemplateId ¶

func (o *ReportVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type ReportVMFilesVMBase ¶

type ReportVMFilesVMBase struct {
	Files []ReportVM `json:"files,omitempty"`
	Count *int64     `json:"count,omitempty"`
	Skip  *int32     `json:"skip,omitempty"`
	Take  *int32     `json:"take,omitempty"`
}

ReportVMFilesVMBase struct for ReportVMFilesVMBase

func NewReportVMFilesVMBase ¶

func NewReportVMFilesVMBase() *ReportVMFilesVMBase

NewReportVMFilesVMBase instantiates a new ReportVMFilesVMBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportVMFilesVMBaseWithDefaults ¶

func NewReportVMFilesVMBaseWithDefaults() *ReportVMFilesVMBase

NewReportVMFilesVMBaseWithDefaults instantiates a new ReportVMFilesVMBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportVMFilesVMBase) GetCount ¶

func (o *ReportVMFilesVMBase) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ReportVMFilesVMBase) GetCountOk ¶

func (o *ReportVMFilesVMBase) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportVMFilesVMBase) GetFiles ¶

func (o *ReportVMFilesVMBase) GetFiles() []ReportVM

GetFiles returns the Files field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReportVMFilesVMBase) GetFilesOk ¶

func (o *ReportVMFilesVMBase) GetFilesOk() ([]ReportVM, bool)

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReportVMFilesVMBase) GetSkip ¶

func (o *ReportVMFilesVMBase) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*ReportVMFilesVMBase) GetSkipOk ¶

func (o *ReportVMFilesVMBase) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportVMFilesVMBase) GetTake ¶

func (o *ReportVMFilesVMBase) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*ReportVMFilesVMBase) GetTakeOk ¶

func (o *ReportVMFilesVMBase) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportVMFilesVMBase) HasCount ¶

func (o *ReportVMFilesVMBase) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ReportVMFilesVMBase) HasFiles ¶

func (o *ReportVMFilesVMBase) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*ReportVMFilesVMBase) HasSkip ¶

func (o *ReportVMFilesVMBase) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*ReportVMFilesVMBase) HasTake ¶

func (o *ReportVMFilesVMBase) HasTake() bool

HasTake returns a boolean if a field has been set.

func (ReportVMFilesVMBase) MarshalJSON ¶

func (o ReportVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*ReportVMFilesVMBase) SetCount ¶

func (o *ReportVMFilesVMBase) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ReportVMFilesVMBase) SetFiles ¶

func (o *ReportVMFilesVMBase) SetFiles(v []ReportVM)

SetFiles gets a reference to the given []ReportVM and assigns it to the Files field.

func (*ReportVMFilesVMBase) SetSkip ¶

func (o *ReportVMFilesVMBase) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*ReportVMFilesVMBase) SetTake ¶

func (o *ReportVMFilesVMBase) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (ReportVMFilesVMBase) ToMap ¶

func (o ReportVMFilesVMBase) ToMap() (map[string]interface{}, error)

type ReportsApiService ¶

type ReportsApiService service

ReportsApiService ReportsApi service

func (*ReportsApiService) ReportFolderAndFileClearRecycleBin ¶

func (a *ReportsApiService) ReportFolderAndFileClearRecycleBin(ctx context.Context, subscriptionId string) ApiReportFolderAndFileClearRecycleBinRequest

ReportFolderAndFileClearRecycleBin Delete all folders and files from recycle bin

User with a Delete RecycleBin permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscription id
@return ApiReportFolderAndFileClearRecycleBinRequest

func (*ReportsApiService) ReportFolderAndFileClearRecycleBinExecute ¶

func (a *ReportsApiService) ReportFolderAndFileClearRecycleBinExecute(r ApiReportFolderAndFileClearRecycleBinRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFolderAndFileDeleteFiles ¶

func (a *ReportsApiService) ReportFolderAndFileDeleteFiles(ctx context.Context, subscriptionId string) ApiReportFolderAndFileDeleteFilesRequest

ReportFolderAndFileDeleteFiles Delete folders and files

User with a Delete permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id of current subscription
@return ApiReportFolderAndFileDeleteFilesRequest

func (*ReportsApiService) ReportFolderAndFileDeleteFilesExecute ¶

func (a *ReportsApiService) ReportFolderAndFileDeleteFilesExecute(r ApiReportFolderAndFileDeleteFilesRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFolderAndFileGetCount ¶

func (a *ReportsApiService) ReportFolderAndFileGetCount(ctx context.Context, id string) ApiReportFolderAndFileGetCountRequest

ReportFolderAndFileGetCount Get count of files and folders what contains in a specified folder

User with a Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFolderAndFileGetCountRequest

func (*ReportsApiService) ReportFolderAndFileGetCountExecute ¶

func (a *ReportsApiService) ReportFolderAndFileGetCountExecute(r ApiReportFolderAndFileGetCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*ReportsApiService) ReportFolderAndFileGetFoldersAndFiles ¶

func (a *ReportsApiService) ReportFolderAndFileGetFoldersAndFiles(ctx context.Context, id string) ApiReportFolderAndFileGetFoldersAndFilesRequest

ReportFolderAndFileGetFoldersAndFiles Get all folders and files from specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFolderAndFileGetFoldersAndFilesRequest

func (*ReportsApiService) ReportFolderAndFileGetFoldersAndFilesExecute ¶

func (a *ReportsApiService) ReportFolderAndFileGetFoldersAndFilesExecute(r ApiReportFolderAndFileGetFoldersAndFilesRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*ReportsApiService) ReportFolderAndFileGetRecycleBinFoldersAndFiles ¶

func (a *ReportsApiService) ReportFolderAndFileGetRecycleBinFoldersAndFiles(ctx context.Context, subscriptionId string) ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest

ReportFolderAndFileGetRecycleBinFoldersAndFiles Get all folders and files from recycle bin

User with a Get DeletedFiles permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscription id
@return ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest

func (*ReportsApiService) ReportFolderAndFileGetRecycleBinFoldersAndFilesExecute ¶

func (a *ReportsApiService) ReportFolderAndFileGetRecycleBinFoldersAndFilesExecute(r ApiReportFolderAndFileGetRecycleBinFoldersAndFilesRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*ReportsApiService) ReportFolderAndFileRecoverAllFromRecycleBin ¶

func (a *ReportsApiService) ReportFolderAndFileRecoverAllFromRecycleBin(ctx context.Context, subscriptionId string) ApiReportFolderAndFileRecoverAllFromRecycleBinRequest

ReportFolderAndFileRecoverAllFromRecycleBin Recover all folders and files from recycle bin

User with a Create RecycleBin permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscription id
@return ApiReportFolderAndFileRecoverAllFromRecycleBinRequest

func (*ReportsApiService) ReportFolderAndFileRecoverAllFromRecycleBinExecute ¶

func (a *ReportsApiService) ReportFolderAndFileRecoverAllFromRecycleBinExecute(r ApiReportFolderAndFileRecoverAllFromRecycleBinRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFoldersCalculateFolderSize ¶

func (a *ReportsApiService) ReportFoldersCalculateFolderSize(ctx context.Context, id string) ApiReportFoldersCalculateFolderSizeRequest

ReportFoldersCalculateFolderSize Get specified folder, calculate it's size

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersCalculateFolderSizeRequest

func (*ReportsApiService) ReportFoldersCalculateFolderSizeExecute ¶

func (a *ReportsApiService) ReportFoldersCalculateFolderSizeExecute(r ApiReportFoldersCalculateFolderSizeRequest) (*FolderSizeVM, *http.Response, error)

Execute executes the request

@return FolderSizeVM

func (*ReportsApiService) ReportFoldersCopyFolder ¶

func (a *ReportsApiService) ReportFoldersCopyFolder(ctx context.Context, id string, folderId string) ApiReportFoldersCopyFolderRequest

ReportFoldersCopyFolder Move folder to a specified folder

User with a Update Place permission for a folder and Create Entity for a Parent Folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id moving folder id
@param folderId destination folder id
@return ApiReportFoldersCopyFolderRequest

func (*ReportsApiService) ReportFoldersCopyFolderExecute ¶

func (a *ReportsApiService) ReportFoldersCopyFolderExecute(r ApiReportFoldersCopyFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersDeleteFolder ¶

func (a *ReportsApiService) ReportFoldersDeleteFolder(ctx context.Context, id string) ApiReportFoldersDeleteFolderRequest

ReportFoldersDeleteFolder Delete specified folder

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersDeleteFolderRequest

func (*ReportsApiService) ReportFoldersDeleteFolderExecute ¶

func (a *ReportsApiService) ReportFoldersDeleteFolderExecute(r ApiReportFoldersDeleteFolderRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFoldersExport ¶

func (a *ReportsApiService) ReportFoldersExport(ctx context.Context, id string) ApiReportFoldersExportRequest

ReportFoldersExport Export specified report folder to a specified format

User with Execute Export permission on report folder and Create Entity on an export folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id report folder id
@return ApiReportFoldersExportRequest

func (*ReportsApiService) ReportFoldersExportExecute ¶

func (a *ReportsApiService) ReportFoldersExportExecute(r ApiReportFoldersExportRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersGetBreadcrumbs ¶

func (a *ReportsApiService) ReportFoldersGetBreadcrumbs(ctx context.Context, id string) ApiReportFoldersGetBreadcrumbsRequest

ReportFoldersGetBreadcrumbs Get specified folder breadcrumbs

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersGetBreadcrumbsRequest

func (*ReportsApiService) ReportFoldersGetBreadcrumbsExecute ¶

func (a *ReportsApiService) ReportFoldersGetBreadcrumbsExecute(r ApiReportFoldersGetBreadcrumbsRequest) (*BreadcrumbsVM, *http.Response, error)

Execute executes the request

@return BreadcrumbsVM

func (*ReportsApiService) ReportFoldersGetFolder ¶

func (a *ReportsApiService) ReportFoldersGetFolder(ctx context.Context, id string) ApiReportFoldersGetFolderRequest

ReportFoldersGetFolder Get specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersGetFolderRequest

func (*ReportsApiService) ReportFoldersGetFolderExecute ¶

func (a *ReportsApiService) ReportFoldersGetFolderExecute(r ApiReportFoldersGetFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersGetFolders ¶

func (a *ReportsApiService) ReportFoldersGetFolders(ctx context.Context, id string) ApiReportFoldersGetFoldersRequest

ReportFoldersGetFolders Get all folders from specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersGetFoldersRequest

func (*ReportsApiService) ReportFoldersGetFoldersCount ¶

func (a *ReportsApiService) ReportFoldersGetFoldersCount(ctx context.Context, id string) ApiReportFoldersGetFoldersCountRequest

ReportFoldersGetFoldersCount Get count of folders what contains in a specified folder

User with a Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersGetFoldersCountRequest

func (*ReportsApiService) ReportFoldersGetFoldersCountExecute ¶

func (a *ReportsApiService) ReportFoldersGetFoldersCountExecute(r ApiReportFoldersGetFoldersCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*ReportsApiService) ReportFoldersGetFoldersExecute ¶

func (a *ReportsApiService) ReportFoldersGetFoldersExecute(r ApiReportFoldersGetFoldersRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*ReportsApiService) ReportFoldersGetOrCreate ¶

func (a *ReportsApiService) ReportFoldersGetOrCreate(ctx context.Context) ApiReportFoldersGetOrCreateRequest

ReportFoldersGetOrCreate Get specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportFoldersGetOrCreateRequest

func (*ReportsApiService) ReportFoldersGetOrCreateExecute ¶

func (a *ReportsApiService) ReportFoldersGetOrCreateExecute(r ApiReportFoldersGetOrCreateRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersGetPermissions ¶

func (a *ReportsApiService) ReportFoldersGetPermissions(ctx context.Context, id string) ApiReportFoldersGetPermissionsRequest

ReportFoldersGetPermissions Get all folder permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportFoldersGetPermissionsRequest

func (*ReportsApiService) ReportFoldersGetPermissionsExecute ¶

func (a *ReportsApiService) ReportFoldersGetPermissionsExecute(r ApiReportFoldersGetPermissionsRequest) (*FilePermissionsVM, *http.Response, error)

Execute executes the request

@return FilePermissionsVM

func (*ReportsApiService) ReportFoldersGetRootFolder ¶

func (a *ReportsApiService) ReportFoldersGetRootFolder(ctx context.Context) ApiReportFoldersGetRootFolderRequest

ReportFoldersGetRootFolder Get user's root folder (without parents)

> Breakchange. Now user model doesn't contain a root folders. This method can return error 400 and 404 when subscription is not found.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportFoldersGetRootFolderRequest

func (*ReportsApiService) ReportFoldersGetRootFolderExecute ¶

func (a *ReportsApiService) ReportFoldersGetRootFolderExecute(r ApiReportFoldersGetRootFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersMoveFolder ¶

func (a *ReportsApiService) ReportFoldersMoveFolder(ctx context.Context, id string, folderId string) ApiReportFoldersMoveFolderRequest

ReportFoldersMoveFolder Move folder to a specified folder

User with a Update Place permission for a folder and Create Entity for a Parent Folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id moving folder id
@param folderId destination folder id
@return ApiReportFoldersMoveFolderRequest

func (*ReportsApiService) ReportFoldersMoveFolderExecute ¶

func (a *ReportsApiService) ReportFoldersMoveFolderExecute(r ApiReportFoldersMoveFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersMoveFolderToBin ¶

func (a *ReportsApiService) ReportFoldersMoveFolderToBin(ctx context.Context, id string) ApiReportFoldersMoveFolderToBinRequest

ReportFoldersMoveFolderToBin Move specified folder to recycle bin

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersMoveFolderToBinRequest

func (*ReportsApiService) ReportFoldersMoveFolderToBinExecute ¶

func (a *ReportsApiService) ReportFoldersMoveFolderToBinExecute(r ApiReportFoldersMoveFolderToBinRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFoldersPostFolder ¶

func (a *ReportsApiService) ReportFoldersPostFolder(ctx context.Context, id string) ApiReportFoldersPostFolderRequest

ReportFoldersPostFolder Create folder

User with a Create Entity permisison can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of parent folder id
@return ApiReportFoldersPostFolderRequest

func (*ReportsApiService) ReportFoldersPostFolderExecute ¶

func (a *ReportsApiService) ReportFoldersPostFolderExecute(r ApiReportFoldersPostFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersRecoverFolder ¶

func (a *ReportsApiService) ReportFoldersRecoverFolder(ctx context.Context, id string) ApiReportFoldersRecoverFolderRequest

ReportFoldersRecoverFolder Recover specified folder

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportFoldersRecoverFolderRequest

func (*ReportsApiService) ReportFoldersRecoverFolderExecute ¶

func (a *ReportsApiService) ReportFoldersRecoverFolderExecute(r ApiReportFoldersRecoverFolderRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFoldersRenameFolder ¶

func (a *ReportsApiService) ReportFoldersRenameFolder(ctx context.Context, id string) ApiReportFoldersRenameFolderRequest

ReportFoldersRenameFolder Rename a folder

User with a Update Name permision can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportFoldersRenameFolderRequest

func (*ReportsApiService) ReportFoldersRenameFolderExecute ¶

func (a *ReportsApiService) ReportFoldersRenameFolderExecute(r ApiReportFoldersRenameFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersUpdateIcon ¶

func (a *ReportsApiService) ReportFoldersUpdateIcon(ctx context.Context, id string) ApiReportFoldersUpdateIconRequest

ReportFoldersUpdateIcon Update a folder's icon

User with a Update Icon permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of folder
@return ApiReportFoldersUpdateIconRequest

func (*ReportsApiService) ReportFoldersUpdateIconExecute ¶

func (a *ReportsApiService) ReportFoldersUpdateIconExecute(r ApiReportFoldersUpdateIconRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportFoldersUpdatePermissions ¶

func (a *ReportsApiService) ReportFoldersUpdatePermissions(ctx context.Context, id string) ApiReportFoldersUpdatePermissionsRequest

ReportFoldersUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportFoldersUpdatePermissionsRequest

func (*ReportsApiService) ReportFoldersUpdatePermissionsExecute ¶

func (a *ReportsApiService) ReportFoldersUpdatePermissionsExecute(r ApiReportFoldersUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportFoldersUpdateTags ¶

func (a *ReportsApiService) ReportFoldersUpdateTags(ctx context.Context, id string) ApiReportFoldersUpdateTagsRequest

ReportFoldersUpdateTags Update tags

User with a Update Tags permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportFoldersUpdateTagsRequest

func (*ReportsApiService) ReportFoldersUpdateTagsExecute ¶

func (a *ReportsApiService) ReportFoldersUpdateTagsExecute(r ApiReportFoldersUpdateTagsRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*ReportsApiService) ReportsCopyFile ¶

func (a *ReportsApiService) ReportsCopyFile(ctx context.Context, id string, folderId string) ApiReportsCopyFileRequest

ReportsCopyFile Copy file to a specified folder

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@param folderId folder id
@return ApiReportsCopyFileRequest

func (*ReportsApiService) ReportsCopyFileExecute ¶

func (a *ReportsApiService) ReportsCopyFileExecute(r ApiReportsCopyFileRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*ReportsApiService) ReportsDeleteFile ¶

func (a *ReportsApiService) ReportsDeleteFile(ctx context.Context, id string) ApiReportsDeleteFileRequest

ReportsDeleteFile Delete specified file

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiReportsDeleteFileRequest

func (*ReportsApiService) ReportsDeleteFileExecute ¶

func (a *ReportsApiService) ReportsDeleteFileExecute(r ApiReportsDeleteFileRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportsExport ¶

ReportsExport Export specified report to a specified format

User with Execute Export permission on prepared report and Create Entity on an export folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id report id
@return ApiReportsExportRequest

func (*ReportsApiService) ReportsExportExecute ¶

func (a *ReportsApiService) ReportsExportExecute(r ApiReportsExportRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ReportsApiService) ReportsGetFile ¶

ReportsGetFile Get specified file

User with Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiReportsGetFileRequest

func (*ReportsApiService) ReportsGetFileExecute ¶

func (a *ReportsApiService) ReportsGetFileExecute(r ApiReportsGetFileRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*ReportsApiService) ReportsGetFileHistory ¶

func (a *ReportsApiService) ReportsGetFileHistory(ctx context.Context, id string) ApiReportsGetFileHistoryRequest

ReportsGetFileHistory Returns list of actions, performed on this file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportsGetFileHistoryRequest

func (*ReportsApiService) ReportsGetFileHistoryExecute ¶

func (a *ReportsApiService) ReportsGetFileHistoryExecute(r ApiReportsGetFileHistoryRequest) (*AuditActionsVM, *http.Response, error)

Execute executes the request

@return AuditActionsVM

func (*ReportsApiService) ReportsGetFilesCount ¶

func (a *ReportsApiService) ReportsGetFilesCount(ctx context.Context, id string) ApiReportsGetFilesCountRequest

ReportsGetFilesCount Get count of files what contains in a specified folder

User with Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportsGetFilesCountRequest

func (*ReportsApiService) ReportsGetFilesCountExecute ¶

func (a *ReportsApiService) ReportsGetFilesCountExecute(r ApiReportsGetFilesCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*ReportsApiService) ReportsGetFilesList ¶

func (a *ReportsApiService) ReportsGetFilesList(ctx context.Context, id string) ApiReportsGetFilesListRequest

ReportsGetFilesList Get all files from specified folder. <br /> User with Get Entity permission can access this method. <br /> The method will returns minimal infomration about the file: <br /> id, name, size, editedTime, createdTime, tags, status, statusReason.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiReportsGetFilesListRequest

func (*ReportsApiService) ReportsGetFilesListExecute ¶

func (a *ReportsApiService) ReportsGetFilesListExecute(r ApiReportsGetFilesListRequest) (*ReportsVM, *http.Response, error)

Execute executes the request

@return ReportsVM

func (*ReportsApiService) ReportsGetPermissions ¶

func (a *ReportsApiService) ReportsGetPermissions(ctx context.Context, id string) ApiReportsGetPermissionsRequest

ReportsGetPermissions Get all file permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportsGetPermissionsRequest

func (*ReportsApiService) ReportsGetPermissionsExecute ¶

func (a *ReportsApiService) ReportsGetPermissionsExecute(r ApiReportsGetPermissionsRequest) (*FilePermissionsVM, *http.Response, error)

Execute executes the request

@return FilePermissionsVM

func (*ReportsApiService) ReportsMoveFile ¶

func (a *ReportsApiService) ReportsMoveFile(ctx context.Context, id string, folderId string) ApiReportsMoveFileRequest

ReportsMoveFile Move file to a specified folder

User with Update Place permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@param folderId folder id
@return ApiReportsMoveFileRequest

func (*ReportsApiService) ReportsMoveFileExecute ¶

func (a *ReportsApiService) ReportsMoveFileExecute(r ApiReportsMoveFileRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*ReportsApiService) ReportsMoveFileToBin ¶

func (a *ReportsApiService) ReportsMoveFileToBin(ctx context.Context, id string) ApiReportsMoveFileToBinRequest

ReportsMoveFileToBin Move specified file to recycle bin

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiReportsMoveFileToBinRequest

func (*ReportsApiService) ReportsMoveFileToBinExecute ¶

func (a *ReportsApiService) ReportsMoveFileToBinExecute(r ApiReportsMoveFileToBinRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportsRecoverFile ¶

func (a *ReportsApiService) ReportsRecoverFile(ctx context.Context, id string) ApiReportsRecoverFileRequest

ReportsRecoverFile Recover specified file from bin

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiReportsRecoverFileRequest

func (*ReportsApiService) ReportsRecoverFileExecute ¶

func (a *ReportsApiService) ReportsRecoverFileExecute(r ApiReportsRecoverFileRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportsRenameFile ¶

func (a *ReportsApiService) ReportsRenameFile(ctx context.Context, id string) ApiReportsRenameFileRequest

ReportsRenameFile Rename a file

User with Update Name permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportsRenameFileRequest

func (*ReportsApiService) ReportsRenameFileExecute ¶

func (a *ReportsApiService) ReportsRenameFileExecute(r ApiReportsRenameFileRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*ReportsApiService) ReportsStaticPreview ¶

func (a *ReportsApiService) ReportsStaticPreview(ctx context.Context, id string) ApiReportsStaticPreviewRequest

ReportsStaticPreview Make preview for the report. Generate a new or return exist prepared svg files. If template was changed will be returned a new. Pass the “ parameter to check prepared timestamp

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id template id
@return ApiReportsStaticPreviewRequest

func (*ReportsApiService) ReportsStaticPreviewExecute ¶

func (a *ReportsApiService) ReportsStaticPreviewExecute(r ApiReportsStaticPreviewRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*ReportsApiService) ReportsUpdateIcon ¶

func (a *ReportsApiService) ReportsUpdateIcon(ctx context.Context, id string) ApiReportsUpdateIconRequest

ReportsUpdateIcon Update a files's icon

User with Update Icon permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportsUpdateIconRequest

func (*ReportsApiService) ReportsUpdateIconExecute ¶

func (a *ReportsApiService) ReportsUpdateIconExecute(r ApiReportsUpdateIconRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*ReportsApiService) ReportsUpdatePermissions ¶

func (a *ReportsApiService) ReportsUpdatePermissions(ctx context.Context, id string) ApiReportsUpdatePermissionsRequest

ReportsUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportsUpdatePermissionsRequest

func (*ReportsApiService) ReportsUpdatePermissionsExecute ¶

func (a *ReportsApiService) ReportsUpdatePermissionsExecute(r ApiReportsUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportsUpdateTags ¶

func (a *ReportsApiService) ReportsUpdateTags(ctx context.Context, id string) ApiReportsUpdateTagsRequest

ReportsUpdateTags Update tags

User with Update Tags permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReportsUpdateTagsRequest

func (*ReportsApiService) ReportsUpdateTagsExecute ¶

func (a *ReportsApiService) ReportsUpdateTagsExecute(r ApiReportsUpdateTagsRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*ReportsApiService) ReportsUploadFile ¶

func (a *ReportsApiService) ReportsUploadFile(ctx context.Context, id string) ApiReportsUploadFileRequest

ReportsUploadFile Upload a file to the specified folder !

User with Create Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of folder
@return ApiReportsUploadFileRequest

func (*ReportsApiService) ReportsUploadFileExecute ¶

func (a *ReportsApiService) ReportsUploadFileExecute(r ApiReportsUploadFileRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

type ReportsVM ¶

type ReportsVM struct {
}

ReportsVM struct for ReportsVM

func NewReportsVM ¶

func NewReportsVM() *ReportsVM

NewReportsVM instantiates a new ReportsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportsVMWithDefaults ¶

func NewReportsVMWithDefaults() *ReportsVM

NewReportsVMWithDefaults instantiates a new ReportsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (ReportsVM) MarshalJSON ¶

func (o ReportsVM) MarshalJSON() ([]byte, error)

func (ReportsVM) ToMap ¶

func (o ReportsVM) ToMap() (map[string]interface{}, error)

type RunEmailTaskVM ¶

type RunEmailTaskVM struct {
	Body       NullableString `json:"body,omitempty"`
	EnableSsl  *bool          `json:"enableSsl,omitempty"`
	From       NullableString `json:"from,omitempty"`
	IsBodyHtml *bool          `json:"isBodyHtml,omitempty"`
	Password   NullableString `json:"password,omitempty"`
	Port       *int32         `json:"port,omitempty"`
	Server     NullableString `json:"server,omitempty"`
	Subject    NullableString `json:"subject,omitempty"`
	To         []string       `json:"to"`
	Username   NullableString `json:"username,omitempty"`
}

RunEmailTaskVM struct for RunEmailTaskVM

func NewRunEmailTaskVM ¶

func NewRunEmailTaskVM(to []string, t string) *RunEmailTaskVM

NewRunEmailTaskVM instantiates a new RunEmailTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunEmailTaskVMWithDefaults ¶

func NewRunEmailTaskVMWithDefaults() *RunEmailTaskVM

NewRunEmailTaskVMWithDefaults instantiates a new RunEmailTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunEmailTaskVM) GetBody ¶

func (o *RunEmailTaskVM) GetBody() string

GetBody returns the Body field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunEmailTaskVM) GetBodyOk ¶

func (o *RunEmailTaskVM) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunEmailTaskVM) GetEnableSsl ¶

func (o *RunEmailTaskVM) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise.

func (*RunEmailTaskVM) GetEnableSslOk ¶

func (o *RunEmailTaskVM) GetEnableSslOk() (*bool, bool)

GetEnableSslOk returns a tuple with the EnableSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunEmailTaskVM) GetFrom ¶

func (o *RunEmailTaskVM) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunEmailTaskVM) GetFromOk ¶

func (o *RunEmailTaskVM) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunEmailTaskVM) GetIsBodyHtml ¶

func (o *RunEmailTaskVM) GetIsBodyHtml() bool

GetIsBodyHtml returns the IsBodyHtml field value if set, zero value otherwise.

func (*RunEmailTaskVM) GetIsBodyHtmlOk ¶

func (o *RunEmailTaskVM) GetIsBodyHtmlOk() (*bool, bool)

GetIsBodyHtmlOk returns a tuple with the IsBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunEmailTaskVM) GetPassword ¶

func (o *RunEmailTaskVM) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunEmailTaskVM) GetPasswordOk ¶

func (o *RunEmailTaskVM) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunEmailTaskVM) GetPort ¶

func (o *RunEmailTaskVM) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*RunEmailTaskVM) GetPortOk ¶

func (o *RunEmailTaskVM) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunEmailTaskVM) GetServer ¶

func (o *RunEmailTaskVM) GetServer() string

GetServer returns the Server field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunEmailTaskVM) GetServerOk ¶

func (o *RunEmailTaskVM) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunEmailTaskVM) GetSubject ¶

func (o *RunEmailTaskVM) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunEmailTaskVM) GetSubjectOk ¶

func (o *RunEmailTaskVM) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunEmailTaskVM) GetTo ¶

func (o *RunEmailTaskVM) GetTo() []string

GetTo returns the To field value

func (*RunEmailTaskVM) GetToOk ¶

func (o *RunEmailTaskVM) GetToOk() ([]string, bool)

GetToOk returns a tuple with the To field value and a boolean to check if the value has been set.

func (*RunEmailTaskVM) GetUsername ¶

func (o *RunEmailTaskVM) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunEmailTaskVM) GetUsernameOk ¶

func (o *RunEmailTaskVM) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunEmailTaskVM) HasBody ¶

func (o *RunEmailTaskVM) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasEnableSsl ¶

func (o *RunEmailTaskVM) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasFrom ¶

func (o *RunEmailTaskVM) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasIsBodyHtml ¶

func (o *RunEmailTaskVM) HasIsBodyHtml() bool

HasIsBodyHtml returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasPassword ¶

func (o *RunEmailTaskVM) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasPort ¶

func (o *RunEmailTaskVM) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasServer ¶

func (o *RunEmailTaskVM) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasSubject ¶

func (o *RunEmailTaskVM) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*RunEmailTaskVM) HasUsername ¶

func (o *RunEmailTaskVM) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (RunEmailTaskVM) MarshalJSON ¶

func (o RunEmailTaskVM) MarshalJSON() ([]byte, error)

func (*RunEmailTaskVM) SetBody ¶

func (o *RunEmailTaskVM) SetBody(v string)

SetBody gets a reference to the given NullableString and assigns it to the Body field.

func (*RunEmailTaskVM) SetBodyNil ¶

func (o *RunEmailTaskVM) SetBodyNil()

SetBodyNil sets the value for Body to be an explicit nil

func (*RunEmailTaskVM) SetEnableSsl ¶

func (o *RunEmailTaskVM) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given bool and assigns it to the EnableSsl field.

func (*RunEmailTaskVM) SetFrom ¶

func (o *RunEmailTaskVM) SetFrom(v string)

SetFrom gets a reference to the given NullableString and assigns it to the From field.

func (*RunEmailTaskVM) SetFromNil ¶

func (o *RunEmailTaskVM) SetFromNil()

SetFromNil sets the value for From to be an explicit nil

func (*RunEmailTaskVM) SetIsBodyHtml ¶

func (o *RunEmailTaskVM) SetIsBodyHtml(v bool)

SetIsBodyHtml gets a reference to the given bool and assigns it to the IsBodyHtml field.

func (*RunEmailTaskVM) SetPassword ¶

func (o *RunEmailTaskVM) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*RunEmailTaskVM) SetPasswordNil ¶

func (o *RunEmailTaskVM) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*RunEmailTaskVM) SetPort ¶

func (o *RunEmailTaskVM) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*RunEmailTaskVM) SetServer ¶

func (o *RunEmailTaskVM) SetServer(v string)

SetServer gets a reference to the given NullableString and assigns it to the Server field.

func (*RunEmailTaskVM) SetServerNil ¶

func (o *RunEmailTaskVM) SetServerNil()

SetServerNil sets the value for Server to be an explicit nil

func (*RunEmailTaskVM) SetSubject ¶

func (o *RunEmailTaskVM) SetSubject(v string)

SetSubject gets a reference to the given NullableString and assigns it to the Subject field.

func (*RunEmailTaskVM) SetSubjectNil ¶

func (o *RunEmailTaskVM) SetSubjectNil()

SetSubjectNil sets the value for Subject to be an explicit nil

func (*RunEmailTaskVM) SetTo ¶

func (o *RunEmailTaskVM) SetTo(v []string)

SetTo sets field value

func (*RunEmailTaskVM) SetUsername ¶

func (o *RunEmailTaskVM) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*RunEmailTaskVM) SetUsernameNil ¶

func (o *RunEmailTaskVM) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (RunEmailTaskVM) ToMap ¶

func (o RunEmailTaskVM) ToMap() (map[string]interface{}, error)

func (*RunEmailTaskVM) UnsetBody ¶

func (o *RunEmailTaskVM) UnsetBody()

UnsetBody ensures that no value is present for Body, not even an explicit nil

func (*RunEmailTaskVM) UnsetFrom ¶

func (o *RunEmailTaskVM) UnsetFrom()

UnsetFrom ensures that no value is present for From, not even an explicit nil

func (*RunEmailTaskVM) UnsetPassword ¶

func (o *RunEmailTaskVM) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*RunEmailTaskVM) UnsetServer ¶

func (o *RunEmailTaskVM) UnsetServer()

UnsetServer ensures that no value is present for Server, not even an explicit nil

func (*RunEmailTaskVM) UnsetSubject ¶

func (o *RunEmailTaskVM) UnsetSubject()

UnsetSubject ensures that no value is present for Subject, not even an explicit nil

func (*RunEmailTaskVM) UnsetUsername ¶

func (o *RunEmailTaskVM) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type RunExportReportTaskVM ¶

type RunExportReportTaskVM struct {
	ExportParameters map[string]string `json:"exportParameters,omitempty"`
	Format           *ExportFormat     `json:"format,omitempty"`
	PagesCount       *int32            `json:"pagesCount,omitempty"`
	T                string            `json:"$t"`
}

RunExportReportTaskVM struct for RunExportReportTaskVM

func NewRunExportReportTaskVM ¶

func NewRunExportReportTaskVM(t string) *RunExportReportTaskVM

NewRunExportReportTaskVM instantiates a new RunExportReportTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunExportReportTaskVMWithDefaults ¶

func NewRunExportReportTaskVMWithDefaults() *RunExportReportTaskVM

NewRunExportReportTaskVMWithDefaults instantiates a new RunExportReportTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunExportReportTaskVM) GetExportParameters ¶

func (o *RunExportReportTaskVM) GetExportParameters() map[string]string

GetExportParameters returns the ExportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunExportReportTaskVM) GetExportParametersOk ¶

func (o *RunExportReportTaskVM) GetExportParametersOk() (*map[string]string, bool)

GetExportParametersOk returns a tuple with the ExportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunExportReportTaskVM) GetFormat ¶

func (o *RunExportReportTaskVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*RunExportReportTaskVM) GetFormatOk ¶

func (o *RunExportReportTaskVM) GetFormatOk() (*ExportFormat, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunExportReportTaskVM) GetPagesCount ¶

func (o *RunExportReportTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise.

func (*RunExportReportTaskVM) GetPagesCountOk ¶

func (o *RunExportReportTaskVM) GetPagesCountOk() (*int32, bool)

GetPagesCountOk returns a tuple with the PagesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunExportReportTaskVM) GetT ¶

func (o *RunExportReportTaskVM) GetT() string

GetT returns the T field value

func (*RunExportReportTaskVM) GetTOk ¶

func (o *RunExportReportTaskVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*RunExportReportTaskVM) HasExportParameters ¶

func (o *RunExportReportTaskVM) HasExportParameters() bool

HasExportParameters returns a boolean if a field has been set.

func (*RunExportReportTaskVM) HasFormat ¶

func (o *RunExportReportTaskVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*RunExportReportTaskVM) HasPagesCount ¶

func (o *RunExportReportTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (RunExportReportTaskVM) MarshalJSON ¶

func (o RunExportReportTaskVM) MarshalJSON() ([]byte, error)

func (*RunExportReportTaskVM) SetExportParameters ¶

func (o *RunExportReportTaskVM) SetExportParameters(v map[string]string)

SetExportParameters gets a reference to the given map[string]string and assigns it to the ExportParameters field.

func (*RunExportReportTaskVM) SetFormat ¶

func (o *RunExportReportTaskVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given ExportFormat and assigns it to the Format field.

func (*RunExportReportTaskVM) SetPagesCount ¶

func (o *RunExportReportTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given int32 and assigns it to the PagesCount field.

func (*RunExportReportTaskVM) SetT ¶

func (o *RunExportReportTaskVM) SetT(v string)

SetT sets field value

func (RunExportReportTaskVM) ToMap ¶

func (o RunExportReportTaskVM) ToMap() (map[string]interface{}, error)

type RunExportTemplateTaskVM ¶

type RunExportTemplateTaskVM struct {
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

RunExportTemplateTaskVM struct for RunExportTemplateTaskVM

func NewRunExportTemplateTaskVM ¶

func NewRunExportTemplateTaskVM(t string) *RunExportTemplateTaskVM

NewRunExportTemplateTaskVM instantiates a new RunExportTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunExportTemplateTaskVMWithDefaults ¶

func NewRunExportTemplateTaskVMWithDefaults() *RunExportTemplateTaskVM

NewRunExportTemplateTaskVMWithDefaults instantiates a new RunExportTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunExportTemplateTaskVM) GetReportParameters ¶

func (o *RunExportTemplateTaskVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunExportTemplateTaskVM) GetReportParametersOk ¶

func (o *RunExportTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunExportTemplateTaskVM) HasReportParameters ¶

func (o *RunExportTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (RunExportTemplateTaskVM) MarshalJSON ¶

func (o RunExportTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*RunExportTemplateTaskVM) SetReportParameters ¶

func (o *RunExportTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (RunExportTemplateTaskVM) ToMap ¶

func (o RunExportTemplateTaskVM) ToMap() (map[string]interface{}, error)

type RunFTPUploadTaskVM ¶

type RunFTPUploadTaskVM struct {
	Archive           *bool          `json:"archive,omitempty"`
	ArchiveName       NullableString `json:"archiveName,omitempty"`
	DestinationFolder NullableString `json:"destinationFolder,omitempty"`
	FtpHost           NullableString `json:"ftpHost,omitempty"`
	FtpPassword       NullableString `json:"ftpPassword,omitempty"`
	FtpPort           *int32         `json:"ftpPort,omitempty"`
	FtpUsername       NullableString `json:"ftpUsername,omitempty"`
	UseSFTP           *bool          `json:"useSFTP,omitempty"`
}

RunFTPUploadTaskVM struct for RunFTPUploadTaskVM

func NewRunFTPUploadTaskVM ¶

func NewRunFTPUploadTaskVM(t string) *RunFTPUploadTaskVM

NewRunFTPUploadTaskVM instantiates a new RunFTPUploadTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunFTPUploadTaskVMWithDefaults ¶

func NewRunFTPUploadTaskVMWithDefaults() *RunFTPUploadTaskVM

NewRunFTPUploadTaskVMWithDefaults instantiates a new RunFTPUploadTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunFTPUploadTaskVM) GetArchive ¶

func (o *RunFTPUploadTaskVM) GetArchive() bool

GetArchive returns the Archive field value if set, zero value otherwise.

func (*RunFTPUploadTaskVM) GetArchiveName ¶

func (o *RunFTPUploadTaskVM) GetArchiveName() string

GetArchiveName returns the ArchiveName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunFTPUploadTaskVM) GetArchiveNameOk ¶

func (o *RunFTPUploadTaskVM) GetArchiveNameOk() (*string, bool)

GetArchiveNameOk returns a tuple with the ArchiveName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunFTPUploadTaskVM) GetArchiveOk ¶

func (o *RunFTPUploadTaskVM) GetArchiveOk() (*bool, bool)

GetArchiveOk returns a tuple with the Archive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunFTPUploadTaskVM) GetDestinationFolder ¶

func (o *RunFTPUploadTaskVM) GetDestinationFolder() string

GetDestinationFolder returns the DestinationFolder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunFTPUploadTaskVM) GetDestinationFolderOk ¶

func (o *RunFTPUploadTaskVM) GetDestinationFolderOk() (*string, bool)

GetDestinationFolderOk returns a tuple with the DestinationFolder field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunFTPUploadTaskVM) GetFtpHost ¶

func (o *RunFTPUploadTaskVM) GetFtpHost() string

GetFtpHost returns the FtpHost field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunFTPUploadTaskVM) GetFtpHostOk ¶

func (o *RunFTPUploadTaskVM) GetFtpHostOk() (*string, bool)

GetFtpHostOk returns a tuple with the FtpHost field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunFTPUploadTaskVM) GetFtpPassword ¶

func (o *RunFTPUploadTaskVM) GetFtpPassword() string

GetFtpPassword returns the FtpPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunFTPUploadTaskVM) GetFtpPasswordOk ¶

func (o *RunFTPUploadTaskVM) GetFtpPasswordOk() (*string, bool)

GetFtpPasswordOk returns a tuple with the FtpPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunFTPUploadTaskVM) GetFtpPort ¶

func (o *RunFTPUploadTaskVM) GetFtpPort() int32

GetFtpPort returns the FtpPort field value if set, zero value otherwise.

func (*RunFTPUploadTaskVM) GetFtpPortOk ¶

func (o *RunFTPUploadTaskVM) GetFtpPortOk() (*int32, bool)

GetFtpPortOk returns a tuple with the FtpPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunFTPUploadTaskVM) GetFtpUsername ¶

func (o *RunFTPUploadTaskVM) GetFtpUsername() string

GetFtpUsername returns the FtpUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunFTPUploadTaskVM) GetFtpUsernameOk ¶

func (o *RunFTPUploadTaskVM) GetFtpUsernameOk() (*string, bool)

GetFtpUsernameOk returns a tuple with the FtpUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunFTPUploadTaskVM) GetUseSFTP ¶

func (o *RunFTPUploadTaskVM) GetUseSFTP() bool

GetUseSFTP returns the UseSFTP field value if set, zero value otherwise.

func (*RunFTPUploadTaskVM) GetUseSFTPOk ¶

func (o *RunFTPUploadTaskVM) GetUseSFTPOk() (*bool, bool)

GetUseSFTPOk returns a tuple with the UseSFTP field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunFTPUploadTaskVM) HasArchive ¶

func (o *RunFTPUploadTaskVM) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasArchiveName ¶

func (o *RunFTPUploadTaskVM) HasArchiveName() bool

HasArchiveName returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasDestinationFolder ¶

func (o *RunFTPUploadTaskVM) HasDestinationFolder() bool

HasDestinationFolder returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasFtpHost ¶

func (o *RunFTPUploadTaskVM) HasFtpHost() bool

HasFtpHost returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasFtpPassword ¶

func (o *RunFTPUploadTaskVM) HasFtpPassword() bool

HasFtpPassword returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasFtpPort ¶

func (o *RunFTPUploadTaskVM) HasFtpPort() bool

HasFtpPort returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasFtpUsername ¶

func (o *RunFTPUploadTaskVM) HasFtpUsername() bool

HasFtpUsername returns a boolean if a field has been set.

func (*RunFTPUploadTaskVM) HasUseSFTP ¶

func (o *RunFTPUploadTaskVM) HasUseSFTP() bool

HasUseSFTP returns a boolean if a field has been set.

func (RunFTPUploadTaskVM) MarshalJSON ¶

func (o RunFTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*RunFTPUploadTaskVM) SetArchive ¶

func (o *RunFTPUploadTaskVM) SetArchive(v bool)

SetArchive gets a reference to the given bool and assigns it to the Archive field.

func (*RunFTPUploadTaskVM) SetArchiveName ¶

func (o *RunFTPUploadTaskVM) SetArchiveName(v string)

SetArchiveName gets a reference to the given NullableString and assigns it to the ArchiveName field.

func (*RunFTPUploadTaskVM) SetArchiveNameNil ¶

func (o *RunFTPUploadTaskVM) SetArchiveNameNil()

SetArchiveNameNil sets the value for ArchiveName to be an explicit nil

func (*RunFTPUploadTaskVM) SetDestinationFolder ¶

func (o *RunFTPUploadTaskVM) SetDestinationFolder(v string)

SetDestinationFolder gets a reference to the given NullableString and assigns it to the DestinationFolder field.

func (*RunFTPUploadTaskVM) SetDestinationFolderNil ¶

func (o *RunFTPUploadTaskVM) SetDestinationFolderNil()

SetDestinationFolderNil sets the value for DestinationFolder to be an explicit nil

func (*RunFTPUploadTaskVM) SetFtpHost ¶

func (o *RunFTPUploadTaskVM) SetFtpHost(v string)

SetFtpHost gets a reference to the given NullableString and assigns it to the FtpHost field.

func (*RunFTPUploadTaskVM) SetFtpHostNil ¶

func (o *RunFTPUploadTaskVM) SetFtpHostNil()

SetFtpHostNil sets the value for FtpHost to be an explicit nil

func (*RunFTPUploadTaskVM) SetFtpPassword ¶

func (o *RunFTPUploadTaskVM) SetFtpPassword(v string)

SetFtpPassword gets a reference to the given NullableString and assigns it to the FtpPassword field.

func (*RunFTPUploadTaskVM) SetFtpPasswordNil ¶

func (o *RunFTPUploadTaskVM) SetFtpPasswordNil()

SetFtpPasswordNil sets the value for FtpPassword to be an explicit nil

func (*RunFTPUploadTaskVM) SetFtpPort ¶

func (o *RunFTPUploadTaskVM) SetFtpPort(v int32)

SetFtpPort gets a reference to the given int32 and assigns it to the FtpPort field.

func (*RunFTPUploadTaskVM) SetFtpUsername ¶

func (o *RunFTPUploadTaskVM) SetFtpUsername(v string)

SetFtpUsername gets a reference to the given NullableString and assigns it to the FtpUsername field.

func (*RunFTPUploadTaskVM) SetFtpUsernameNil ¶

func (o *RunFTPUploadTaskVM) SetFtpUsernameNil()

SetFtpUsernameNil sets the value for FtpUsername to be an explicit nil

func (*RunFTPUploadTaskVM) SetUseSFTP ¶

func (o *RunFTPUploadTaskVM) SetUseSFTP(v bool)

SetUseSFTP gets a reference to the given bool and assigns it to the UseSFTP field.

func (RunFTPUploadTaskVM) ToMap ¶

func (o RunFTPUploadTaskVM) ToMap() (map[string]interface{}, error)

func (*RunFTPUploadTaskVM) UnsetArchiveName ¶

func (o *RunFTPUploadTaskVM) UnsetArchiveName()

UnsetArchiveName ensures that no value is present for ArchiveName, not even an explicit nil

func (*RunFTPUploadTaskVM) UnsetDestinationFolder ¶

func (o *RunFTPUploadTaskVM) UnsetDestinationFolder()

UnsetDestinationFolder ensures that no value is present for DestinationFolder, not even an explicit nil

func (*RunFTPUploadTaskVM) UnsetFtpHost ¶

func (o *RunFTPUploadTaskVM) UnsetFtpHost()

UnsetFtpHost ensures that no value is present for FtpHost, not even an explicit nil

func (*RunFTPUploadTaskVM) UnsetFtpPassword ¶

func (o *RunFTPUploadTaskVM) UnsetFtpPassword()

UnsetFtpPassword ensures that no value is present for FtpPassword, not even an explicit nil

func (*RunFTPUploadTaskVM) UnsetFtpUsername ¶

func (o *RunFTPUploadTaskVM) UnsetFtpUsername()

UnsetFtpUsername ensures that no value is present for FtpUsername, not even an explicit nil

type RunFetchTaskVM ¶

type RunFetchTaskVM struct {
	DataSourceId NullableString `json:"dataSourceId,omitempty"`
}

RunFetchTaskVM struct for RunFetchTaskVM

func NewRunFetchTaskVM ¶

func NewRunFetchTaskVM(t string) *RunFetchTaskVM

NewRunFetchTaskVM instantiates a new RunFetchTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunFetchTaskVMWithDefaults ¶

func NewRunFetchTaskVMWithDefaults() *RunFetchTaskVM

NewRunFetchTaskVMWithDefaults instantiates a new RunFetchTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunFetchTaskVM) GetDataSourceId ¶

func (o *RunFetchTaskVM) GetDataSourceId() string

GetDataSourceId returns the DataSourceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunFetchTaskVM) GetDataSourceIdOk ¶

func (o *RunFetchTaskVM) GetDataSourceIdOk() (*string, bool)

GetDataSourceIdOk returns a tuple with the DataSourceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunFetchTaskVM) HasDataSourceId ¶

func (o *RunFetchTaskVM) HasDataSourceId() bool

HasDataSourceId returns a boolean if a field has been set.

func (RunFetchTaskVM) MarshalJSON ¶

func (o RunFetchTaskVM) MarshalJSON() ([]byte, error)

func (*RunFetchTaskVM) SetDataSourceId ¶

func (o *RunFetchTaskVM) SetDataSourceId(v string)

SetDataSourceId gets a reference to the given NullableString and assigns it to the DataSourceId field.

func (*RunFetchTaskVM) SetDataSourceIdNil ¶

func (o *RunFetchTaskVM) SetDataSourceIdNil()

SetDataSourceIdNil sets the value for DataSourceId to be an explicit nil

func (RunFetchTaskVM) ToMap ¶

func (o RunFetchTaskVM) ToMap() (map[string]interface{}, error)

func (*RunFetchTaskVM) UnsetDataSourceId ¶

func (o *RunFetchTaskVM) UnsetDataSourceId()

UnsetDataSourceId ensures that no value is present for DataSourceId, not even an explicit nil

type RunInputFileVM ¶

type RunInputFileVM struct {
	Content  NullableString `json:"content,omitempty"`
	FileName NullableString `json:"fileName,omitempty"`
}

RunInputFileVM struct for RunInputFileVM

func NewRunInputFileVM ¶

func NewRunInputFileVM() *RunInputFileVM

NewRunInputFileVM instantiates a new RunInputFileVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunInputFileVMWithDefaults ¶

func NewRunInputFileVMWithDefaults() *RunInputFileVM

NewRunInputFileVMWithDefaults instantiates a new RunInputFileVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunInputFileVM) GetContent ¶

func (o *RunInputFileVM) GetContent() string

GetContent returns the Content field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunInputFileVM) GetContentOk ¶

func (o *RunInputFileVM) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunInputFileVM) GetFileName ¶

func (o *RunInputFileVM) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunInputFileVM) GetFileNameOk ¶

func (o *RunInputFileVM) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunInputFileVM) HasContent ¶

func (o *RunInputFileVM) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*RunInputFileVM) HasFileName ¶

func (o *RunInputFileVM) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (RunInputFileVM) MarshalJSON ¶

func (o RunInputFileVM) MarshalJSON() ([]byte, error)

func (*RunInputFileVM) SetContent ¶

func (o *RunInputFileVM) SetContent(v string)

SetContent gets a reference to the given NullableString and assigns it to the Content field.

func (*RunInputFileVM) SetContentNil ¶

func (o *RunInputFileVM) SetContentNil()

SetContentNil sets the value for Content to be an explicit nil

func (*RunInputFileVM) SetFileName ¶

func (o *RunInputFileVM) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*RunInputFileVM) SetFileNameNil ¶

func (o *RunInputFileVM) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (RunInputFileVM) ToMap ¶

func (o RunInputFileVM) ToMap() (map[string]interface{}, error)

func (*RunInputFileVM) UnsetContent ¶

func (o *RunInputFileVM) UnsetContent()

UnsetContent ensures that no value is present for Content, not even an explicit nil

func (*RunInputFileVM) UnsetFileName ¶

func (o *RunInputFileVM) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

type RunPrepareTemplateTaskVM ¶

type RunPrepareTemplateTaskVM struct {
	Exports          []RunExportReportTaskVM `json:"exports,omitempty"`
	PagesCount       *int32                  `json:"pagesCount,omitempty"`
	ReportParameters map[string]string       `json:"reportParameters,omitempty"`
}

RunPrepareTemplateTaskVM struct for RunPrepareTemplateTaskVM

func NewRunPrepareTemplateTaskVM ¶

func NewRunPrepareTemplateTaskVM(t string) *RunPrepareTemplateTaskVM

NewRunPrepareTemplateTaskVM instantiates a new RunPrepareTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunPrepareTemplateTaskVMWithDefaults ¶

func NewRunPrepareTemplateTaskVMWithDefaults() *RunPrepareTemplateTaskVM

NewRunPrepareTemplateTaskVMWithDefaults instantiates a new RunPrepareTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunPrepareTemplateTaskVM) GetExports ¶

GetExports returns the Exports field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunPrepareTemplateTaskVM) GetExportsOk ¶

func (o *RunPrepareTemplateTaskVM) GetExportsOk() ([]RunExportReportTaskVM, bool)

GetExportsOk returns a tuple with the Exports field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunPrepareTemplateTaskVM) GetPagesCount ¶

func (o *RunPrepareTemplateTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise.

func (*RunPrepareTemplateTaskVM) GetPagesCountOk ¶

func (o *RunPrepareTemplateTaskVM) GetPagesCountOk() (*int32, bool)

GetPagesCountOk returns a tuple with the PagesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunPrepareTemplateTaskVM) GetReportParameters ¶

func (o *RunPrepareTemplateTaskVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunPrepareTemplateTaskVM) GetReportParametersOk ¶

func (o *RunPrepareTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunPrepareTemplateTaskVM) HasExports ¶

func (o *RunPrepareTemplateTaskVM) HasExports() bool

HasExports returns a boolean if a field has been set.

func (*RunPrepareTemplateTaskVM) HasPagesCount ¶

func (o *RunPrepareTemplateTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (*RunPrepareTemplateTaskVM) HasReportParameters ¶

func (o *RunPrepareTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (RunPrepareTemplateTaskVM) MarshalJSON ¶

func (o RunPrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*RunPrepareTemplateTaskVM) SetExports ¶

SetExports gets a reference to the given []RunExportReportTaskVM and assigns it to the Exports field.

func (*RunPrepareTemplateTaskVM) SetPagesCount ¶

func (o *RunPrepareTemplateTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given int32 and assigns it to the PagesCount field.

func (*RunPrepareTemplateTaskVM) SetReportParameters ¶

func (o *RunPrepareTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (RunPrepareTemplateTaskVM) ToMap ¶

func (o RunPrepareTemplateTaskVM) ToMap() (map[string]interface{}, error)

type RunTaskBaseVM ¶

type RunTaskBaseVM struct {
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
	T              string         `json:"$t"`
}

RunTaskBaseVM struct for RunTaskBaseVM

func NewRunTaskBaseVM ¶

func NewRunTaskBaseVM(t string) *RunTaskBaseVM

NewRunTaskBaseVM instantiates a new RunTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunTaskBaseVMWithDefaults ¶

func NewRunTaskBaseVMWithDefaults() *RunTaskBaseVM

NewRunTaskBaseVMWithDefaults instantiates a new RunTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunTaskBaseVM) GetSubscriptionId ¶

func (o *RunTaskBaseVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunTaskBaseVM) GetSubscriptionIdOk ¶

func (o *RunTaskBaseVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunTaskBaseVM) GetT ¶

func (o *RunTaskBaseVM) GetT() string

GetT returns the T field value

func (*RunTaskBaseVM) GetTOk ¶

func (o *RunTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*RunTaskBaseVM) HasSubscriptionId ¶

func (o *RunTaskBaseVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (RunTaskBaseVM) MarshalJSON ¶

func (o RunTaskBaseVM) MarshalJSON() ([]byte, error)

func (*RunTaskBaseVM) SetSubscriptionId ¶

func (o *RunTaskBaseVM) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*RunTaskBaseVM) SetSubscriptionIdNil ¶

func (o *RunTaskBaseVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*RunTaskBaseVM) SetT ¶

func (o *RunTaskBaseVM) SetT(v string)

SetT sets field value

func (RunTaskBaseVM) ToMap ¶

func (o RunTaskBaseVM) ToMap() (map[string]interface{}, error)

func (*RunTaskBaseVM) UnsetSubscriptionId ¶

func (o *RunTaskBaseVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type RunThumbnailReportTaskVM ¶

type RunThumbnailReportTaskVM struct {
	ReportId NullableString `json:"reportId,omitempty"`
}

RunThumbnailReportTaskVM struct for RunThumbnailReportTaskVM

func NewRunThumbnailReportTaskVM ¶

func NewRunThumbnailReportTaskVM(t string) *RunThumbnailReportTaskVM

NewRunThumbnailReportTaskVM instantiates a new RunThumbnailReportTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunThumbnailReportTaskVMWithDefaults ¶

func NewRunThumbnailReportTaskVMWithDefaults() *RunThumbnailReportTaskVM

NewRunThumbnailReportTaskVMWithDefaults instantiates a new RunThumbnailReportTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunThumbnailReportTaskVM) GetReportId ¶

func (o *RunThumbnailReportTaskVM) GetReportId() string

GetReportId returns the ReportId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunThumbnailReportTaskVM) GetReportIdOk ¶

func (o *RunThumbnailReportTaskVM) GetReportIdOk() (*string, bool)

GetReportIdOk returns a tuple with the ReportId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunThumbnailReportTaskVM) HasReportId ¶

func (o *RunThumbnailReportTaskVM) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (RunThumbnailReportTaskVM) MarshalJSON ¶

func (o RunThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*RunThumbnailReportTaskVM) SetReportId ¶

func (o *RunThumbnailReportTaskVM) SetReportId(v string)

SetReportId gets a reference to the given NullableString and assigns it to the ReportId field.

func (*RunThumbnailReportTaskVM) SetReportIdNil ¶

func (o *RunThumbnailReportTaskVM) SetReportIdNil()

SetReportIdNil sets the value for ReportId to be an explicit nil

func (RunThumbnailReportTaskVM) ToMap ¶

func (o RunThumbnailReportTaskVM) ToMap() (map[string]interface{}, error)

func (*RunThumbnailReportTaskVM) UnsetReportId ¶

func (o *RunThumbnailReportTaskVM) UnsetReportId()

UnsetReportId ensures that no value is present for ReportId, not even an explicit nil

type RunThumbnailTemplateTaskVM ¶

type RunThumbnailTemplateTaskVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
}

RunThumbnailTemplateTaskVM struct for RunThumbnailTemplateTaskVM

func NewRunThumbnailTemplateTaskVM ¶

func NewRunThumbnailTemplateTaskVM(t string) *RunThumbnailTemplateTaskVM

NewRunThumbnailTemplateTaskVM instantiates a new RunThumbnailTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunThumbnailTemplateTaskVMWithDefaults ¶

func NewRunThumbnailTemplateTaskVMWithDefaults() *RunThumbnailTemplateTaskVM

NewRunThumbnailTemplateTaskVMWithDefaults instantiates a new RunThumbnailTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunThumbnailTemplateTaskVM) GetTemplateId ¶

func (o *RunThumbnailTemplateTaskVM) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunThumbnailTemplateTaskVM) GetTemplateIdOk ¶

func (o *RunThumbnailTemplateTaskVM) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunThumbnailTemplateTaskVM) HasTemplateId ¶

func (o *RunThumbnailTemplateTaskVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (RunThumbnailTemplateTaskVM) MarshalJSON ¶

func (o RunThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*RunThumbnailTemplateTaskVM) SetTemplateId ¶

func (o *RunThumbnailTemplateTaskVM) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*RunThumbnailTemplateTaskVM) SetTemplateIdNil ¶

func (o *RunThumbnailTemplateTaskVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (RunThumbnailTemplateTaskVM) ToMap ¶

func (o RunThumbnailTemplateTaskVM) ToMap() (map[string]interface{}, error)

func (*RunThumbnailTemplateTaskVM) UnsetTemplateId ¶

func (o *RunThumbnailTemplateTaskVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type RunTransformTaskBaseVM ¶

type RunTransformTaskBaseVM struct {
	InputFile  *RunInputFileVM          `json:"inputFile,omitempty"`
	Locale     NullableString           `json:"locale,omitempty"`
	OutputFile *OutputFileVM            `json:"outputFile,omitempty"`
	Transports []RunTransportTaskBaseVM `json:"transports,omitempty"`
	T          string                   `json:"$t"`
}

RunTransformTaskBaseVM struct for RunTransformTaskBaseVM

func NewRunTransformTaskBaseVM ¶

func NewRunTransformTaskBaseVM(t string) *RunTransformTaskBaseVM

NewRunTransformTaskBaseVM instantiates a new RunTransformTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunTransformTaskBaseVMWithDefaults ¶

func NewRunTransformTaskBaseVMWithDefaults() *RunTransformTaskBaseVM

NewRunTransformTaskBaseVMWithDefaults instantiates a new RunTransformTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunTransformTaskBaseVM) GetInputFile ¶

func (o *RunTransformTaskBaseVM) GetInputFile() RunInputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*RunTransformTaskBaseVM) GetInputFileOk ¶

func (o *RunTransformTaskBaseVM) GetInputFileOk() (*RunInputFileVM, bool)

GetInputFileOk returns a tuple with the InputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunTransformTaskBaseVM) GetLocale ¶

func (o *RunTransformTaskBaseVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunTransformTaskBaseVM) GetLocaleOk ¶

func (o *RunTransformTaskBaseVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunTransformTaskBaseVM) GetOutputFile ¶

func (o *RunTransformTaskBaseVM) GetOutputFile() OutputFileVM

GetOutputFile returns the OutputFile field value if set, zero value otherwise.

func (*RunTransformTaskBaseVM) GetOutputFileOk ¶

func (o *RunTransformTaskBaseVM) GetOutputFileOk() (*OutputFileVM, bool)

GetOutputFileOk returns a tuple with the OutputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunTransformTaskBaseVM) GetT ¶

func (o *RunTransformTaskBaseVM) GetT() string

GetT returns the T field value

func (*RunTransformTaskBaseVM) GetTOk ¶

func (o *RunTransformTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*RunTransformTaskBaseVM) GetTransports ¶

func (o *RunTransformTaskBaseVM) GetTransports() []RunTransportTaskBaseVM

GetTransports returns the Transports field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunTransformTaskBaseVM) GetTransportsOk ¶

func (o *RunTransformTaskBaseVM) GetTransportsOk() ([]RunTransportTaskBaseVM, bool)

GetTransportsOk returns a tuple with the Transports field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunTransformTaskBaseVM) HasInputFile ¶

func (o *RunTransformTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (*RunTransformTaskBaseVM) HasLocale ¶

func (o *RunTransformTaskBaseVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*RunTransformTaskBaseVM) HasOutputFile ¶

func (o *RunTransformTaskBaseVM) HasOutputFile() bool

HasOutputFile returns a boolean if a field has been set.

func (*RunTransformTaskBaseVM) HasTransports ¶

func (o *RunTransformTaskBaseVM) HasTransports() bool

HasTransports returns a boolean if a field has been set.

func (RunTransformTaskBaseVM) MarshalJSON ¶

func (o RunTransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*RunTransformTaskBaseVM) SetInputFile ¶

func (o *RunTransformTaskBaseVM) SetInputFile(v RunInputFileVM)

SetInputFile gets a reference to the given RunInputFileVM and assigns it to the InputFile field.

func (*RunTransformTaskBaseVM) SetLocale ¶

func (o *RunTransformTaskBaseVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*RunTransformTaskBaseVM) SetLocaleNil ¶

func (o *RunTransformTaskBaseVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*RunTransformTaskBaseVM) SetOutputFile ¶

func (o *RunTransformTaskBaseVM) SetOutputFile(v OutputFileVM)

SetOutputFile gets a reference to the given OutputFileVM and assigns it to the OutputFile field.

func (*RunTransformTaskBaseVM) SetT ¶

func (o *RunTransformTaskBaseVM) SetT(v string)

SetT sets field value

func (*RunTransformTaskBaseVM) SetTransports ¶

func (o *RunTransformTaskBaseVM) SetTransports(v []RunTransportTaskBaseVM)

SetTransports gets a reference to the given []RunTransportTaskBaseVM and assigns it to the Transports field.

func (RunTransformTaskBaseVM) ToMap ¶

func (o RunTransformTaskBaseVM) ToMap() (map[string]interface{}, error)

func (*RunTransformTaskBaseVM) UnsetLocale ¶

func (o *RunTransformTaskBaseVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

type RunTransportTaskBaseVM ¶

type RunTransportTaskBaseVM struct {
	InputFile *RunInputFileVM `json:"inputFile,omitempty"`
	T         string          `json:"$t"`
}

RunTransportTaskBaseVM struct for RunTransportTaskBaseVM

func NewRunTransportTaskBaseVM ¶

func NewRunTransportTaskBaseVM(t string) *RunTransportTaskBaseVM

NewRunTransportTaskBaseVM instantiates a new RunTransportTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunTransportTaskBaseVMWithDefaults ¶

func NewRunTransportTaskBaseVMWithDefaults() *RunTransportTaskBaseVM

NewRunTransportTaskBaseVMWithDefaults instantiates a new RunTransportTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunTransportTaskBaseVM) GetInputFile ¶

func (o *RunTransportTaskBaseVM) GetInputFile() RunInputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*RunTransportTaskBaseVM) GetInputFileOk ¶

func (o *RunTransportTaskBaseVM) GetInputFileOk() (*RunInputFileVM, bool)

GetInputFileOk returns a tuple with the InputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunTransportTaskBaseVM) GetT ¶

func (o *RunTransportTaskBaseVM) GetT() string

GetT returns the T field value

func (*RunTransportTaskBaseVM) GetTOk ¶

func (o *RunTransportTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*RunTransportTaskBaseVM) HasInputFile ¶

func (o *RunTransportTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (RunTransportTaskBaseVM) MarshalJSON ¶

func (o RunTransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*RunTransportTaskBaseVM) SetInputFile ¶

func (o *RunTransportTaskBaseVM) SetInputFile(v RunInputFileVM)

SetInputFile gets a reference to the given RunInputFileVM and assigns it to the InputFile field.

func (*RunTransportTaskBaseVM) SetT ¶

func (o *RunTransportTaskBaseVM) SetT(v string)

SetT sets field value

func (RunTransportTaskBaseVM) ToMap ¶

func (o RunTransportTaskBaseVM) ToMap() (map[string]interface{}, error)

type RunWebhookTaskVM ¶

type RunWebhookTaskVM struct {
	Headers map[string]string `json:"headers,omitempty"`
	Url     NullableString    `json:"url,omitempty"`
}

RunWebhookTaskVM struct for RunWebhookTaskVM

func NewRunWebhookTaskVM ¶

func NewRunWebhookTaskVM(t string) *RunWebhookTaskVM

NewRunWebhookTaskVM instantiates a new RunWebhookTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunWebhookTaskVMWithDefaults ¶

func NewRunWebhookTaskVMWithDefaults() *RunWebhookTaskVM

NewRunWebhookTaskVMWithDefaults instantiates a new RunWebhookTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunWebhookTaskVM) GetHeaders ¶

func (o *RunWebhookTaskVM) GetHeaders() map[string]string

GetHeaders returns the Headers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunWebhookTaskVM) GetHeadersOk ¶

func (o *RunWebhookTaskVM) GetHeadersOk() (*map[string]string, bool)

GetHeadersOk returns a tuple with the Headers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunWebhookTaskVM) GetUrl ¶

func (o *RunWebhookTaskVM) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RunWebhookTaskVM) GetUrlOk ¶

func (o *RunWebhookTaskVM) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RunWebhookTaskVM) HasHeaders ¶

func (o *RunWebhookTaskVM) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*RunWebhookTaskVM) HasUrl ¶

func (o *RunWebhookTaskVM) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RunWebhookTaskVM) MarshalJSON ¶

func (o RunWebhookTaskVM) MarshalJSON() ([]byte, error)

func (*RunWebhookTaskVM) SetHeaders ¶

func (o *RunWebhookTaskVM) SetHeaders(v map[string]string)

SetHeaders gets a reference to the given map[string]string and assigns it to the Headers field.

func (*RunWebhookTaskVM) SetUrl ¶

func (o *RunWebhookTaskVM) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*RunWebhookTaskVM) SetUrlNil ¶

func (o *RunWebhookTaskVM) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (RunWebhookTaskVM) ToMap ¶

func (o RunWebhookTaskVM) ToMap() (map[string]interface{}, error)

func (*RunWebhookTaskVM) UnsetUrl ¶

func (o *RunWebhookTaskVM) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type SaveMode ¶

type SaveMode string

SaveMode the model 'SaveMode'

const (
	ALL      SaveMode = "All"
	ORIGINAL SaveMode = "Original"
	USER     SaveMode = "User"
	ROLE     SaveMode = "Role"
	SECURITY SaveMode = "Security"
	DENY     SaveMode = "Deny"
	CUSTOM   SaveMode = "Custom"
)

List of SaveMode

func NewSaveModeFromValue ¶

func NewSaveModeFromValue(v string) (*SaveMode, error)

NewSaveModeFromValue returns a pointer to a valid SaveMode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SaveMode) IsValid ¶

func (v SaveMode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SaveMode) Ptr ¶

func (v SaveMode) Ptr() *SaveMode

Ptr returns reference to SaveMode value

func (*SaveMode) UnmarshalJSON ¶

func (v *SaveMode) UnmarshalJSON(src []byte) error

type SelectedFilesForDeletingVM ¶

type SelectedFilesForDeletingVM struct {
	IsBin         *bool          `json:"isBin,omitempty"`
	FolderId      NullableString `json:"folderId,omitempty"`
	SearchPattern NullableString `json:"searchPattern,omitempty"`
	UseRegex      *bool          `json:"useRegex,omitempty"`
}

SelectedFilesForDeletingVM struct for SelectedFilesForDeletingVM

func NewSelectedFilesForDeletingVM ¶

func NewSelectedFilesForDeletingVM() *SelectedFilesForDeletingVM

NewSelectedFilesForDeletingVM instantiates a new SelectedFilesForDeletingVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelectedFilesForDeletingVMWithDefaults ¶

func NewSelectedFilesForDeletingVMWithDefaults() *SelectedFilesForDeletingVM

NewSelectedFilesForDeletingVMWithDefaults instantiates a new SelectedFilesForDeletingVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SelectedFilesForDeletingVM) GetFolderId ¶

func (o *SelectedFilesForDeletingVM) GetFolderId() string

GetFolderId returns the FolderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectedFilesForDeletingVM) GetFolderIdOk ¶

func (o *SelectedFilesForDeletingVM) GetFolderIdOk() (*string, bool)

GetFolderIdOk returns a tuple with the FolderId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelectedFilesForDeletingVM) GetIsBin ¶

func (o *SelectedFilesForDeletingVM) GetIsBin() bool

GetIsBin returns the IsBin field value if set, zero value otherwise.

func (*SelectedFilesForDeletingVM) GetIsBinOk ¶

func (o *SelectedFilesForDeletingVM) GetIsBinOk() (*bool, bool)

GetIsBinOk returns a tuple with the IsBin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelectedFilesForDeletingVM) GetSearchPattern ¶

func (o *SelectedFilesForDeletingVM) GetSearchPattern() string

GetSearchPattern returns the SearchPattern field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectedFilesForDeletingVM) GetSearchPatternOk ¶

func (o *SelectedFilesForDeletingVM) GetSearchPatternOk() (*string, bool)

GetSearchPatternOk returns a tuple with the SearchPattern field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelectedFilesForDeletingVM) GetUseRegex ¶

func (o *SelectedFilesForDeletingVM) GetUseRegex() bool

GetUseRegex returns the UseRegex field value if set, zero value otherwise.

func (*SelectedFilesForDeletingVM) GetUseRegexOk ¶

func (o *SelectedFilesForDeletingVM) GetUseRegexOk() (*bool, bool)

GetUseRegexOk returns a tuple with the UseRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelectedFilesForDeletingVM) HasFolderId ¶

func (o *SelectedFilesForDeletingVM) HasFolderId() bool

HasFolderId returns a boolean if a field has been set.

func (*SelectedFilesForDeletingVM) HasIsBin ¶

func (o *SelectedFilesForDeletingVM) HasIsBin() bool

HasIsBin returns a boolean if a field has been set.

func (*SelectedFilesForDeletingVM) HasSearchPattern ¶

func (o *SelectedFilesForDeletingVM) HasSearchPattern() bool

HasSearchPattern returns a boolean if a field has been set.

func (*SelectedFilesForDeletingVM) HasUseRegex ¶

func (o *SelectedFilesForDeletingVM) HasUseRegex() bool

HasUseRegex returns a boolean if a field has been set.

func (SelectedFilesForDeletingVM) MarshalJSON ¶

func (o SelectedFilesForDeletingVM) MarshalJSON() ([]byte, error)

func (*SelectedFilesForDeletingVM) SetFolderId ¶

func (o *SelectedFilesForDeletingVM) SetFolderId(v string)

SetFolderId gets a reference to the given NullableString and assigns it to the FolderId field.

func (*SelectedFilesForDeletingVM) SetFolderIdNil ¶

func (o *SelectedFilesForDeletingVM) SetFolderIdNil()

SetFolderIdNil sets the value for FolderId to be an explicit nil

func (*SelectedFilesForDeletingVM) SetIsBin ¶

func (o *SelectedFilesForDeletingVM) SetIsBin(v bool)

SetIsBin gets a reference to the given bool and assigns it to the IsBin field.

func (*SelectedFilesForDeletingVM) SetSearchPattern ¶

func (o *SelectedFilesForDeletingVM) SetSearchPattern(v string)

SetSearchPattern gets a reference to the given NullableString and assigns it to the SearchPattern field.

func (*SelectedFilesForDeletingVM) SetSearchPatternNil ¶

func (o *SelectedFilesForDeletingVM) SetSearchPatternNil()

SetSearchPatternNil sets the value for SearchPattern to be an explicit nil

func (*SelectedFilesForDeletingVM) SetUseRegex ¶

func (o *SelectedFilesForDeletingVM) SetUseRegex(v bool)

SetUseRegex gets a reference to the given bool and assigns it to the UseRegex field.

func (SelectedFilesForDeletingVM) ToMap ¶

func (o SelectedFilesForDeletingVM) ToMap() (map[string]interface{}, error)

func (*SelectedFilesForDeletingVM) UnsetFolderId ¶

func (o *SelectedFilesForDeletingVM) UnsetFolderId()

UnsetFolderId ensures that no value is present for FolderId, not even an explicit nil

func (*SelectedFilesForDeletingVM) UnsetSearchPattern ¶

func (o *SelectedFilesForDeletingVM) UnsetSearchPattern()

UnsetSearchPattern ensures that no value is present for SearchPattern, not even an explicit nil

type SelectedFilesVM ¶

type SelectedFilesVM struct {
	IsAllSelected *bool    `json:"isAllSelected,omitempty"`
	Files         []string `json:"files,omitempty"`
	Folders       []string `json:"folders,omitempty"`
}

SelectedFilesVM struct for SelectedFilesVM

func NewSelectedFilesVM ¶

func NewSelectedFilesVM() *SelectedFilesVM

NewSelectedFilesVM instantiates a new SelectedFilesVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSelectedFilesVMWithDefaults ¶

func NewSelectedFilesVMWithDefaults() *SelectedFilesVM

NewSelectedFilesVMWithDefaults instantiates a new SelectedFilesVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SelectedFilesVM) GetFiles ¶

func (o *SelectedFilesVM) GetFiles() []string

GetFiles returns the Files field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectedFilesVM) GetFilesOk ¶

func (o *SelectedFilesVM) GetFilesOk() ([]string, bool)

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelectedFilesVM) GetFolders ¶

func (o *SelectedFilesVM) GetFolders() []string

GetFolders returns the Folders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectedFilesVM) GetFoldersOk ¶

func (o *SelectedFilesVM) GetFoldersOk() ([]string, bool)

GetFoldersOk returns a tuple with the Folders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelectedFilesVM) GetIsAllSelected ¶

func (o *SelectedFilesVM) GetIsAllSelected() bool

GetIsAllSelected returns the IsAllSelected field value if set, zero value otherwise.

func (*SelectedFilesVM) GetIsAllSelectedOk ¶

func (o *SelectedFilesVM) GetIsAllSelectedOk() (*bool, bool)

GetIsAllSelectedOk returns a tuple with the IsAllSelected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelectedFilesVM) HasFiles ¶

func (o *SelectedFilesVM) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*SelectedFilesVM) HasFolders ¶

func (o *SelectedFilesVM) HasFolders() bool

HasFolders returns a boolean if a field has been set.

func (*SelectedFilesVM) HasIsAllSelected ¶

func (o *SelectedFilesVM) HasIsAllSelected() bool

HasIsAllSelected returns a boolean if a field has been set.

func (SelectedFilesVM) MarshalJSON ¶

func (o SelectedFilesVM) MarshalJSON() ([]byte, error)

func (*SelectedFilesVM) SetFiles ¶

func (o *SelectedFilesVM) SetFiles(v []string)

SetFiles gets a reference to the given []string and assigns it to the Files field.

func (*SelectedFilesVM) SetFolders ¶

func (o *SelectedFilesVM) SetFolders(v []string)

SetFolders gets a reference to the given []string and assigns it to the Folders field.

func (*SelectedFilesVM) SetIsAllSelected ¶

func (o *SelectedFilesVM) SetIsAllSelected(v bool)

SetIsAllSelected gets a reference to the given bool and assigns it to the IsAllSelected field.

func (SelectedFilesVM) ToMap ¶

func (o SelectedFilesVM) ToMap() (map[string]interface{}, error)

type ServerConfiguration ¶

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurationVM ¶

type ServerConfigurationVM struct {
	Title               NullableString `json:"title,omitempty"`
	LogoLink            NullableString `json:"logoLink,omitempty"`
	Copyright           NullableString `json:"copyright,omitempty"`
	CorporateServerMode *bool          `json:"corporateServerMode,omitempty"`
	LastSLAVersion      NullableTime   `json:"lastSLAVersion,omitempty"`
	IsDisabled          *bool          `json:"isDisabled,omitempty"`
	Frontend            *FrontendApp   `json:"frontend,omitempty"`
	InvariantLocale     NullableString `json:"invariantLocale,omitempty"`
	Auth                *AuthConfigVM  `json:"auth,omitempty"`
	DesignerForAnons    *bool          `json:"designerForAnons,omitempty"`
	SlaLink             NullableString `json:"slaLink,omitempty"`
	FirstStepsVideoLink NullableString `json:"firstStepsVideoLink,omitempty"`
	AboutLink           NullableString `json:"aboutLink,omitempty"`
	HomePageLink        NullableString `json:"homePageLink,omitempty"`
	AuthServerName      NullableString `json:"authServerName,omitempty"`
	UpdateWorkspaceLink NullableString `json:"updateWorkspaceLink,omitempty"`
}

ServerConfigurationVM struct for ServerConfigurationVM

func NewServerConfigurationVM ¶

func NewServerConfigurationVM() *ServerConfigurationVM

NewServerConfigurationVM instantiates a new ServerConfigurationVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServerConfigurationVMWithDefaults ¶

func NewServerConfigurationVMWithDefaults() *ServerConfigurationVM

NewServerConfigurationVMWithDefaults instantiates a new ServerConfigurationVM object This constructor 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 *ServerConfigurationVM) GetAboutLink() string

GetAboutLink returns the AboutLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetAboutLinkOk ¶

func (o *ServerConfigurationVM) GetAboutLinkOk() (*string, bool)

GetAboutLinkOk returns a tuple with the AboutLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetAuth ¶

func (o *ServerConfigurationVM) GetAuth() AuthConfigVM

GetAuth returns the Auth field value if set, zero value otherwise.

func (*ServerConfigurationVM) GetAuthOk ¶

func (o *ServerConfigurationVM) GetAuthOk() (*AuthConfigVM, bool)

GetAuthOk returns a tuple with the Auth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServerConfigurationVM) GetAuthServerName ¶

func (o *ServerConfigurationVM) GetAuthServerName() string

GetAuthServerName returns the AuthServerName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetAuthServerNameOk ¶

func (o *ServerConfigurationVM) GetAuthServerNameOk() (*string, bool)

GetAuthServerNameOk returns a tuple with the AuthServerName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetCopyright ¶

func (o *ServerConfigurationVM) GetCopyright() string

GetCopyright returns the Copyright field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetCopyrightOk ¶

func (o *ServerConfigurationVM) GetCopyrightOk() (*string, bool)

GetCopyrightOk returns a tuple with the Copyright field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetCorporateServerMode ¶

func (o *ServerConfigurationVM) GetCorporateServerMode() bool

GetCorporateServerMode returns the CorporateServerMode field value if set, zero value otherwise.

func (*ServerConfigurationVM) GetCorporateServerModeOk ¶

func (o *ServerConfigurationVM) GetCorporateServerModeOk() (*bool, bool)

GetCorporateServerModeOk returns a tuple with the CorporateServerMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServerConfigurationVM) GetDesignerForAnons ¶

func (o *ServerConfigurationVM) GetDesignerForAnons() bool

GetDesignerForAnons returns the DesignerForAnons field value if set, zero value otherwise.

func (*ServerConfigurationVM) GetDesignerForAnonsOk ¶

func (o *ServerConfigurationVM) GetDesignerForAnonsOk() (*bool, bool)

GetDesignerForAnonsOk returns a tuple with the DesignerForAnons field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ServerConfigurationVM) GetFirstStepsVideoLink() string

GetFirstStepsVideoLink returns the FirstStepsVideoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetFirstStepsVideoLinkOk ¶

func (o *ServerConfigurationVM) GetFirstStepsVideoLinkOk() (*string, bool)

GetFirstStepsVideoLinkOk returns a tuple with the FirstStepsVideoLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetFrontend ¶

func (o *ServerConfigurationVM) GetFrontend() FrontendApp

GetFrontend returns the Frontend field value if set, zero value otherwise.

func (*ServerConfigurationVM) GetFrontendOk ¶

func (o *ServerConfigurationVM) GetFrontendOk() (*FrontendApp, bool)

GetFrontendOk returns a tuple with the Frontend field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ServerConfigurationVM) GetHomePageLink() string

GetHomePageLink returns the HomePageLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetHomePageLinkOk ¶

func (o *ServerConfigurationVM) GetHomePageLinkOk() (*string, bool)

GetHomePageLinkOk returns a tuple with the HomePageLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetInvariantLocale ¶

func (o *ServerConfigurationVM) GetInvariantLocale() string

GetInvariantLocale returns the InvariantLocale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetInvariantLocaleOk ¶

func (o *ServerConfigurationVM) GetInvariantLocaleOk() (*string, bool)

GetInvariantLocaleOk returns a tuple with the InvariantLocale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetIsDisabled ¶

func (o *ServerConfigurationVM) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*ServerConfigurationVM) GetIsDisabledOk ¶

func (o *ServerConfigurationVM) GetIsDisabledOk() (*bool, bool)

GetIsDisabledOk returns a tuple with the IsDisabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServerConfigurationVM) GetLastSLAVersion ¶

func (o *ServerConfigurationVM) GetLastSLAVersion() time.Time

GetLastSLAVersion returns the LastSLAVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetLastSLAVersionOk ¶

func (o *ServerConfigurationVM) GetLastSLAVersionOk() (*time.Time, bool)

GetLastSLAVersionOk returns a tuple with the LastSLAVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (o *ServerConfigurationVM) GetLogoLink() string

GetLogoLink returns the LogoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetLogoLinkOk ¶

func (o *ServerConfigurationVM) GetLogoLinkOk() (*string, bool)

GetLogoLinkOk returns a tuple with the LogoLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (o *ServerConfigurationVM) GetSlaLink() string

GetSlaLink returns the SlaLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetSlaLinkOk ¶

func (o *ServerConfigurationVM) GetSlaLinkOk() (*string, bool)

GetSlaLinkOk returns a tuple with the SlaLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServerConfigurationVM) GetTitle ¶

func (o *ServerConfigurationVM) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetTitleOk ¶

func (o *ServerConfigurationVM) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (o *ServerConfigurationVM) GetUpdateWorkspaceLink() string

GetUpdateWorkspaceLink returns the UpdateWorkspaceLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServerConfigurationVM) GetUpdateWorkspaceLinkOk ¶

func (o *ServerConfigurationVM) GetUpdateWorkspaceLinkOk() (*string, bool)

GetUpdateWorkspaceLinkOk returns a tuple with the UpdateWorkspaceLink field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (o *ServerConfigurationVM) HasAboutLink() bool

HasAboutLink returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasAuth ¶

func (o *ServerConfigurationVM) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasAuthServerName ¶

func (o *ServerConfigurationVM) HasAuthServerName() bool

HasAuthServerName returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasCopyright ¶

func (o *ServerConfigurationVM) HasCopyright() bool

HasCopyright returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasCorporateServerMode ¶

func (o *ServerConfigurationVM) HasCorporateServerMode() bool

HasCorporateServerMode returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasDesignerForAnons ¶

func (o *ServerConfigurationVM) HasDesignerForAnons() bool

HasDesignerForAnons returns a boolean if a field has been set.

func (o *ServerConfigurationVM) HasFirstStepsVideoLink() bool

HasFirstStepsVideoLink returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasFrontend ¶

func (o *ServerConfigurationVM) HasFrontend() bool

HasFrontend returns a boolean if a field has been set.

func (o *ServerConfigurationVM) HasHomePageLink() bool

HasHomePageLink returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasInvariantLocale ¶

func (o *ServerConfigurationVM) HasInvariantLocale() bool

HasInvariantLocale returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasIsDisabled ¶

func (o *ServerConfigurationVM) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasLastSLAVersion ¶

func (o *ServerConfigurationVM) HasLastSLAVersion() bool

HasLastSLAVersion returns a boolean if a field has been set.

func (o *ServerConfigurationVM) HasLogoLink() bool

HasLogoLink returns a boolean if a field has been set.

func (o *ServerConfigurationVM) HasSlaLink() bool

HasSlaLink returns a boolean if a field has been set.

func (*ServerConfigurationVM) HasTitle ¶

func (o *ServerConfigurationVM) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (o *ServerConfigurationVM) HasUpdateWorkspaceLink() bool

HasUpdateWorkspaceLink returns a boolean if a field has been set.

func (ServerConfigurationVM) MarshalJSON ¶

func (o ServerConfigurationVM) MarshalJSON() ([]byte, error)
func (o *ServerConfigurationVM) SetAboutLink(v string)

SetAboutLink gets a reference to the given NullableString and assigns it to the AboutLink field.

func (*ServerConfigurationVM) SetAboutLinkNil ¶

func (o *ServerConfigurationVM) SetAboutLinkNil()

SetAboutLinkNil sets the value for AboutLink to be an explicit nil

func (*ServerConfigurationVM) SetAuth ¶

func (o *ServerConfigurationVM) SetAuth(v AuthConfigVM)

SetAuth gets a reference to the given AuthConfigVM and assigns it to the Auth field.

func (*ServerConfigurationVM) SetAuthServerName ¶

func (o *ServerConfigurationVM) SetAuthServerName(v string)

SetAuthServerName gets a reference to the given NullableString and assigns it to the AuthServerName field.

func (*ServerConfigurationVM) SetAuthServerNameNil ¶

func (o *ServerConfigurationVM) SetAuthServerNameNil()

SetAuthServerNameNil sets the value for AuthServerName to be an explicit nil

func (*ServerConfigurationVM) SetCopyright ¶

func (o *ServerConfigurationVM) SetCopyright(v string)

SetCopyright gets a reference to the given NullableString and assigns it to the Copyright field.

func (*ServerConfigurationVM) SetCopyrightNil ¶

func (o *ServerConfigurationVM) SetCopyrightNil()

SetCopyrightNil sets the value for Copyright to be an explicit nil

func (*ServerConfigurationVM) SetCorporateServerMode ¶

func (o *ServerConfigurationVM) SetCorporateServerMode(v bool)

SetCorporateServerMode gets a reference to the given bool and assigns it to the CorporateServerMode field.

func (*ServerConfigurationVM) SetDesignerForAnons ¶

func (o *ServerConfigurationVM) SetDesignerForAnons(v bool)

SetDesignerForAnons gets a reference to the given bool and assigns it to the DesignerForAnons field.

func (o *ServerConfigurationVM) SetFirstStepsVideoLink(v string)

SetFirstStepsVideoLink gets a reference to the given NullableString and assigns it to the FirstStepsVideoLink field.

func (*ServerConfigurationVM) SetFirstStepsVideoLinkNil ¶

func (o *ServerConfigurationVM) SetFirstStepsVideoLinkNil()

SetFirstStepsVideoLinkNil sets the value for FirstStepsVideoLink to be an explicit nil

func (*ServerConfigurationVM) SetFrontend ¶

func (o *ServerConfigurationVM) SetFrontend(v FrontendApp)

SetFrontend gets a reference to the given FrontendApp and assigns it to the Frontend field.

func (o *ServerConfigurationVM) SetHomePageLink(v string)

SetHomePageLink gets a reference to the given NullableString and assigns it to the HomePageLink field.

func (*ServerConfigurationVM) SetHomePageLinkNil ¶

func (o *ServerConfigurationVM) SetHomePageLinkNil()

SetHomePageLinkNil sets the value for HomePageLink to be an explicit nil

func (*ServerConfigurationVM) SetInvariantLocale ¶

func (o *ServerConfigurationVM) SetInvariantLocale(v string)

SetInvariantLocale gets a reference to the given NullableString and assigns it to the InvariantLocale field.

func (*ServerConfigurationVM) SetInvariantLocaleNil ¶

func (o *ServerConfigurationVM) SetInvariantLocaleNil()

SetInvariantLocaleNil sets the value for InvariantLocale to be an explicit nil

func (*ServerConfigurationVM) SetIsDisabled ¶

func (o *ServerConfigurationVM) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*ServerConfigurationVM) SetLastSLAVersion ¶

func (o *ServerConfigurationVM) SetLastSLAVersion(v time.Time)

SetLastSLAVersion gets a reference to the given NullableTime and assigns it to the LastSLAVersion field.

func (*ServerConfigurationVM) SetLastSLAVersionNil ¶

func (o *ServerConfigurationVM) SetLastSLAVersionNil()

SetLastSLAVersionNil sets the value for LastSLAVersion to be an explicit nil

func (o *ServerConfigurationVM) SetLogoLink(v string)

SetLogoLink gets a reference to the given NullableString and assigns it to the LogoLink field.

func (*ServerConfigurationVM) SetLogoLinkNil ¶

func (o *ServerConfigurationVM) SetLogoLinkNil()

SetLogoLinkNil sets the value for LogoLink to be an explicit nil

func (o *ServerConfigurationVM) SetSlaLink(v string)

SetSlaLink gets a reference to the given NullableString and assigns it to the SlaLink field.

func (*ServerConfigurationVM) SetSlaLinkNil ¶

func (o *ServerConfigurationVM) SetSlaLinkNil()

SetSlaLinkNil sets the value for SlaLink to be an explicit nil

func (*ServerConfigurationVM) SetTitle ¶

func (o *ServerConfigurationVM) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*ServerConfigurationVM) SetTitleNil ¶

func (o *ServerConfigurationVM) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (o *ServerConfigurationVM) SetUpdateWorkspaceLink(v string)

SetUpdateWorkspaceLink gets a reference to the given NullableString and assigns it to the UpdateWorkspaceLink field.

func (*ServerConfigurationVM) SetUpdateWorkspaceLinkNil ¶

func (o *ServerConfigurationVM) SetUpdateWorkspaceLinkNil()

SetUpdateWorkspaceLinkNil sets the value for UpdateWorkspaceLink to be an explicit nil

func (ServerConfigurationVM) ToMap ¶

func (o ServerConfigurationVM) ToMap() (map[string]interface{}, error)
func (o *ServerConfigurationVM) UnsetAboutLink()

UnsetAboutLink ensures that no value is present for AboutLink, not even an explicit nil

func (*ServerConfigurationVM) UnsetAuthServerName ¶

func (o *ServerConfigurationVM) UnsetAuthServerName()

UnsetAuthServerName ensures that no value is present for AuthServerName, not even an explicit nil

func (*ServerConfigurationVM) UnsetCopyright ¶

func (o *ServerConfigurationVM) UnsetCopyright()

UnsetCopyright ensures that no value is present for Copyright, not even an explicit nil

func (o *ServerConfigurationVM) UnsetFirstStepsVideoLink()

UnsetFirstStepsVideoLink ensures that no value is present for FirstStepsVideoLink, not even an explicit nil

func (o *ServerConfigurationVM) UnsetHomePageLink()

UnsetHomePageLink ensures that no value is present for HomePageLink, not even an explicit nil

func (*ServerConfigurationVM) UnsetInvariantLocale ¶

func (o *ServerConfigurationVM) UnsetInvariantLocale()

UnsetInvariantLocale ensures that no value is present for InvariantLocale, not even an explicit nil

func (*ServerConfigurationVM) UnsetLastSLAVersion ¶

func (o *ServerConfigurationVM) UnsetLastSLAVersion()

UnsetLastSLAVersion ensures that no value is present for LastSLAVersion, not even an explicit nil

func (o *ServerConfigurationVM) UnsetLogoLink()

UnsetLogoLink ensures that no value is present for LogoLink, not even an explicit nil

func (o *ServerConfigurationVM) UnsetSlaLink()

UnsetSlaLink ensures that no value is present for SlaLink, not even an explicit nil

func (*ServerConfigurationVM) UnsetTitle ¶

func (o *ServerConfigurationVM) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (o *ServerConfigurationVM) UnsetUpdateWorkspaceLink()

UnsetUpdateWorkspaceLink ensures that no value is present for UpdateWorkspaceLink, not even an explicit nil

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 SubscriptionAdministrate ¶

type SubscriptionAdministrate int32

SubscriptionAdministrate the model 'SubscriptionAdministrate'

func NewSubscriptionAdministrateFromValue ¶

func NewSubscriptionAdministrateFromValue(v int32) (*SubscriptionAdministrate, error)

NewSubscriptionAdministrateFromValue returns a pointer to a valid SubscriptionAdministrate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionAdministrate) IsValid ¶

func (v SubscriptionAdministrate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionAdministrate) Ptr ¶

Ptr returns reference to SubscriptionAdministrate value

func (*SubscriptionAdministrate) UnmarshalJSON ¶

func (v *SubscriptionAdministrate) UnmarshalJSON(src []byte) error

type SubscriptionCreate ¶

type SubscriptionCreate int32

SubscriptionCreate the model 'SubscriptionCreate'

func NewSubscriptionCreateFromValue ¶

func NewSubscriptionCreateFromValue(v int32) (*SubscriptionCreate, error)

NewSubscriptionCreateFromValue returns a pointer to a valid SubscriptionCreate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionCreate) IsValid ¶

func (v SubscriptionCreate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionCreate) Ptr ¶

Ptr returns reference to SubscriptionCreate value

func (*SubscriptionCreate) UnmarshalJSON ¶

func (v *SubscriptionCreate) UnmarshalJSON(src []byte) error

type SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission ¶

type SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission struct {
	Create       *SubscriptionCreate       `json:"create,omitempty"`
	Delete       *SubscriptionDelete       `json:"delete,omitempty"`
	Execute      *SubscriptionExecute      `json:"execute,omitempty"`
	Get          *SubscriptionGet          `json:"get,omitempty"`
	Update       *SubscriptionUpdate       `json:"update,omitempty"`
	Administrate *SubscriptionAdministrate `json:"administrate,omitempty"`
}

SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission struct for SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission

func NewSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission ¶

func NewSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission() *SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission

NewSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission instantiates a new SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissionWithDefaults ¶

func NewSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissionWithDefaults() *SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission

NewSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissionWithDefaults instantiates a new SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetAdministrate ¶

GetAdministrate returns the Administrate field value if set, zero value otherwise.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetAdministrateOk ¶

GetAdministrateOk returns a tuple with the Administrate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetCreate ¶

GetCreate returns the Create field value if set, zero value otherwise.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetCreateOk ¶

GetCreateOk returns a tuple with the Create field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetDelete ¶

GetDelete returns the Delete field value if set, zero value otherwise.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetDeleteOk ¶

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetExecute ¶

GetExecute returns the Execute field value if set, zero value otherwise.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetExecuteOk ¶

GetExecuteOk returns a tuple with the Execute field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetGet ¶

GetGet returns the Get field value if set, zero value otherwise.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetGetOk ¶

GetGetOk returns a tuple with the Get field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetUpdate ¶

GetUpdate returns the Update field value if set, zero value otherwise.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) GetUpdateOk ¶

GetUpdateOk returns a tuple with the Update field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) HasAdministrate ¶

HasAdministrate returns a boolean if a field has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) HasCreate ¶

HasCreate returns a boolean if a field has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) HasDelete ¶

HasDelete returns a boolean if a field has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) HasExecute ¶

HasExecute returns a boolean if a field has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) HasGet ¶

HasGet returns a boolean if a field has been set.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) HasUpdate ¶

HasUpdate returns a boolean if a field has been set.

func (SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) MarshalJSON ¶

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) SetAdministrate ¶

SetAdministrate gets a reference to the given SubscriptionAdministrate and assigns it to the Administrate field.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) SetCreate ¶

SetCreate gets a reference to the given SubscriptionCreate and assigns it to the Create field.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) SetDelete ¶

SetDelete gets a reference to the given SubscriptionDelete and assigns it to the Delete field.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) SetExecute ¶

SetExecute gets a reference to the given SubscriptionExecute and assigns it to the Execute field.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) SetGet ¶

SetGet gets a reference to the given SubscriptionGet and assigns it to the Get field.

func (*SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) SetUpdate ¶

SetUpdate gets a reference to the given SubscriptionUpdate and assigns it to the Update field.

func (SubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermission) ToMap ¶

type SubscriptionDelete ¶

type SubscriptionDelete int32

SubscriptionDelete the model 'SubscriptionDelete'

func NewSubscriptionDeleteFromValue ¶

func NewSubscriptionDeleteFromValue(v int32) (*SubscriptionDelete, error)

NewSubscriptionDeleteFromValue returns a pointer to a valid SubscriptionDelete for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionDelete) IsValid ¶

func (v SubscriptionDelete) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionDelete) Ptr ¶

Ptr returns reference to SubscriptionDelete value

func (*SubscriptionDelete) UnmarshalJSON ¶

func (v *SubscriptionDelete) UnmarshalJSON(src []byte) error

type SubscriptionExecute ¶

type SubscriptionExecute int32

SubscriptionExecute the model 'SubscriptionExecute'

func NewSubscriptionExecuteFromValue ¶

func NewSubscriptionExecuteFromValue(v int32) (*SubscriptionExecute, error)

NewSubscriptionExecuteFromValue returns a pointer to a valid SubscriptionExecute for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionExecute) IsValid ¶

func (v SubscriptionExecute) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionExecute) Ptr ¶

Ptr returns reference to SubscriptionExecute value

func (*SubscriptionExecute) UnmarshalJSON ¶

func (v *SubscriptionExecute) UnmarshalJSON(src []byte) error

type SubscriptionFolder ¶

type SubscriptionFolder struct {
	FolderId  NullableString `json:"folderId,omitempty"`
	BytesUsed *int64         `json:"bytesUsed,omitempty"`
}

SubscriptionFolder struct for SubscriptionFolder

func NewSubscriptionFolder ¶

func NewSubscriptionFolder() *SubscriptionFolder

NewSubscriptionFolder instantiates a new SubscriptionFolder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionFolderWithDefaults ¶

func NewSubscriptionFolderWithDefaults() *SubscriptionFolder

NewSubscriptionFolderWithDefaults instantiates a new SubscriptionFolder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionFolder) GetBytesUsed ¶

func (o *SubscriptionFolder) GetBytesUsed() int64

GetBytesUsed returns the BytesUsed field value if set, zero value otherwise.

func (*SubscriptionFolder) GetBytesUsedOk ¶

func (o *SubscriptionFolder) GetBytesUsedOk() (*int64, bool)

GetBytesUsedOk returns a tuple with the BytesUsed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionFolder) GetFolderId ¶

func (o *SubscriptionFolder) GetFolderId() string

GetFolderId returns the FolderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionFolder) GetFolderIdOk ¶

func (o *SubscriptionFolder) GetFolderIdOk() (*string, bool)

GetFolderIdOk returns a tuple with the FolderId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionFolder) HasBytesUsed ¶

func (o *SubscriptionFolder) HasBytesUsed() bool

HasBytesUsed returns a boolean if a field has been set.

func (*SubscriptionFolder) HasFolderId ¶

func (o *SubscriptionFolder) HasFolderId() bool

HasFolderId returns a boolean if a field has been set.

func (SubscriptionFolder) MarshalJSON ¶

func (o SubscriptionFolder) MarshalJSON() ([]byte, error)

func (*SubscriptionFolder) SetBytesUsed ¶

func (o *SubscriptionFolder) SetBytesUsed(v int64)

SetBytesUsed gets a reference to the given int64 and assigns it to the BytesUsed field.

func (*SubscriptionFolder) SetFolderId ¶

func (o *SubscriptionFolder) SetFolderId(v string)

SetFolderId gets a reference to the given NullableString and assigns it to the FolderId field.

func (*SubscriptionFolder) SetFolderIdNil ¶

func (o *SubscriptionFolder) SetFolderIdNil()

SetFolderIdNil sets the value for FolderId to be an explicit nil

func (SubscriptionFolder) ToMap ¶

func (o SubscriptionFolder) ToMap() (map[string]interface{}, error)

func (*SubscriptionFolder) UnsetFolderId ¶

func (o *SubscriptionFolder) UnsetFolderId()

UnsetFolderId ensures that no value is present for FolderId, not even an explicit nil

type SubscriptionGet ¶

type SubscriptionGet int32

SubscriptionGet the model 'SubscriptionGet'

func NewSubscriptionGetFromValue ¶

func NewSubscriptionGetFromValue(v int32) (*SubscriptionGet, error)

NewSubscriptionGetFromValue returns a pointer to a valid SubscriptionGet for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionGet) IsValid ¶

func (v SubscriptionGet) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionGet) Ptr ¶

Ptr returns reference to SubscriptionGet value

func (*SubscriptionGet) UnmarshalJSON ¶

func (v *SubscriptionGet) UnmarshalJSON(src []byte) error

type SubscriptionGroupsApiService ¶

type SubscriptionGroupsApiService service

SubscriptionGroupsApiService SubscriptionGroupsApi service

func (*SubscriptionGroupsApiService) SubscriptionGroupsCountGroupsAsync ¶

func (a *SubscriptionGroupsApiService) SubscriptionGroupsCountGroupsAsync(ctx context.Context, subscriptionId string) ApiSubscriptionGroupsCountGroupsAsyncRequest

SubscriptionGroupsCountGroupsAsync Returns a number of groups in subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscripiton id
@return ApiSubscriptionGroupsCountGroupsAsyncRequest

func (*SubscriptionGroupsApiService) SubscriptionGroupsCountGroupsAsyncExecute ¶

func (a *SubscriptionGroupsApiService) SubscriptionGroupsCountGroupsAsyncExecute(r ApiSubscriptionGroupsCountGroupsAsyncRequest) (int64, *http.Response, error)

Execute executes the request

@return int64

func (*SubscriptionGroupsApiService) SubscriptionGroupsGetGroupsList ¶

func (a *SubscriptionGroupsApiService) SubscriptionGroupsGetGroupsList(ctx context.Context, subscriptionId string) ApiSubscriptionGroupsGetGroupsListRequest

SubscriptionGroupsGetGroupsList returns groups of the subscription or subscription user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscripiton id
@return ApiSubscriptionGroupsGetGroupsListRequest

func (*SubscriptionGroupsApiService) SubscriptionGroupsGetGroupsListExecute ¶

func (a *SubscriptionGroupsApiService) SubscriptionGroupsGetGroupsListExecute(r ApiSubscriptionGroupsGetGroupsListRequest) (*GroupsVM, *http.Response, error)

Execute executes the request

@return GroupsVM

type SubscriptionInviteVM ¶

type SubscriptionInviteVM struct {
	Usages        *int64         `json:"usages,omitempty"`
	Durable       *bool          `json:"durable,omitempty"`
	AccessToken   NullableString `json:"accessToken,omitempty"`
	ExpiredDate   *time.Time     `json:"expiredDate,omitempty"`
	AddedUsers    []InvitedUser  `json:"addedUsers,omitempty"`
	CreatorUserId NullableString `json:"creatorUserId,omitempty"`
}

SubscriptionInviteVM struct for SubscriptionInviteVM

func NewSubscriptionInviteVM ¶

func NewSubscriptionInviteVM() *SubscriptionInviteVM

NewSubscriptionInviteVM instantiates a new SubscriptionInviteVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionInviteVMWithDefaults ¶

func NewSubscriptionInviteVMWithDefaults() *SubscriptionInviteVM

NewSubscriptionInviteVMWithDefaults instantiates a new SubscriptionInviteVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionInviteVM) GetAccessToken ¶

func (o *SubscriptionInviteVM) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionInviteVM) GetAccessTokenOk ¶

func (o *SubscriptionInviteVM) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionInviteVM) GetAddedUsers ¶

func (o *SubscriptionInviteVM) GetAddedUsers() []InvitedUser

GetAddedUsers returns the AddedUsers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionInviteVM) GetAddedUsersOk ¶

func (o *SubscriptionInviteVM) GetAddedUsersOk() ([]InvitedUser, bool)

GetAddedUsersOk returns a tuple with the AddedUsers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionInviteVM) GetCreatorUserId ¶

func (o *SubscriptionInviteVM) GetCreatorUserId() string

GetCreatorUserId returns the CreatorUserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionInviteVM) GetCreatorUserIdOk ¶

func (o *SubscriptionInviteVM) GetCreatorUserIdOk() (*string, bool)

GetCreatorUserIdOk returns a tuple with the CreatorUserId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionInviteVM) GetDurable ¶

func (o *SubscriptionInviteVM) GetDurable() bool

GetDurable returns the Durable field value if set, zero value otherwise.

func (*SubscriptionInviteVM) GetDurableOk ¶

func (o *SubscriptionInviteVM) GetDurableOk() (*bool, bool)

GetDurableOk returns a tuple with the Durable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionInviteVM) GetExpiredDate ¶

func (o *SubscriptionInviteVM) GetExpiredDate() time.Time

GetExpiredDate returns the ExpiredDate field value if set, zero value otherwise.

func (*SubscriptionInviteVM) GetExpiredDateOk ¶

func (o *SubscriptionInviteVM) GetExpiredDateOk() (*time.Time, bool)

GetExpiredDateOk returns a tuple with the ExpiredDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionInviteVM) GetUsages ¶

func (o *SubscriptionInviteVM) GetUsages() int64

GetUsages returns the Usages field value if set, zero value otherwise.

func (*SubscriptionInviteVM) GetUsagesOk ¶

func (o *SubscriptionInviteVM) GetUsagesOk() (*int64, bool)

GetUsagesOk returns a tuple with the Usages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionInviteVM) HasAccessToken ¶

func (o *SubscriptionInviteVM) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*SubscriptionInviteVM) HasAddedUsers ¶

func (o *SubscriptionInviteVM) HasAddedUsers() bool

HasAddedUsers returns a boolean if a field has been set.

func (*SubscriptionInviteVM) HasCreatorUserId ¶

func (o *SubscriptionInviteVM) HasCreatorUserId() bool

HasCreatorUserId returns a boolean if a field has been set.

func (*SubscriptionInviteVM) HasDurable ¶

func (o *SubscriptionInviteVM) HasDurable() bool

HasDurable returns a boolean if a field has been set.

func (*SubscriptionInviteVM) HasExpiredDate ¶

func (o *SubscriptionInviteVM) HasExpiredDate() bool

HasExpiredDate returns a boolean if a field has been set.

func (*SubscriptionInviteVM) HasUsages ¶

func (o *SubscriptionInviteVM) HasUsages() bool

HasUsages returns a boolean if a field has been set.

func (SubscriptionInviteVM) MarshalJSON ¶

func (o SubscriptionInviteVM) MarshalJSON() ([]byte, error)

func (*SubscriptionInviteVM) SetAccessToken ¶

func (o *SubscriptionInviteVM) SetAccessToken(v string)

SetAccessToken gets a reference to the given NullableString and assigns it to the AccessToken field.

func (*SubscriptionInviteVM) SetAccessTokenNil ¶

func (o *SubscriptionInviteVM) SetAccessTokenNil()

SetAccessTokenNil sets the value for AccessToken to be an explicit nil

func (*SubscriptionInviteVM) SetAddedUsers ¶

func (o *SubscriptionInviteVM) SetAddedUsers(v []InvitedUser)

SetAddedUsers gets a reference to the given []InvitedUser and assigns it to the AddedUsers field.

func (*SubscriptionInviteVM) SetCreatorUserId ¶

func (o *SubscriptionInviteVM) SetCreatorUserId(v string)

SetCreatorUserId gets a reference to the given NullableString and assigns it to the CreatorUserId field.

func (*SubscriptionInviteVM) SetCreatorUserIdNil ¶

func (o *SubscriptionInviteVM) SetCreatorUserIdNil()

SetCreatorUserIdNil sets the value for CreatorUserId to be an explicit nil

func (*SubscriptionInviteVM) SetDurable ¶

func (o *SubscriptionInviteVM) SetDurable(v bool)

SetDurable gets a reference to the given bool and assigns it to the Durable field.

func (*SubscriptionInviteVM) SetExpiredDate ¶

func (o *SubscriptionInviteVM) SetExpiredDate(v time.Time)

SetExpiredDate gets a reference to the given time.Time and assigns it to the ExpiredDate field.

func (*SubscriptionInviteVM) SetUsages ¶

func (o *SubscriptionInviteVM) SetUsages(v int64)

SetUsages gets a reference to the given int64 and assigns it to the Usages field.

func (SubscriptionInviteVM) ToMap ¶

func (o SubscriptionInviteVM) ToMap() (map[string]interface{}, error)

func (*SubscriptionInviteVM) UnsetAccessToken ¶

func (o *SubscriptionInviteVM) UnsetAccessToken()

UnsetAccessToken ensures that no value is present for AccessToken, not even an explicit nil

func (*SubscriptionInviteVM) UnsetCreatorUserId ¶

func (o *SubscriptionInviteVM) UnsetCreatorUserId()

UnsetCreatorUserId ensures that no value is present for CreatorUserId, not even an explicit nil

type SubscriptionInvitesApiService ¶

type SubscriptionInvitesApiService service

SubscriptionInvitesApiService SubscriptionInvitesApi service

func (*SubscriptionInvitesApiService) SubscriptionInvitesAcceptInvite ¶

func (a *SubscriptionInvitesApiService) SubscriptionInvitesAcceptInvite(ctx context.Context, subscriptionId string, accessToken string) ApiSubscriptionInvitesAcceptInviteRequest

SubscriptionInvitesAcceptInvite Add a user to the subscription using invite, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Idenitifier of subscription
@param accessToken access token of the subscription
@return ApiSubscriptionInvitesAcceptInviteRequest

func (*SubscriptionInvitesApiService) SubscriptionInvitesAcceptInviteExecute ¶

func (a *SubscriptionInvitesApiService) SubscriptionInvitesAcceptInviteExecute(r ApiSubscriptionInvitesAcceptInviteRequest) (*http.Response, error)

Execute executes the request

func (*SubscriptionInvitesApiService) SubscriptionInvitesCreateInvite ¶

func (a *SubscriptionInvitesApiService) SubscriptionInvitesCreateInvite(ctx context.Context, subscriptionId string) ApiSubscriptionInvitesCreateInviteRequest

SubscriptionInvitesCreateInvite Create invite to subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id
@return ApiSubscriptionInvitesCreateInviteRequest

func (*SubscriptionInvitesApiService) SubscriptionInvitesCreateInviteExecute ¶

Execute executes the request

@return SubscriptionInviteVM

func (*SubscriptionInvitesApiService) SubscriptionInvitesDeleteInvite ¶

func (a *SubscriptionInvitesApiService) SubscriptionInvitesDeleteInvite(ctx context.Context, subscriptionId string, accesstoken string) ApiSubscriptionInvitesDeleteInviteRequest

SubscriptionInvitesDeleteInvite Rename subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id
@param accesstoken invite's token
@return ApiSubscriptionInvitesDeleteInviteRequest

func (*SubscriptionInvitesApiService) SubscriptionInvitesDeleteInviteExecute ¶

func (a *SubscriptionInvitesApiService) SubscriptionInvitesDeleteInviteExecute(r ApiSubscriptionInvitesDeleteInviteRequest) (*http.Response, error)

Execute executes the request

func (*SubscriptionInvitesApiService) SubscriptionInvitesGetInvites ¶

func (a *SubscriptionInvitesApiService) SubscriptionInvitesGetInvites(ctx context.Context, subscriptionId string) ApiSubscriptionInvitesGetInvitesRequest

SubscriptionInvitesGetInvites Get list of invites in a subscription, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Idenitifier of subscription
@return ApiSubscriptionInvitesGetInvitesRequest

func (*SubscriptionInvitesApiService) SubscriptionInvitesGetInvitesExecute ¶

Execute executes the request

@return SubscriptionInvitesVM

type SubscriptionInvitesVM ¶

type SubscriptionInvitesVM struct {
	Invites []SubscriptionInviteVM `json:"invites,omitempty"`
	Count   *int64                 `json:"count,omitempty"`
}

SubscriptionInvitesVM struct for SubscriptionInvitesVM

func NewSubscriptionInvitesVM ¶

func NewSubscriptionInvitesVM() *SubscriptionInvitesVM

NewSubscriptionInvitesVM instantiates a new SubscriptionInvitesVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionInvitesVMWithDefaults ¶

func NewSubscriptionInvitesVMWithDefaults() *SubscriptionInvitesVM

NewSubscriptionInvitesVMWithDefaults instantiates a new SubscriptionInvitesVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionInvitesVM) GetCount ¶

func (o *SubscriptionInvitesVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SubscriptionInvitesVM) GetCountOk ¶

func (o *SubscriptionInvitesVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionInvitesVM) GetInvites ¶

func (o *SubscriptionInvitesVM) GetInvites() []SubscriptionInviteVM

GetInvites returns the Invites field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionInvitesVM) GetInvitesOk ¶

func (o *SubscriptionInvitesVM) GetInvitesOk() ([]SubscriptionInviteVM, bool)

GetInvitesOk returns a tuple with the Invites field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionInvitesVM) HasCount ¶

func (o *SubscriptionInvitesVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*SubscriptionInvitesVM) HasInvites ¶

func (o *SubscriptionInvitesVM) HasInvites() bool

HasInvites returns a boolean if a field has been set.

func (SubscriptionInvitesVM) MarshalJSON ¶

func (o SubscriptionInvitesVM) MarshalJSON() ([]byte, error)

func (*SubscriptionInvitesVM) SetCount ¶

func (o *SubscriptionInvitesVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SubscriptionInvitesVM) SetInvites ¶

func (o *SubscriptionInvitesVM) SetInvites(v []SubscriptionInviteVM)

SetInvites gets a reference to the given []SubscriptionInviteVM and assigns it to the Invites field.

func (SubscriptionInvitesVM) ToMap ¶

func (o SubscriptionInvitesVM) ToMap() (map[string]interface{}, error)

type SubscriptionPeriodVM ¶

type SubscriptionPeriodVM struct {
	StartTime *time.Time          `json:"startTime,omitempty"`
	EndTime   *time.Time          `json:"endTime,omitempty"`
	Plan      *SubscriptionPlanVM `json:"plan,omitempty"`
}

SubscriptionPeriodVM struct for SubscriptionPeriodVM

func NewSubscriptionPeriodVM ¶

func NewSubscriptionPeriodVM() *SubscriptionPeriodVM

NewSubscriptionPeriodVM instantiates a new SubscriptionPeriodVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPeriodVMWithDefaults ¶

func NewSubscriptionPeriodVMWithDefaults() *SubscriptionPeriodVM

NewSubscriptionPeriodVMWithDefaults instantiates a new SubscriptionPeriodVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionPeriodVM) GetEndTime ¶

func (o *SubscriptionPeriodVM) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*SubscriptionPeriodVM) GetEndTimeOk ¶

func (o *SubscriptionPeriodVM) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPeriodVM) GetPlan ¶

GetPlan returns the Plan field value if set, zero value otherwise.

func (*SubscriptionPeriodVM) GetPlanOk ¶

func (o *SubscriptionPeriodVM) GetPlanOk() (*SubscriptionPlanVM, bool)

GetPlanOk returns a tuple with the Plan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPeriodVM) GetStartTime ¶

func (o *SubscriptionPeriodVM) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*SubscriptionPeriodVM) GetStartTimeOk ¶

func (o *SubscriptionPeriodVM) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPeriodVM) HasEndTime ¶

func (o *SubscriptionPeriodVM) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*SubscriptionPeriodVM) HasPlan ¶

func (o *SubscriptionPeriodVM) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (*SubscriptionPeriodVM) HasStartTime ¶

func (o *SubscriptionPeriodVM) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (SubscriptionPeriodVM) MarshalJSON ¶

func (o SubscriptionPeriodVM) MarshalJSON() ([]byte, error)

func (*SubscriptionPeriodVM) SetEndTime ¶

func (o *SubscriptionPeriodVM) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*SubscriptionPeriodVM) SetPlan ¶

SetPlan gets a reference to the given SubscriptionPlanVM and assigns it to the Plan field.

func (*SubscriptionPeriodVM) SetStartTime ¶

func (o *SubscriptionPeriodVM) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (SubscriptionPeriodVM) ToMap ¶

func (o SubscriptionPeriodVM) ToMap() (map[string]interface{}, error)

type SubscriptionPermission ¶

type SubscriptionPermission struct {
}

SubscriptionPermission struct for SubscriptionPermission

func NewSubscriptionPermission ¶

func NewSubscriptionPermission() *SubscriptionPermission

NewSubscriptionPermission instantiates a new SubscriptionPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPermissionWithDefaults ¶

func NewSubscriptionPermissionWithDefaults() *SubscriptionPermission

NewSubscriptionPermissionWithDefaults instantiates a new SubscriptionPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (SubscriptionPermission) MarshalJSON ¶

func (o SubscriptionPermission) MarshalJSON() ([]byte, error)

func (SubscriptionPermission) ToMap ¶

func (o SubscriptionPermission) ToMap() (map[string]interface{}, error)

type SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions ¶

type SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions struct {
	OwnerId NullableString                    `json:"ownerId,omitempty"`
	Owner   *SubscriptionPermission           `json:"owner,omitempty"`
	Groups  map[string]SubscriptionPermission `json:"groups,omitempty"`
	Other   *SubscriptionPermission           `json:"other,omitempty"`
	Anon    *SubscriptionPermission           `json:"anon,omitempty"`
}

SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions struct for SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions

func NewSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions ¶

func NewSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions() *SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions

NewSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions instantiates a new SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissionsWithDefaults ¶

func NewSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissionsWithDefaults() *SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions

NewSubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissionsWithDefaults instantiates a new SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetAnon ¶

GetAnon returns the Anon field value if set, zero value otherwise.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetAnonOk ¶

GetAnonOk returns a tuple with the Anon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetOther ¶

GetOther returns the Other field value if set, zero value otherwise.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetOtherOk ¶

GetOtherOk returns a tuple with the Other field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetOwnerId ¶

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetOwnerIdOk ¶

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) HasAnon ¶

HasAnon returns a boolean if a field has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) HasGroups ¶

HasGroups returns a boolean if a field has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) HasOther ¶

HasOther returns a boolean if a field has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) HasOwnerId ¶

HasOwnerId returns a boolean if a field has been set.

func (SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) MarshalJSON ¶

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) SetAnon ¶

SetAnon gets a reference to the given SubscriptionPermission and assigns it to the Anon field.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) SetGroups ¶

SetGroups gets a reference to the given map[string]SubscriptionPermission and assigns it to the Groups field.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) SetOther ¶

SetOther gets a reference to the given SubscriptionPermission and assigns it to the Other field.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) SetOwner ¶

SetOwner gets a reference to the given SubscriptionPermission and assigns it to the Owner field.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) SetOwnerId ¶

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) SetOwnerIdNil ¶

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) ToMap ¶

func (*SubscriptionPermissionSubscriptionCreateSubscriptionGetSubscriptionUpdateSubscriptionDeleteSubscriptionExecuteSubscriptionAdministratePermissions) UnsetOwnerId ¶

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

type SubscriptionPermissions ¶

type SubscriptionPermissions struct {
}

SubscriptionPermissions struct for SubscriptionPermissions

func NewSubscriptionPermissions ¶

func NewSubscriptionPermissions() *SubscriptionPermissions

NewSubscriptionPermissions instantiates a new SubscriptionPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPermissionsWithDefaults ¶

func NewSubscriptionPermissionsWithDefaults() *SubscriptionPermissions

NewSubscriptionPermissionsWithDefaults instantiates a new SubscriptionPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (SubscriptionPermissions) MarshalJSON ¶

func (o SubscriptionPermissions) MarshalJSON() ([]byte, error)

func (SubscriptionPermissions) ToMap ¶

func (o SubscriptionPermissions) ToMap() (map[string]interface{}, error)

type SubscriptionPermissionsVM ¶

type SubscriptionPermissionsVM struct {
	Permissions *SubscriptionPermissions `json:"permissions,omitempty"`
}

SubscriptionPermissionsVM struct for SubscriptionPermissionsVM

func NewSubscriptionPermissionsVM ¶

func NewSubscriptionPermissionsVM() *SubscriptionPermissionsVM

NewSubscriptionPermissionsVM instantiates a new SubscriptionPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPermissionsVMWithDefaults ¶

func NewSubscriptionPermissionsVMWithDefaults() *SubscriptionPermissionsVM

NewSubscriptionPermissionsVMWithDefaults instantiates a new SubscriptionPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionPermissionsVM) GetPermissions ¶

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*SubscriptionPermissionsVM) GetPermissionsOk ¶

func (o *SubscriptionPermissionsVM) GetPermissionsOk() (*SubscriptionPermissions, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPermissionsVM) HasPermissions ¶

func (o *SubscriptionPermissionsVM) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (SubscriptionPermissionsVM) MarshalJSON ¶

func (o SubscriptionPermissionsVM) MarshalJSON() ([]byte, error)

func (*SubscriptionPermissionsVM) SetPermissions ¶

SetPermissions gets a reference to the given SubscriptionPermissions and assigns it to the Permissions field.

func (SubscriptionPermissionsVM) ToMap ¶

func (o SubscriptionPermissionsVM) ToMap() (map[string]interface{}, error)

type SubscriptionPlanVM ¶

type SubscriptionPlanVM struct {
	Id                    NullableString         `json:"id,omitempty"`
	IsActive              NullableBool           `json:"isActive,omitempty"`
	DisplayName           NullableString         `json:"displayName,omitempty"`
	TimePeriodType        NullableTimePeriodType `json:"timePeriodType,omitempty"`
	TimePeriod            NullableInt32          `json:"timePeriod,omitempty"`
	ReadonlyTimeLimitType *TimePeriodType        `json:"readonlyTimeLimitType,omitempty"`
	ReadonlyTimeLimit     *int32                 `json:"readonlyTimeLimit,omitempty"`
	TemplatesSpaceLimit   NullableInt64          `json:"templatesSpaceLimit,omitempty"`
	ReportsSpaceLimit     NullableInt64          `json:"reportsSpaceLimit,omitempty"`
	ExportsSpaceLimit     NullableInt64          `json:"exportsSpaceLimit,omitempty"`
	FileUploadSizeLimit   NullableInt64          `json:"fileUploadSizeLimit,omitempty"`
	DataSourceLimit       NullableInt32          `json:"dataSourceLimit,omitempty"`
	MaxUsersCount         NullableInt32          `json:"maxUsersCount,omitempty"`
	GroupLimit            NullableInt32          `json:"groupLimit,omitempty"`
	OnlineDesigner        NullableBool           `json:"onlineDesigner,omitempty"`
	IsDemo                NullableBool           `json:"isDemo,omitempty"`
	UrlToBuy              NullableString         `json:"urlToBuy,omitempty"`
	UnlimitedPage         *bool                  `json:"unlimitedPage,omitempty"`
	PageLimit             *int32                 `json:"pageLimit,omitempty"`
	Tasks                 *TaskSettingsVM        `json:"tasks,omitempty"`
}

SubscriptionPlanVM struct for SubscriptionPlanVM

func NewSubscriptionPlanVM ¶

func NewSubscriptionPlanVM() *SubscriptionPlanVM

NewSubscriptionPlanVM instantiates a new SubscriptionPlanVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPlanVMWithDefaults ¶

func NewSubscriptionPlanVMWithDefaults() *SubscriptionPlanVM

NewSubscriptionPlanVMWithDefaults instantiates a new SubscriptionPlanVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionPlanVM) GetDataSourceLimit ¶

func (o *SubscriptionPlanVM) GetDataSourceLimit() int32

GetDataSourceLimit returns the DataSourceLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetDataSourceLimitOk ¶

func (o *SubscriptionPlanVM) GetDataSourceLimitOk() (*int32, bool)

GetDataSourceLimitOk returns a tuple with the DataSourceLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetDisplayName ¶

func (o *SubscriptionPlanVM) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetDisplayNameOk ¶

func (o *SubscriptionPlanVM) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetExportsSpaceLimit ¶

func (o *SubscriptionPlanVM) GetExportsSpaceLimit() int64

GetExportsSpaceLimit returns the ExportsSpaceLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetExportsSpaceLimitOk ¶

func (o *SubscriptionPlanVM) GetExportsSpaceLimitOk() (*int64, bool)

GetExportsSpaceLimitOk returns a tuple with the ExportsSpaceLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetFileUploadSizeLimit ¶

func (o *SubscriptionPlanVM) GetFileUploadSizeLimit() int64

GetFileUploadSizeLimit returns the FileUploadSizeLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetFileUploadSizeLimitOk ¶

func (o *SubscriptionPlanVM) GetFileUploadSizeLimitOk() (*int64, bool)

GetFileUploadSizeLimitOk returns a tuple with the FileUploadSizeLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetGroupLimit ¶

func (o *SubscriptionPlanVM) GetGroupLimit() int32

GetGroupLimit returns the GroupLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetGroupLimitOk ¶

func (o *SubscriptionPlanVM) GetGroupLimitOk() (*int32, bool)

GetGroupLimitOk returns a tuple with the GroupLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetId ¶

func (o *SubscriptionPlanVM) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetIdOk ¶

func (o *SubscriptionPlanVM) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetIsActive ¶

func (o *SubscriptionPlanVM) GetIsActive() bool

GetIsActive returns the IsActive field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetIsActiveOk ¶

func (o *SubscriptionPlanVM) GetIsActiveOk() (*bool, bool)

GetIsActiveOk returns a tuple with the IsActive field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetIsDemo ¶

func (o *SubscriptionPlanVM) GetIsDemo() bool

GetIsDemo returns the IsDemo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetIsDemoOk ¶

func (o *SubscriptionPlanVM) GetIsDemoOk() (*bool, bool)

GetIsDemoOk returns a tuple with the IsDemo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetMaxUsersCount ¶

func (o *SubscriptionPlanVM) GetMaxUsersCount() int32

GetMaxUsersCount returns the MaxUsersCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetMaxUsersCountOk ¶

func (o *SubscriptionPlanVM) GetMaxUsersCountOk() (*int32, bool)

GetMaxUsersCountOk returns a tuple with the MaxUsersCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetOnlineDesigner ¶

func (o *SubscriptionPlanVM) GetOnlineDesigner() bool

GetOnlineDesigner returns the OnlineDesigner field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetOnlineDesignerOk ¶

func (o *SubscriptionPlanVM) GetOnlineDesignerOk() (*bool, bool)

GetOnlineDesignerOk returns a tuple with the OnlineDesigner field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetPageLimit ¶

func (o *SubscriptionPlanVM) GetPageLimit() int32

GetPageLimit returns the PageLimit field value if set, zero value otherwise.

func (*SubscriptionPlanVM) GetPageLimitOk ¶

func (o *SubscriptionPlanVM) GetPageLimitOk() (*int32, bool)

GetPageLimitOk returns a tuple with the PageLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlanVM) GetReadonlyTimeLimit ¶

func (o *SubscriptionPlanVM) GetReadonlyTimeLimit() int32

GetReadonlyTimeLimit returns the ReadonlyTimeLimit field value if set, zero value otherwise.

func (*SubscriptionPlanVM) GetReadonlyTimeLimitOk ¶

func (o *SubscriptionPlanVM) GetReadonlyTimeLimitOk() (*int32, bool)

GetReadonlyTimeLimitOk returns a tuple with the ReadonlyTimeLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlanVM) GetReadonlyTimeLimitType ¶

func (o *SubscriptionPlanVM) GetReadonlyTimeLimitType() TimePeriodType

GetReadonlyTimeLimitType returns the ReadonlyTimeLimitType field value if set, zero value otherwise.

func (*SubscriptionPlanVM) GetReadonlyTimeLimitTypeOk ¶

func (o *SubscriptionPlanVM) GetReadonlyTimeLimitTypeOk() (*TimePeriodType, bool)

GetReadonlyTimeLimitTypeOk returns a tuple with the ReadonlyTimeLimitType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlanVM) GetReportsSpaceLimit ¶

func (o *SubscriptionPlanVM) GetReportsSpaceLimit() int64

GetReportsSpaceLimit returns the ReportsSpaceLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetReportsSpaceLimitOk ¶

func (o *SubscriptionPlanVM) GetReportsSpaceLimitOk() (*int64, bool)

GetReportsSpaceLimitOk returns a tuple with the ReportsSpaceLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetTasks ¶

func (o *SubscriptionPlanVM) GetTasks() TaskSettingsVM

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*SubscriptionPlanVM) GetTasksOk ¶

func (o *SubscriptionPlanVM) GetTasksOk() (*TaskSettingsVM, bool)

GetTasksOk returns a tuple with the Tasks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlanVM) GetTemplatesSpaceLimit ¶

func (o *SubscriptionPlanVM) GetTemplatesSpaceLimit() int64

GetTemplatesSpaceLimit returns the TemplatesSpaceLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetTemplatesSpaceLimitOk ¶

func (o *SubscriptionPlanVM) GetTemplatesSpaceLimitOk() (*int64, bool)

GetTemplatesSpaceLimitOk returns a tuple with the TemplatesSpaceLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetTimePeriod ¶

func (o *SubscriptionPlanVM) GetTimePeriod() int32

GetTimePeriod returns the TimePeriod field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetTimePeriodOk ¶

func (o *SubscriptionPlanVM) GetTimePeriodOk() (*int32, bool)

GetTimePeriodOk returns a tuple with the TimePeriod field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetTimePeriodType ¶

func (o *SubscriptionPlanVM) GetTimePeriodType() TimePeriodType

GetTimePeriodType returns the TimePeriodType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetTimePeriodTypeOk ¶

func (o *SubscriptionPlanVM) GetTimePeriodTypeOk() (*TimePeriodType, bool)

GetTimePeriodTypeOk returns a tuple with the TimePeriodType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) GetUnlimitedPage ¶

func (o *SubscriptionPlanVM) GetUnlimitedPage() bool

GetUnlimitedPage returns the UnlimitedPage field value if set, zero value otherwise.

func (*SubscriptionPlanVM) GetUnlimitedPageOk ¶

func (o *SubscriptionPlanVM) GetUnlimitedPageOk() (*bool, bool)

GetUnlimitedPageOk returns a tuple with the UnlimitedPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlanVM) GetUrlToBuy ¶

func (o *SubscriptionPlanVM) GetUrlToBuy() string

GetUrlToBuy returns the UrlToBuy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlanVM) GetUrlToBuyOk ¶

func (o *SubscriptionPlanVM) GetUrlToBuyOk() (*string, bool)

GetUrlToBuyOk returns a tuple with the UrlToBuy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlanVM) HasDataSourceLimit ¶

func (o *SubscriptionPlanVM) HasDataSourceLimit() bool

HasDataSourceLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasDisplayName ¶

func (o *SubscriptionPlanVM) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasExportsSpaceLimit ¶

func (o *SubscriptionPlanVM) HasExportsSpaceLimit() bool

HasExportsSpaceLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasFileUploadSizeLimit ¶

func (o *SubscriptionPlanVM) HasFileUploadSizeLimit() bool

HasFileUploadSizeLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasGroupLimit ¶

func (o *SubscriptionPlanVM) HasGroupLimit() bool

HasGroupLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasId ¶

func (o *SubscriptionPlanVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasIsActive ¶

func (o *SubscriptionPlanVM) HasIsActive() bool

HasIsActive returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasIsDemo ¶

func (o *SubscriptionPlanVM) HasIsDemo() bool

HasIsDemo returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasMaxUsersCount ¶

func (o *SubscriptionPlanVM) HasMaxUsersCount() bool

HasMaxUsersCount returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasOnlineDesigner ¶

func (o *SubscriptionPlanVM) HasOnlineDesigner() bool

HasOnlineDesigner returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasPageLimit ¶

func (o *SubscriptionPlanVM) HasPageLimit() bool

HasPageLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasReadonlyTimeLimit ¶

func (o *SubscriptionPlanVM) HasReadonlyTimeLimit() bool

HasReadonlyTimeLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasReadonlyTimeLimitType ¶

func (o *SubscriptionPlanVM) HasReadonlyTimeLimitType() bool

HasReadonlyTimeLimitType returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasReportsSpaceLimit ¶

func (o *SubscriptionPlanVM) HasReportsSpaceLimit() bool

HasReportsSpaceLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasTasks ¶

func (o *SubscriptionPlanVM) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasTemplatesSpaceLimit ¶

func (o *SubscriptionPlanVM) HasTemplatesSpaceLimit() bool

HasTemplatesSpaceLimit returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasTimePeriod ¶

func (o *SubscriptionPlanVM) HasTimePeriod() bool

HasTimePeriod returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasTimePeriodType ¶

func (o *SubscriptionPlanVM) HasTimePeriodType() bool

HasTimePeriodType returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasUnlimitedPage ¶

func (o *SubscriptionPlanVM) HasUnlimitedPage() bool

HasUnlimitedPage returns a boolean if a field has been set.

func (*SubscriptionPlanVM) HasUrlToBuy ¶

func (o *SubscriptionPlanVM) HasUrlToBuy() bool

HasUrlToBuy returns a boolean if a field has been set.

func (SubscriptionPlanVM) MarshalJSON ¶

func (o SubscriptionPlanVM) MarshalJSON() ([]byte, error)

func (*SubscriptionPlanVM) SetDataSourceLimit ¶

func (o *SubscriptionPlanVM) SetDataSourceLimit(v int32)

SetDataSourceLimit gets a reference to the given NullableInt32 and assigns it to the DataSourceLimit field.

func (*SubscriptionPlanVM) SetDataSourceLimitNil ¶

func (o *SubscriptionPlanVM) SetDataSourceLimitNil()

SetDataSourceLimitNil sets the value for DataSourceLimit to be an explicit nil

func (*SubscriptionPlanVM) SetDisplayName ¶

func (o *SubscriptionPlanVM) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*SubscriptionPlanVM) SetDisplayNameNil ¶

func (o *SubscriptionPlanVM) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*SubscriptionPlanVM) SetExportsSpaceLimit ¶

func (o *SubscriptionPlanVM) SetExportsSpaceLimit(v int64)

SetExportsSpaceLimit gets a reference to the given NullableInt64 and assigns it to the ExportsSpaceLimit field.

func (*SubscriptionPlanVM) SetExportsSpaceLimitNil ¶

func (o *SubscriptionPlanVM) SetExportsSpaceLimitNil()

SetExportsSpaceLimitNil sets the value for ExportsSpaceLimit to be an explicit nil

func (*SubscriptionPlanVM) SetFileUploadSizeLimit ¶

func (o *SubscriptionPlanVM) SetFileUploadSizeLimit(v int64)

SetFileUploadSizeLimit gets a reference to the given NullableInt64 and assigns it to the FileUploadSizeLimit field.

func (*SubscriptionPlanVM) SetFileUploadSizeLimitNil ¶

func (o *SubscriptionPlanVM) SetFileUploadSizeLimitNil()

SetFileUploadSizeLimitNil sets the value for FileUploadSizeLimit to be an explicit nil

func (*SubscriptionPlanVM) SetGroupLimit ¶

func (o *SubscriptionPlanVM) SetGroupLimit(v int32)

SetGroupLimit gets a reference to the given NullableInt32 and assigns it to the GroupLimit field.

func (*SubscriptionPlanVM) SetGroupLimitNil ¶

func (o *SubscriptionPlanVM) SetGroupLimitNil()

SetGroupLimitNil sets the value for GroupLimit to be an explicit nil

func (*SubscriptionPlanVM) SetId ¶

func (o *SubscriptionPlanVM) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*SubscriptionPlanVM) SetIdNil ¶

func (o *SubscriptionPlanVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*SubscriptionPlanVM) SetIsActive ¶

func (o *SubscriptionPlanVM) SetIsActive(v bool)

SetIsActive gets a reference to the given NullableBool and assigns it to the IsActive field.

func (*SubscriptionPlanVM) SetIsActiveNil ¶

func (o *SubscriptionPlanVM) SetIsActiveNil()

SetIsActiveNil sets the value for IsActive to be an explicit nil

func (*SubscriptionPlanVM) SetIsDemo ¶

func (o *SubscriptionPlanVM) SetIsDemo(v bool)

SetIsDemo gets a reference to the given NullableBool and assigns it to the IsDemo field.

func (*SubscriptionPlanVM) SetIsDemoNil ¶

func (o *SubscriptionPlanVM) SetIsDemoNil()

SetIsDemoNil sets the value for IsDemo to be an explicit nil

func (*SubscriptionPlanVM) SetMaxUsersCount ¶

func (o *SubscriptionPlanVM) SetMaxUsersCount(v int32)

SetMaxUsersCount gets a reference to the given NullableInt32 and assigns it to the MaxUsersCount field.

func (*SubscriptionPlanVM) SetMaxUsersCountNil ¶

func (o *SubscriptionPlanVM) SetMaxUsersCountNil()

SetMaxUsersCountNil sets the value for MaxUsersCount to be an explicit nil

func (*SubscriptionPlanVM) SetOnlineDesigner ¶

func (o *SubscriptionPlanVM) SetOnlineDesigner(v bool)

SetOnlineDesigner gets a reference to the given NullableBool and assigns it to the OnlineDesigner field.

func (*SubscriptionPlanVM) SetOnlineDesignerNil ¶

func (o *SubscriptionPlanVM) SetOnlineDesignerNil()

SetOnlineDesignerNil sets the value for OnlineDesigner to be an explicit nil

func (*SubscriptionPlanVM) SetPageLimit ¶

func (o *SubscriptionPlanVM) SetPageLimit(v int32)

SetPageLimit gets a reference to the given int32 and assigns it to the PageLimit field.

func (*SubscriptionPlanVM) SetReadonlyTimeLimit ¶

func (o *SubscriptionPlanVM) SetReadonlyTimeLimit(v int32)

SetReadonlyTimeLimit gets a reference to the given int32 and assigns it to the ReadonlyTimeLimit field.

func (*SubscriptionPlanVM) SetReadonlyTimeLimitType ¶

func (o *SubscriptionPlanVM) SetReadonlyTimeLimitType(v TimePeriodType)

SetReadonlyTimeLimitType gets a reference to the given TimePeriodType and assigns it to the ReadonlyTimeLimitType field.

func (*SubscriptionPlanVM) SetReportsSpaceLimit ¶

func (o *SubscriptionPlanVM) SetReportsSpaceLimit(v int64)

SetReportsSpaceLimit gets a reference to the given NullableInt64 and assigns it to the ReportsSpaceLimit field.

func (*SubscriptionPlanVM) SetReportsSpaceLimitNil ¶

func (o *SubscriptionPlanVM) SetReportsSpaceLimitNil()

SetReportsSpaceLimitNil sets the value for ReportsSpaceLimit to be an explicit nil

func (*SubscriptionPlanVM) SetTasks ¶

func (o *SubscriptionPlanVM) SetTasks(v TaskSettingsVM)

SetTasks gets a reference to the given TaskSettingsVM and assigns it to the Tasks field.

func (*SubscriptionPlanVM) SetTemplatesSpaceLimit ¶

func (o *SubscriptionPlanVM) SetTemplatesSpaceLimit(v int64)

SetTemplatesSpaceLimit gets a reference to the given NullableInt64 and assigns it to the TemplatesSpaceLimit field.

func (*SubscriptionPlanVM) SetTemplatesSpaceLimitNil ¶

func (o *SubscriptionPlanVM) SetTemplatesSpaceLimitNil()

SetTemplatesSpaceLimitNil sets the value for TemplatesSpaceLimit to be an explicit nil

func (*SubscriptionPlanVM) SetTimePeriod ¶

func (o *SubscriptionPlanVM) SetTimePeriod(v int32)

SetTimePeriod gets a reference to the given NullableInt32 and assigns it to the TimePeriod field.

func (*SubscriptionPlanVM) SetTimePeriodNil ¶

func (o *SubscriptionPlanVM) SetTimePeriodNil()

SetTimePeriodNil sets the value for TimePeriod to be an explicit nil

func (*SubscriptionPlanVM) SetTimePeriodType ¶

func (o *SubscriptionPlanVM) SetTimePeriodType(v TimePeriodType)

SetTimePeriodType gets a reference to the given NullableTimePeriodType and assigns it to the TimePeriodType field.

func (*SubscriptionPlanVM) SetTimePeriodTypeNil ¶

func (o *SubscriptionPlanVM) SetTimePeriodTypeNil()

SetTimePeriodTypeNil sets the value for TimePeriodType to be an explicit nil

func (*SubscriptionPlanVM) SetUnlimitedPage ¶

func (o *SubscriptionPlanVM) SetUnlimitedPage(v bool)

SetUnlimitedPage gets a reference to the given bool and assigns it to the UnlimitedPage field.

func (*SubscriptionPlanVM) SetUrlToBuy ¶

func (o *SubscriptionPlanVM) SetUrlToBuy(v string)

SetUrlToBuy gets a reference to the given NullableString and assigns it to the UrlToBuy field.

func (*SubscriptionPlanVM) SetUrlToBuyNil ¶

func (o *SubscriptionPlanVM) SetUrlToBuyNil()

SetUrlToBuyNil sets the value for UrlToBuy to be an explicit nil

func (SubscriptionPlanVM) ToMap ¶

func (o SubscriptionPlanVM) ToMap() (map[string]interface{}, error)

func (*SubscriptionPlanVM) UnsetDataSourceLimit ¶

func (o *SubscriptionPlanVM) UnsetDataSourceLimit()

UnsetDataSourceLimit ensures that no value is present for DataSourceLimit, not even an explicit nil

func (*SubscriptionPlanVM) UnsetDisplayName ¶

func (o *SubscriptionPlanVM) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*SubscriptionPlanVM) UnsetExportsSpaceLimit ¶

func (o *SubscriptionPlanVM) UnsetExportsSpaceLimit()

UnsetExportsSpaceLimit ensures that no value is present for ExportsSpaceLimit, not even an explicit nil

func (*SubscriptionPlanVM) UnsetFileUploadSizeLimit ¶

func (o *SubscriptionPlanVM) UnsetFileUploadSizeLimit()

UnsetFileUploadSizeLimit ensures that no value is present for FileUploadSizeLimit, not even an explicit nil

func (*SubscriptionPlanVM) UnsetGroupLimit ¶

func (o *SubscriptionPlanVM) UnsetGroupLimit()

UnsetGroupLimit ensures that no value is present for GroupLimit, not even an explicit nil

func (*SubscriptionPlanVM) UnsetId ¶

func (o *SubscriptionPlanVM) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*SubscriptionPlanVM) UnsetIsActive ¶

func (o *SubscriptionPlanVM) UnsetIsActive()

UnsetIsActive ensures that no value is present for IsActive, not even an explicit nil

func (*SubscriptionPlanVM) UnsetIsDemo ¶

func (o *SubscriptionPlanVM) UnsetIsDemo()

UnsetIsDemo ensures that no value is present for IsDemo, not even an explicit nil

func (*SubscriptionPlanVM) UnsetMaxUsersCount ¶

func (o *SubscriptionPlanVM) UnsetMaxUsersCount()

UnsetMaxUsersCount ensures that no value is present for MaxUsersCount, not even an explicit nil

func (*SubscriptionPlanVM) UnsetOnlineDesigner ¶

func (o *SubscriptionPlanVM) UnsetOnlineDesigner()

UnsetOnlineDesigner ensures that no value is present for OnlineDesigner, not even an explicit nil

func (*SubscriptionPlanVM) UnsetReportsSpaceLimit ¶

func (o *SubscriptionPlanVM) UnsetReportsSpaceLimit()

UnsetReportsSpaceLimit ensures that no value is present for ReportsSpaceLimit, not even an explicit nil

func (*SubscriptionPlanVM) UnsetTemplatesSpaceLimit ¶

func (o *SubscriptionPlanVM) UnsetTemplatesSpaceLimit()

UnsetTemplatesSpaceLimit ensures that no value is present for TemplatesSpaceLimit, not even an explicit nil

func (*SubscriptionPlanVM) UnsetTimePeriod ¶

func (o *SubscriptionPlanVM) UnsetTimePeriod()

UnsetTimePeriod ensures that no value is present for TimePeriod, not even an explicit nil

func (*SubscriptionPlanVM) UnsetTimePeriodType ¶

func (o *SubscriptionPlanVM) UnsetTimePeriodType()

UnsetTimePeriodType ensures that no value is present for TimePeriodType, not even an explicit nil

func (*SubscriptionPlanVM) UnsetUrlToBuy ¶

func (o *SubscriptionPlanVM) UnsetUrlToBuy()

UnsetUrlToBuy ensures that no value is present for UrlToBuy, not even an explicit nil

type SubscriptionPlansApiService ¶

type SubscriptionPlansApiService service

SubscriptionPlansApiService SubscriptionPlansApi service

func (*SubscriptionPlansApiService) SubscriptionPlansGetSubscriptionPlan ¶

func (a *SubscriptionPlansApiService) SubscriptionPlansGetSubscriptionPlan(ctx context.Context, id string) ApiSubscriptionPlansGetSubscriptionPlanRequest

SubscriptionPlansGetSubscriptionPlan Returns a subscription plan. Not all subscriptions can be issued for customer.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of subsctiption plan
@return ApiSubscriptionPlansGetSubscriptionPlanRequest

func (*SubscriptionPlansApiService) SubscriptionPlansGetSubscriptionPlanExecute ¶

Execute executes the request

@return SubscriptionPlanVM

func (*SubscriptionPlansApiService) SubscriptionPlansGetSubscriptionPlans ¶

SubscriptionPlansGetSubscriptionPlans Returns a list of active subscription plans that can be issued to the user.

If no active subscription plans, then the endpoint will return empty list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSubscriptionPlansGetSubscriptionPlansRequest

func (*SubscriptionPlansApiService) SubscriptionPlansGetSubscriptionPlansExecute ¶

Execute executes the request

@return SubscriptionPlansVM

type SubscriptionPlansVM ¶

type SubscriptionPlansVM struct {
	SubscriptionPlans []SubscriptionPlanVM `json:"subscriptionPlans,omitempty"`
	Count             *int64               `json:"count,omitempty"`
	Skip              *int32               `json:"skip,omitempty"`
	Take              *int32               `json:"take,omitempty"`
}

SubscriptionPlansVM struct for SubscriptionPlansVM

func NewSubscriptionPlansVM ¶

func NewSubscriptionPlansVM() *SubscriptionPlansVM

NewSubscriptionPlansVM instantiates a new SubscriptionPlansVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionPlansVMWithDefaults ¶

func NewSubscriptionPlansVMWithDefaults() *SubscriptionPlansVM

NewSubscriptionPlansVMWithDefaults instantiates a new SubscriptionPlansVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionPlansVM) GetCount ¶

func (o *SubscriptionPlansVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SubscriptionPlansVM) GetCountOk ¶

func (o *SubscriptionPlansVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlansVM) GetSkip ¶

func (o *SubscriptionPlansVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*SubscriptionPlansVM) GetSkipOk ¶

func (o *SubscriptionPlansVM) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlansVM) GetSubscriptionPlans ¶

func (o *SubscriptionPlansVM) GetSubscriptionPlans() []SubscriptionPlanVM

GetSubscriptionPlans returns the SubscriptionPlans field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionPlansVM) GetSubscriptionPlansOk ¶

func (o *SubscriptionPlansVM) GetSubscriptionPlansOk() ([]SubscriptionPlanVM, bool)

GetSubscriptionPlansOk returns a tuple with the SubscriptionPlans field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionPlansVM) GetTake ¶

func (o *SubscriptionPlansVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*SubscriptionPlansVM) GetTakeOk ¶

func (o *SubscriptionPlansVM) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPlansVM) HasCount ¶

func (o *SubscriptionPlansVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*SubscriptionPlansVM) HasSkip ¶

func (o *SubscriptionPlansVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*SubscriptionPlansVM) HasSubscriptionPlans ¶

func (o *SubscriptionPlansVM) HasSubscriptionPlans() bool

HasSubscriptionPlans returns a boolean if a field has been set.

func (*SubscriptionPlansVM) HasTake ¶

func (o *SubscriptionPlansVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (SubscriptionPlansVM) MarshalJSON ¶

func (o SubscriptionPlansVM) MarshalJSON() ([]byte, error)

func (*SubscriptionPlansVM) SetCount ¶

func (o *SubscriptionPlansVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SubscriptionPlansVM) SetSkip ¶

func (o *SubscriptionPlansVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*SubscriptionPlansVM) SetSubscriptionPlans ¶

func (o *SubscriptionPlansVM) SetSubscriptionPlans(v []SubscriptionPlanVM)

SetSubscriptionPlans gets a reference to the given []SubscriptionPlanVM and assigns it to the SubscriptionPlans field.

func (*SubscriptionPlansVM) SetTake ¶

func (o *SubscriptionPlansVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (SubscriptionPlansVM) ToMap ¶

func (o SubscriptionPlansVM) ToMap() (map[string]interface{}, error)

type SubscriptionUpdate ¶

type SubscriptionUpdate int32

SubscriptionUpdate the model 'SubscriptionUpdate'

func NewSubscriptionUpdateFromValue ¶

func NewSubscriptionUpdateFromValue(v int32) (*SubscriptionUpdate, error)

NewSubscriptionUpdateFromValue returns a pointer to a valid SubscriptionUpdate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionUpdate) IsValid ¶

func (v SubscriptionUpdate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionUpdate) Ptr ¶

Ptr returns reference to SubscriptionUpdate value

func (*SubscriptionUpdate) UnmarshalJSON ¶

func (v *SubscriptionUpdate) UnmarshalJSON(src []byte) error

type SubscriptionUserVM ¶

type SubscriptionUserVM struct {
	UserId NullableString `json:"userId,omitempty"`
	Groups []GroupVM      `json:"groups,omitempty"`
}

SubscriptionUserVM struct for SubscriptionUserVM

func NewSubscriptionUserVM ¶

func NewSubscriptionUserVM() *SubscriptionUserVM

NewSubscriptionUserVM instantiates a new SubscriptionUserVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionUserVMWithDefaults ¶

func NewSubscriptionUserVMWithDefaults() *SubscriptionUserVM

NewSubscriptionUserVMWithDefaults instantiates a new SubscriptionUserVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionUserVM) GetGroups ¶

func (o *SubscriptionUserVM) GetGroups() []GroupVM

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionUserVM) GetGroupsOk ¶

func (o *SubscriptionUserVM) GetGroupsOk() ([]GroupVM, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionUserVM) GetUserId ¶

func (o *SubscriptionUserVM) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionUserVM) GetUserIdOk ¶

func (o *SubscriptionUserVM) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionUserVM) HasGroups ¶

func (o *SubscriptionUserVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*SubscriptionUserVM) HasUserId ¶

func (o *SubscriptionUserVM) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (SubscriptionUserVM) MarshalJSON ¶

func (o SubscriptionUserVM) MarshalJSON() ([]byte, error)

func (*SubscriptionUserVM) SetGroups ¶

func (o *SubscriptionUserVM) SetGroups(v []GroupVM)

SetGroups gets a reference to the given []GroupVM and assigns it to the Groups field.

func (*SubscriptionUserVM) SetUserId ¶

func (o *SubscriptionUserVM) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*SubscriptionUserVM) SetUserIdNil ¶

func (o *SubscriptionUserVM) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (SubscriptionUserVM) ToMap ¶

func (o SubscriptionUserVM) ToMap() (map[string]interface{}, error)

func (*SubscriptionUserVM) UnsetUserId ¶

func (o *SubscriptionUserVM) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type SubscriptionUsersApiService ¶

type SubscriptionUsersApiService service

SubscriptionUsersApiService SubscriptionUsersApi service

func (*SubscriptionUsersApiService) SubscriptionUsersAddUser ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersAddUser(ctx context.Context, subscriptionId string, userId string) ApiSubscriptionUsersAddUserRequest

SubscriptionUsersAddUser Add a user to the subscription, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Idenitifier of subscription
@param userId Idenitifier of user
@return ApiSubscriptionUsersAddUserRequest

func (*SubscriptionUsersApiService) SubscriptionUsersAddUserExecute ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersAddUserExecute(r ApiSubscriptionUsersAddUserRequest) (*http.Response, error)

Execute executes the request

func (*SubscriptionUsersApiService) SubscriptionUsersCountUsersAsync ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersCountUsersAsync(ctx context.Context, subscriptionId string) ApiSubscriptionUsersCountUsersAsyncRequest

SubscriptionUsersCountUsersAsync Returns a number of users in subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId
@return ApiSubscriptionUsersCountUsersAsyncRequest

func (*SubscriptionUsersApiService) SubscriptionUsersCountUsersAsyncExecute ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersCountUsersAsyncExecute(r ApiSubscriptionUsersCountUsersAsyncRequest) (int64, *http.Response, error)

Execute executes the request

@return int64

func (*SubscriptionUsersApiService) SubscriptionUsersGetUsers ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersGetUsers(ctx context.Context, subscriptionId string) ApiSubscriptionUsersGetUsersRequest

SubscriptionUsersGetUsers Returns all users of subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Idenitifier of subscription
@return ApiSubscriptionUsersGetUsersRequest

func (*SubscriptionUsersApiService) SubscriptionUsersGetUsersExecute ¶

Execute executes the request

@return SubscriptionUsersVM

func (*SubscriptionUsersApiService) SubscriptionUsersLeaveSubscripiton ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersLeaveSubscripiton(ctx context.Context, subscriptionId string) ApiSubscriptionUsersLeaveSubscripitonRequest

SubscriptionUsersLeaveSubscripiton Allows user to leave subscription,.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Idenitifier of subscription
@return ApiSubscriptionUsersLeaveSubscripitonRequest

func (*SubscriptionUsersApiService) SubscriptionUsersLeaveSubscripitonExecute ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersLeaveSubscripitonExecute(r ApiSubscriptionUsersLeaveSubscripitonRequest) (*http.Response, error)

Execute executes the request

func (*SubscriptionUsersApiService) SubscriptionUsersRemoveUser ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersRemoveUser(ctx context.Context, subscriptionId string, userId string) ApiSubscriptionUsersRemoveUserRequest

SubscriptionUsersRemoveUser Delete a user from the subscription, the added users will be displayed in the list of users of the subscription, and these users will also have an active subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Idenitifier of subscription
@param userId Idenitifier of user
@return ApiSubscriptionUsersRemoveUserRequest

func (*SubscriptionUsersApiService) SubscriptionUsersRemoveUserExecute ¶

func (a *SubscriptionUsersApiService) SubscriptionUsersRemoveUserExecute(r ApiSubscriptionUsersRemoveUserRequest) (*http.Response, error)

Execute executes the request

type SubscriptionUsersVM ¶

type SubscriptionUsersVM struct {
	Users []SubscriptionUserVM `json:"users,omitempty"`
	Count *int64               `json:"count,omitempty"`
	Take  *int32               `json:"take,omitempty"`
	Skip  *int32               `json:"skip,omitempty"`
}

SubscriptionUsersVM struct for SubscriptionUsersVM

func NewSubscriptionUsersVM ¶

func NewSubscriptionUsersVM() *SubscriptionUsersVM

NewSubscriptionUsersVM instantiates a new SubscriptionUsersVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionUsersVMWithDefaults ¶

func NewSubscriptionUsersVMWithDefaults() *SubscriptionUsersVM

NewSubscriptionUsersVMWithDefaults instantiates a new SubscriptionUsersVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionUsersVM) GetCount ¶

func (o *SubscriptionUsersVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SubscriptionUsersVM) GetCountOk ¶

func (o *SubscriptionUsersVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionUsersVM) GetSkip ¶

func (o *SubscriptionUsersVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*SubscriptionUsersVM) GetSkipOk ¶

func (o *SubscriptionUsersVM) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionUsersVM) GetTake ¶

func (o *SubscriptionUsersVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*SubscriptionUsersVM) GetTakeOk ¶

func (o *SubscriptionUsersVM) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionUsersVM) GetUsers ¶

func (o *SubscriptionUsersVM) GetUsers() []SubscriptionUserVM

GetUsers returns the Users field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionUsersVM) GetUsersOk ¶

func (o *SubscriptionUsersVM) GetUsersOk() ([]SubscriptionUserVM, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionUsersVM) HasCount ¶

func (o *SubscriptionUsersVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*SubscriptionUsersVM) HasSkip ¶

func (o *SubscriptionUsersVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*SubscriptionUsersVM) HasTake ¶

func (o *SubscriptionUsersVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (*SubscriptionUsersVM) HasUsers ¶

func (o *SubscriptionUsersVM) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (SubscriptionUsersVM) MarshalJSON ¶

func (o SubscriptionUsersVM) MarshalJSON() ([]byte, error)

func (*SubscriptionUsersVM) SetCount ¶

func (o *SubscriptionUsersVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SubscriptionUsersVM) SetSkip ¶

func (o *SubscriptionUsersVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*SubscriptionUsersVM) SetTake ¶

func (o *SubscriptionUsersVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (*SubscriptionUsersVM) SetUsers ¶

func (o *SubscriptionUsersVM) SetUsers(v []SubscriptionUserVM)

SetUsers gets a reference to the given []SubscriptionUserVM and assigns it to the Users field.

func (SubscriptionUsersVM) ToMap ¶

func (o SubscriptionUsersVM) ToMap() (map[string]interface{}, error)

type SubscriptionVM ¶

type SubscriptionVM struct {
	Id              NullableString         `json:"id,omitempty"`
	Name            NullableString         `json:"name,omitempty"`
	Locale          NullableString         `json:"locale,omitempty"`
	Current         *SubscriptionPeriodVM  `json:"current,omitempty"`
	Old             []SubscriptionPeriodVM `json:"old,omitempty"`
	TemplatesFolder *SubscriptionFolder    `json:"templatesFolder,omitempty"`
	ReportsFolder   *SubscriptionFolder    `json:"reportsFolder,omitempty"`
	ExportsFolder   *SubscriptionFolder    `json:"exportsFolder,omitempty"`
}

SubscriptionVM struct for SubscriptionVM

func NewSubscriptionVM ¶

func NewSubscriptionVM() *SubscriptionVM

NewSubscriptionVM instantiates a new SubscriptionVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionVMWithDefaults ¶

func NewSubscriptionVMWithDefaults() *SubscriptionVM

NewSubscriptionVMWithDefaults instantiates a new SubscriptionVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionVM) GetCurrent ¶

func (o *SubscriptionVM) GetCurrent() SubscriptionPeriodVM

GetCurrent returns the Current field value if set, zero value otherwise.

func (*SubscriptionVM) GetCurrentOk ¶

func (o *SubscriptionVM) GetCurrentOk() (*SubscriptionPeriodVM, bool)

GetCurrentOk returns a tuple with the Current field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionVM) GetExportsFolder ¶

func (o *SubscriptionVM) GetExportsFolder() SubscriptionFolder

GetExportsFolder returns the ExportsFolder field value if set, zero value otherwise.

func (*SubscriptionVM) GetExportsFolderOk ¶

func (o *SubscriptionVM) GetExportsFolderOk() (*SubscriptionFolder, bool)

GetExportsFolderOk returns a tuple with the ExportsFolder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionVM) GetId ¶

func (o *SubscriptionVM) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionVM) GetIdOk ¶

func (o *SubscriptionVM) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionVM) GetLocale ¶

func (o *SubscriptionVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionVM) GetLocaleOk ¶

func (o *SubscriptionVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionVM) GetName ¶

func (o *SubscriptionVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionVM) GetNameOk ¶

func (o *SubscriptionVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionVM) GetOld ¶

func (o *SubscriptionVM) GetOld() []SubscriptionPeriodVM

GetOld returns the Old field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionVM) GetOldOk ¶

func (o *SubscriptionVM) GetOldOk() ([]SubscriptionPeriodVM, bool)

GetOldOk returns a tuple with the Old field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionVM) GetReportsFolder ¶

func (o *SubscriptionVM) GetReportsFolder() SubscriptionFolder

GetReportsFolder returns the ReportsFolder field value if set, zero value otherwise.

func (*SubscriptionVM) GetReportsFolderOk ¶

func (o *SubscriptionVM) GetReportsFolderOk() (*SubscriptionFolder, bool)

GetReportsFolderOk returns a tuple with the ReportsFolder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionVM) GetTemplatesFolder ¶

func (o *SubscriptionVM) GetTemplatesFolder() SubscriptionFolder

GetTemplatesFolder returns the TemplatesFolder field value if set, zero value otherwise.

func (*SubscriptionVM) GetTemplatesFolderOk ¶

func (o *SubscriptionVM) GetTemplatesFolderOk() (*SubscriptionFolder, bool)

GetTemplatesFolderOk returns a tuple with the TemplatesFolder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionVM) HasCurrent ¶

func (o *SubscriptionVM) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*SubscriptionVM) HasExportsFolder ¶

func (o *SubscriptionVM) HasExportsFolder() bool

HasExportsFolder returns a boolean if a field has been set.

func (*SubscriptionVM) HasId ¶

func (o *SubscriptionVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*SubscriptionVM) HasLocale ¶

func (o *SubscriptionVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*SubscriptionVM) HasName ¶

func (o *SubscriptionVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*SubscriptionVM) HasOld ¶

func (o *SubscriptionVM) HasOld() bool

HasOld returns a boolean if a field has been set.

func (*SubscriptionVM) HasReportsFolder ¶

func (o *SubscriptionVM) HasReportsFolder() bool

HasReportsFolder returns a boolean if a field has been set.

func (*SubscriptionVM) HasTemplatesFolder ¶

func (o *SubscriptionVM) HasTemplatesFolder() bool

HasTemplatesFolder returns a boolean if a field has been set.

func (SubscriptionVM) MarshalJSON ¶

func (o SubscriptionVM) MarshalJSON() ([]byte, error)

func (*SubscriptionVM) SetCurrent ¶

func (o *SubscriptionVM) SetCurrent(v SubscriptionPeriodVM)

SetCurrent gets a reference to the given SubscriptionPeriodVM and assigns it to the Current field.

func (*SubscriptionVM) SetExportsFolder ¶

func (o *SubscriptionVM) SetExportsFolder(v SubscriptionFolder)

SetExportsFolder gets a reference to the given SubscriptionFolder and assigns it to the ExportsFolder field.

func (*SubscriptionVM) SetId ¶

func (o *SubscriptionVM) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*SubscriptionVM) SetIdNil ¶

func (o *SubscriptionVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*SubscriptionVM) SetLocale ¶

func (o *SubscriptionVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*SubscriptionVM) SetLocaleNil ¶

func (o *SubscriptionVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*SubscriptionVM) SetName ¶

func (o *SubscriptionVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*SubscriptionVM) SetNameNil ¶

func (o *SubscriptionVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*SubscriptionVM) SetOld ¶

func (o *SubscriptionVM) SetOld(v []SubscriptionPeriodVM)

SetOld gets a reference to the given []SubscriptionPeriodVM and assigns it to the Old field.

func (*SubscriptionVM) SetReportsFolder ¶

func (o *SubscriptionVM) SetReportsFolder(v SubscriptionFolder)

SetReportsFolder gets a reference to the given SubscriptionFolder and assigns it to the ReportsFolder field.

func (*SubscriptionVM) SetTemplatesFolder ¶

func (o *SubscriptionVM) SetTemplatesFolder(v SubscriptionFolder)

SetTemplatesFolder gets a reference to the given SubscriptionFolder and assigns it to the TemplatesFolder field.

func (SubscriptionVM) ToMap ¶

func (o SubscriptionVM) ToMap() (map[string]interface{}, error)

func (*SubscriptionVM) UnsetId ¶

func (o *SubscriptionVM) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*SubscriptionVM) UnsetLocale ¶

func (o *SubscriptionVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

func (*SubscriptionVM) UnsetName ¶

func (o *SubscriptionVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type SubscriptionsApiService ¶

type SubscriptionsApiService service

SubscriptionsApiService SubscriptionsApi service

func (*SubscriptionsApiService) SubscriptionsGetDefaultPermissions ¶

func (a *SubscriptionsApiService) SubscriptionsGetDefaultPermissions(ctx context.Context, subscriptionId string) ApiSubscriptionsGetDefaultPermissionsRequest

SubscriptionsGetDefaultPermissions Get subscription's default permissions for new entities

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id
@return ApiSubscriptionsGetDefaultPermissionsRequest

func (*SubscriptionsApiService) SubscriptionsGetDefaultPermissionsExecute ¶

Execute executes the request

@return DefaultPermissionsVM

func (*SubscriptionsApiService) SubscriptionsGetMyPermissions ¶

func (a *SubscriptionsApiService) SubscriptionsGetMyPermissions(ctx context.Context, subId string) ApiSubscriptionsGetMyPermissionsRequest

SubscriptionsGetMyPermissions Get user's permissions for a subscription by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subId subscription id
@return ApiSubscriptionsGetMyPermissionsRequest

func (*SubscriptionsApiService) SubscriptionsGetMyPermissionsExecute ¶

func (a *SubscriptionsApiService) SubscriptionsGetMyPermissionsExecute(r ApiSubscriptionsGetMyPermissionsRequest) (*MyPermissionsVM, *http.Response, error)

Execute executes the request

@return MyPermissionsVM

func (*SubscriptionsApiService) SubscriptionsGetPermissions ¶

SubscriptionsGetPermissions Get permissions for a subscription by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiSubscriptionsGetPermissionsRequest

func (*SubscriptionsApiService) SubscriptionsGetPermissionsExecute ¶

Execute executes the request

@return SubscriptionPermissionsVM

func (*SubscriptionsApiService) SubscriptionsGetSubscription ¶

func (a *SubscriptionsApiService) SubscriptionsGetSubscription(ctx context.Context, id string) ApiSubscriptionsGetSubscriptionRequest

SubscriptionsGetSubscription Returns the subscription by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of subscription
@return ApiSubscriptionsGetSubscriptionRequest

func (*SubscriptionsApiService) SubscriptionsGetSubscriptionExecute ¶

func (a *SubscriptionsApiService) SubscriptionsGetSubscriptionExecute(r ApiSubscriptionsGetSubscriptionRequest) (*SubscriptionVM, *http.Response, error)

Execute executes the request

@return SubscriptionVM

func (*SubscriptionsApiService) SubscriptionsGetSubscriptions ¶

SubscriptionsGetSubscriptions Returns a list of all subscriptions of current user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSubscriptionsGetSubscriptionsRequest

func (*SubscriptionsApiService) SubscriptionsGetSubscriptionsExecute ¶

func (a *SubscriptionsApiService) SubscriptionsGetSubscriptionsExecute(r ApiSubscriptionsGetSubscriptionsRequest) (*SubscriptionsVM, *http.Response, error)

Execute executes the request

@return SubscriptionsVM

func (*SubscriptionsApiService) SubscriptionsRenameSubscription ¶

func (a *SubscriptionsApiService) SubscriptionsRenameSubscription(ctx context.Context, subscriptionId string) ApiSubscriptionsRenameSubscriptionRequest

SubscriptionsRenameSubscription Rename subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id
@return ApiSubscriptionsRenameSubscriptionRequest

func (*SubscriptionsApiService) SubscriptionsRenameSubscriptionExecute ¶

func (a *SubscriptionsApiService) SubscriptionsRenameSubscriptionExecute(r ApiSubscriptionsRenameSubscriptionRequest) (*SubscriptionVM, *http.Response, error)

Execute executes the request

@return SubscriptionVM

func (*SubscriptionsApiService) SubscriptionsUpdateDefaultPermissions ¶

func (a *SubscriptionsApiService) SubscriptionsUpdateDefaultPermissions(ctx context.Context, subscriptionId string) ApiSubscriptionsUpdateDefaultPermissionsRequest

SubscriptionsUpdateDefaultPermissions Change subscription's default permissions for new entities

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id
@return ApiSubscriptionsUpdateDefaultPermissionsRequest

func (*SubscriptionsApiService) SubscriptionsUpdateDefaultPermissionsExecute ¶

Execute executes the request

@return DefaultPermissionsVM

func (*SubscriptionsApiService) SubscriptionsUpdateLocale ¶

func (a *SubscriptionsApiService) SubscriptionsUpdateLocale(ctx context.Context, subscriptionId string) ApiSubscriptionsUpdateLocaleRequest

SubscriptionsUpdateLocale Update subscription's default locale

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id
@return ApiSubscriptionsUpdateLocaleRequest

func (*SubscriptionsApiService) SubscriptionsUpdateLocaleExecute ¶

Execute executes the request

@return SubscriptionVM

func (*SubscriptionsApiService) SubscriptionsUpdatePermissions ¶

func (a *SubscriptionsApiService) SubscriptionsUpdatePermissions(ctx context.Context, id string) ApiSubscriptionsUpdatePermissionsRequest

SubscriptionsUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiSubscriptionsUpdatePermissionsRequest

func (*SubscriptionsApiService) SubscriptionsUpdatePermissionsExecute ¶

func (a *SubscriptionsApiService) SubscriptionsUpdatePermissionsExecute(r ApiSubscriptionsUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

type SubscriptionsVM ¶

type SubscriptionsVM struct {
	Subscriptions []SubscriptionVM `json:"subscriptions,omitempty"`
	Count         *int64           `json:"count,omitempty"`
	Skip          *int32           `json:"skip,omitempty"`
	Take          *int32           `json:"take,omitempty"`
}

SubscriptionsVM struct for SubscriptionsVM

func NewSubscriptionsVM ¶

func NewSubscriptionsVM() *SubscriptionsVM

NewSubscriptionsVM instantiates a new SubscriptionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscriptionsVMWithDefaults ¶

func NewSubscriptionsVMWithDefaults() *SubscriptionsVM

NewSubscriptionsVMWithDefaults instantiates a new SubscriptionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscriptionsVM) GetCount ¶

func (o *SubscriptionsVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*SubscriptionsVM) GetCountOk ¶

func (o *SubscriptionsVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionsVM) GetSkip ¶

func (o *SubscriptionsVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*SubscriptionsVM) GetSkipOk ¶

func (o *SubscriptionsVM) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionsVM) GetSubscriptions ¶

func (o *SubscriptionsVM) GetSubscriptions() []SubscriptionVM

GetSubscriptions returns the Subscriptions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SubscriptionsVM) GetSubscriptionsOk ¶

func (o *SubscriptionsVM) GetSubscriptionsOk() ([]SubscriptionVM, bool)

GetSubscriptionsOk returns a tuple with the Subscriptions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SubscriptionsVM) GetTake ¶

func (o *SubscriptionsVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*SubscriptionsVM) GetTakeOk ¶

func (o *SubscriptionsVM) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionsVM) HasCount ¶

func (o *SubscriptionsVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*SubscriptionsVM) HasSkip ¶

func (o *SubscriptionsVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*SubscriptionsVM) HasSubscriptions ¶

func (o *SubscriptionsVM) HasSubscriptions() bool

HasSubscriptions returns a boolean if a field has been set.

func (*SubscriptionsVM) HasTake ¶

func (o *SubscriptionsVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (SubscriptionsVM) MarshalJSON ¶

func (o SubscriptionsVM) MarshalJSON() ([]byte, error)

func (*SubscriptionsVM) SetCount ¶

func (o *SubscriptionsVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*SubscriptionsVM) SetSkip ¶

func (o *SubscriptionsVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*SubscriptionsVM) SetSubscriptions ¶

func (o *SubscriptionsVM) SetSubscriptions(v []SubscriptionVM)

SetSubscriptions gets a reference to the given []SubscriptionVM and assigns it to the Subscriptions field.

func (*SubscriptionsVM) SetTake ¶

func (o *SubscriptionsVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (SubscriptionsVM) ToMap ¶

func (o SubscriptionsVM) ToMap() (map[string]interface{}, error)

type TaskAdministrate ¶

type TaskAdministrate int32

TaskAdministrate the model 'TaskAdministrate'

func NewTaskAdministrateFromValue ¶

func NewTaskAdministrateFromValue(v int32) (*TaskAdministrate, error)

NewTaskAdministrateFromValue returns a pointer to a valid TaskAdministrate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskAdministrate) IsValid ¶

func (v TaskAdministrate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskAdministrate) Ptr ¶

Ptr returns reference to TaskAdministrate value

func (*TaskAdministrate) UnmarshalJSON ¶

func (v *TaskAdministrate) UnmarshalJSON(src []byte) error

type TaskBaseVM ¶

type TaskBaseVM struct {
	CronExpression      NullableString `json:"cronExpression,omitempty"`
	DelayedRunTime      NullableTime   `json:"delayedRunTime,omitempty"`
	DelayedWasRunTime   NullableTime   `json:"delayedWasRunTime,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	Name                NullableString `json:"name,omitempty"`
	RecurrentRunTime    NullableTime   `json:"recurrentRunTime,omitempty"`
	RecurrentWasRunTime NullableTime   `json:"recurrentWasRunTime,omitempty"`
	SubscriptionId      NullableString `json:"subscriptionId,omitempty"`
	T                   string         `json:"$t"`
}

TaskBaseVM struct for TaskBaseVM

func NewTaskBaseVM ¶

func NewTaskBaseVM(t string) *TaskBaseVM

NewTaskBaseVM instantiates a new TaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskBaseVMWithDefaults ¶

func NewTaskBaseVMWithDefaults() *TaskBaseVM

NewTaskBaseVMWithDefaults instantiates a new TaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskBaseVM) GetCronExpression ¶

func (o *TaskBaseVM) GetCronExpression() string

GetCronExpression returns the CronExpression field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetCronExpressionOk ¶

func (o *TaskBaseVM) GetCronExpressionOk() (*string, bool)

GetCronExpressionOk returns a tuple with the CronExpression field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetDelayedRunTime ¶

func (o *TaskBaseVM) GetDelayedRunTime() time.Time

GetDelayedRunTime returns the DelayedRunTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetDelayedRunTimeOk ¶

func (o *TaskBaseVM) GetDelayedRunTimeOk() (*time.Time, bool)

GetDelayedRunTimeOk returns a tuple with the DelayedRunTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetDelayedWasRunTime ¶

func (o *TaskBaseVM) GetDelayedWasRunTime() time.Time

GetDelayedWasRunTime returns the DelayedWasRunTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetDelayedWasRunTimeOk ¶

func (o *TaskBaseVM) GetDelayedWasRunTimeOk() (*time.Time, bool)

GetDelayedWasRunTimeOk returns a tuple with the DelayedWasRunTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetId ¶

func (o *TaskBaseVM) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetIdOk ¶

func (o *TaskBaseVM) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetName ¶

func (o *TaskBaseVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetNameOk ¶

func (o *TaskBaseVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetRecurrentRunTime ¶

func (o *TaskBaseVM) GetRecurrentRunTime() time.Time

GetRecurrentRunTime returns the RecurrentRunTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetRecurrentRunTimeOk ¶

func (o *TaskBaseVM) GetRecurrentRunTimeOk() (*time.Time, bool)

GetRecurrentRunTimeOk returns a tuple with the RecurrentRunTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetRecurrentWasRunTime ¶

func (o *TaskBaseVM) GetRecurrentWasRunTime() time.Time

GetRecurrentWasRunTime returns the RecurrentWasRunTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetRecurrentWasRunTimeOk ¶

func (o *TaskBaseVM) GetRecurrentWasRunTimeOk() (*time.Time, bool)

GetRecurrentWasRunTimeOk returns a tuple with the RecurrentWasRunTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetSubscriptionId ¶

func (o *TaskBaseVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskBaseVM) GetSubscriptionIdOk ¶

func (o *TaskBaseVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskBaseVM) GetT ¶

func (o *TaskBaseVM) GetT() string

GetT returns the T field value

func (*TaskBaseVM) GetTOk ¶

func (o *TaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*TaskBaseVM) HasCronExpression ¶

func (o *TaskBaseVM) HasCronExpression() bool

HasCronExpression returns a boolean if a field has been set.

func (*TaskBaseVM) HasDelayedRunTime ¶

func (o *TaskBaseVM) HasDelayedRunTime() bool

HasDelayedRunTime returns a boolean if a field has been set.

func (*TaskBaseVM) HasDelayedWasRunTime ¶

func (o *TaskBaseVM) HasDelayedWasRunTime() bool

HasDelayedWasRunTime returns a boolean if a field has been set.

func (*TaskBaseVM) HasId ¶

func (o *TaskBaseVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*TaskBaseVM) HasName ¶

func (o *TaskBaseVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*TaskBaseVM) HasRecurrentRunTime ¶

func (o *TaskBaseVM) HasRecurrentRunTime() bool

HasRecurrentRunTime returns a boolean if a field has been set.

func (*TaskBaseVM) HasRecurrentWasRunTime ¶

func (o *TaskBaseVM) HasRecurrentWasRunTime() bool

HasRecurrentWasRunTime returns a boolean if a field has been set.

func (*TaskBaseVM) HasSubscriptionId ¶

func (o *TaskBaseVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (TaskBaseVM) MarshalJSON ¶

func (o TaskBaseVM) MarshalJSON() ([]byte, error)

func (*TaskBaseVM) SetCronExpression ¶

func (o *TaskBaseVM) SetCronExpression(v string)

SetCronExpression gets a reference to the given NullableString and assigns it to the CronExpression field.

func (*TaskBaseVM) SetCronExpressionNil ¶

func (o *TaskBaseVM) SetCronExpressionNil()

SetCronExpressionNil sets the value for CronExpression to be an explicit nil

func (*TaskBaseVM) SetDelayedRunTime ¶

func (o *TaskBaseVM) SetDelayedRunTime(v time.Time)

SetDelayedRunTime gets a reference to the given NullableTime and assigns it to the DelayedRunTime field.

func (*TaskBaseVM) SetDelayedRunTimeNil ¶

func (o *TaskBaseVM) SetDelayedRunTimeNil()

SetDelayedRunTimeNil sets the value for DelayedRunTime to be an explicit nil

func (*TaskBaseVM) SetDelayedWasRunTime ¶

func (o *TaskBaseVM) SetDelayedWasRunTime(v time.Time)

SetDelayedWasRunTime gets a reference to the given NullableTime and assigns it to the DelayedWasRunTime field.

func (*TaskBaseVM) SetDelayedWasRunTimeNil ¶

func (o *TaskBaseVM) SetDelayedWasRunTimeNil()

SetDelayedWasRunTimeNil sets the value for DelayedWasRunTime to be an explicit nil

func (*TaskBaseVM) SetId ¶

func (o *TaskBaseVM) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*TaskBaseVM) SetIdNil ¶

func (o *TaskBaseVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*TaskBaseVM) SetName ¶

func (o *TaskBaseVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*TaskBaseVM) SetNameNil ¶

func (o *TaskBaseVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*TaskBaseVM) SetRecurrentRunTime ¶

func (o *TaskBaseVM) SetRecurrentRunTime(v time.Time)

SetRecurrentRunTime gets a reference to the given NullableTime and assigns it to the RecurrentRunTime field.

func (*TaskBaseVM) SetRecurrentRunTimeNil ¶

func (o *TaskBaseVM) SetRecurrentRunTimeNil()

SetRecurrentRunTimeNil sets the value for RecurrentRunTime to be an explicit nil

func (*TaskBaseVM) SetRecurrentWasRunTime ¶

func (o *TaskBaseVM) SetRecurrentWasRunTime(v time.Time)

SetRecurrentWasRunTime gets a reference to the given NullableTime and assigns it to the RecurrentWasRunTime field.

func (*TaskBaseVM) SetRecurrentWasRunTimeNil ¶

func (o *TaskBaseVM) SetRecurrentWasRunTimeNil()

SetRecurrentWasRunTimeNil sets the value for RecurrentWasRunTime to be an explicit nil

func (*TaskBaseVM) SetSubscriptionId ¶

func (o *TaskBaseVM) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*TaskBaseVM) SetSubscriptionIdNil ¶

func (o *TaskBaseVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*TaskBaseVM) SetT ¶

func (o *TaskBaseVM) SetT(v string)

SetT sets field value

func (TaskBaseVM) ToMap ¶

func (o TaskBaseVM) ToMap() (map[string]interface{}, error)

func (*TaskBaseVM) UnsetCronExpression ¶

func (o *TaskBaseVM) UnsetCronExpression()

UnsetCronExpression ensures that no value is present for CronExpression, not even an explicit nil

func (*TaskBaseVM) UnsetDelayedRunTime ¶

func (o *TaskBaseVM) UnsetDelayedRunTime()

UnsetDelayedRunTime ensures that no value is present for DelayedRunTime, not even an explicit nil

func (*TaskBaseVM) UnsetDelayedWasRunTime ¶

func (o *TaskBaseVM) UnsetDelayedWasRunTime()

UnsetDelayedWasRunTime ensures that no value is present for DelayedWasRunTime, not even an explicit nil

func (*TaskBaseVM) UnsetId ¶

func (o *TaskBaseVM) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*TaskBaseVM) UnsetName ¶

func (o *TaskBaseVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*TaskBaseVM) UnsetRecurrentRunTime ¶

func (o *TaskBaseVM) UnsetRecurrentRunTime()

UnsetRecurrentRunTime ensures that no value is present for RecurrentRunTime, not even an explicit nil

func (*TaskBaseVM) UnsetRecurrentWasRunTime ¶

func (o *TaskBaseVM) UnsetRecurrentWasRunTime()

UnsetRecurrentWasRunTime ensures that no value is present for RecurrentWasRunTime, not even an explicit nil

func (*TaskBaseVM) UnsetSubscriptionId ¶

func (o *TaskBaseVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type TaskCreate ¶

type TaskCreate int32

TaskCreate the model 'TaskCreate'

func NewTaskCreateFromValue ¶

func NewTaskCreateFromValue(v int32) (*TaskCreate, error)

NewTaskCreateFromValue returns a pointer to a valid TaskCreate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskCreate) IsValid ¶

func (v TaskCreate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskCreate) Ptr ¶

func (v TaskCreate) Ptr() *TaskCreate

Ptr returns reference to TaskCreate value

func (*TaskCreate) UnmarshalJSON ¶

func (v *TaskCreate) UnmarshalJSON(src []byte) error

type TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission ¶

type TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission struct {
	Create       *TaskCreate       `json:"create,omitempty"`
	Delete       *TaskDelete       `json:"delete,omitempty"`
	Execute      *TaskExecute      `json:"execute,omitempty"`
	Get          *TaskGet          `json:"get,omitempty"`
	Update       *TaskUpdate       `json:"update,omitempty"`
	Administrate *TaskAdministrate `json:"administrate,omitempty"`
}

TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission struct for TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission

func NewTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission ¶

func NewTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission() *TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission

NewTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission instantiates a new TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissionWithDefaults ¶

func NewTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissionWithDefaults() *TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission

NewTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissionWithDefaults instantiates a new TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetAdministrate ¶

GetAdministrate returns the Administrate field value if set, zero value otherwise.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetAdministrateOk ¶

GetAdministrateOk returns a tuple with the Administrate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetCreate ¶

GetCreate returns the Create field value if set, zero value otherwise.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetCreateOk ¶

GetCreateOk returns a tuple with the Create field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetDelete ¶

GetDelete returns the Delete field value if set, zero value otherwise.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetDeleteOk ¶

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetExecute ¶

GetExecute returns the Execute field value if set, zero value otherwise.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetExecuteOk ¶

GetExecuteOk returns a tuple with the Execute field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetGet ¶

GetGet returns the Get field value if set, zero value otherwise.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetGetOk ¶

GetGetOk returns a tuple with the Get field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetUpdate ¶

GetUpdate returns the Update field value if set, zero value otherwise.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) GetUpdateOk ¶

GetUpdateOk returns a tuple with the Update field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) HasAdministrate ¶

HasAdministrate returns a boolean if a field has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) HasCreate ¶

HasCreate returns a boolean if a field has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) HasDelete ¶

HasDelete returns a boolean if a field has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) HasExecute ¶

HasExecute returns a boolean if a field has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) HasGet ¶

HasGet returns a boolean if a field has been set.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) HasUpdate ¶

HasUpdate returns a boolean if a field has been set.

func (TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) MarshalJSON ¶

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) SetAdministrate ¶

SetAdministrate gets a reference to the given TaskAdministrate and assigns it to the Administrate field.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) SetCreate ¶

SetCreate gets a reference to the given TaskCreate and assigns it to the Create field.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) SetDelete ¶

SetDelete gets a reference to the given TaskDelete and assigns it to the Delete field.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) SetExecute ¶

SetExecute gets a reference to the given TaskExecute and assigns it to the Execute field.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) SetGet ¶

SetGet gets a reference to the given TaskGet and assigns it to the Get field.

func (*TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) SetUpdate ¶

SetUpdate gets a reference to the given TaskUpdate and assigns it to the Update field.

func (TaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermission) ToMap ¶

type TaskDelete ¶

type TaskDelete int32

TaskDelete the model 'TaskDelete'

func NewTaskDeleteFromValue ¶

func NewTaskDeleteFromValue(v int32) (*TaskDelete, error)

NewTaskDeleteFromValue returns a pointer to a valid TaskDelete for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskDelete) IsValid ¶

func (v TaskDelete) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskDelete) Ptr ¶

func (v TaskDelete) Ptr() *TaskDelete

Ptr returns reference to TaskDelete value

func (*TaskDelete) UnmarshalJSON ¶

func (v *TaskDelete) UnmarshalJSON(src []byte) error

type TaskExecute ¶

type TaskExecute int32

TaskExecute the model 'TaskExecute'

func NewTaskExecuteFromValue ¶

func NewTaskExecuteFromValue(v int32) (*TaskExecute, error)

NewTaskExecuteFromValue returns a pointer to a valid TaskExecute for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskExecute) IsValid ¶

func (v TaskExecute) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskExecute) Ptr ¶

func (v TaskExecute) Ptr() *TaskExecute

Ptr returns reference to TaskExecute value

func (*TaskExecute) UnmarshalJSON ¶

func (v *TaskExecute) UnmarshalJSON(src []byte) error

type TaskGet ¶

type TaskGet int32

TaskGet the model 'TaskGet'

func NewTaskGetFromValue ¶

func NewTaskGetFromValue(v int32) (*TaskGet, error)

NewTaskGetFromValue returns a pointer to a valid TaskGet for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskGet) IsValid ¶

func (v TaskGet) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskGet) Ptr ¶

func (v TaskGet) Ptr() *TaskGet

Ptr returns reference to TaskGet value

func (*TaskGet) UnmarshalJSON ¶

func (v *TaskGet) UnmarshalJSON(src []byte) error

type TaskPermission ¶

type TaskPermission struct {
}

TaskPermission struct for TaskPermission

func NewTaskPermission ¶

func NewTaskPermission() *TaskPermission

NewTaskPermission instantiates a new TaskPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskPermissionWithDefaults ¶

func NewTaskPermissionWithDefaults() *TaskPermission

NewTaskPermissionWithDefaults instantiates a new TaskPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (TaskPermission) MarshalJSON ¶

func (o TaskPermission) MarshalJSON() ([]byte, error)

func (TaskPermission) ToMap ¶

func (o TaskPermission) ToMap() (map[string]interface{}, error)

type TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions ¶

type TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions struct {
	OwnerId NullableString            `json:"ownerId,omitempty"`
	Owner   *TaskPermission           `json:"owner,omitempty"`
	Groups  map[string]TaskPermission `json:"groups,omitempty"`
	Other   *TaskPermission           `json:"other,omitempty"`
	Anon    *TaskPermission           `json:"anon,omitempty"`
}

TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions struct for TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions

func NewTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions ¶

func NewTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions() *TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions

NewTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions instantiates a new TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissionsWithDefaults ¶

func NewTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissionsWithDefaults() *TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions

NewTaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissionsWithDefaults instantiates a new TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetAnon ¶

GetAnon returns the Anon field value if set, zero value otherwise.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetAnonOk ¶

GetAnonOk returns a tuple with the Anon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetGroups ¶

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetGroupsOk ¶

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetOther ¶

GetOther returns the Other field value if set, zero value otherwise.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetOtherOk ¶

GetOtherOk returns a tuple with the Other field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetOwnerId ¶

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetOwnerIdOk ¶

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) HasAnon ¶

HasAnon returns a boolean if a field has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) HasGroups ¶

HasGroups returns a boolean if a field has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) HasOther ¶

HasOther returns a boolean if a field has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) HasOwnerId ¶

HasOwnerId returns a boolean if a field has been set.

func (TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) MarshalJSON ¶

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) SetAnon ¶

SetAnon gets a reference to the given TaskPermission and assigns it to the Anon field.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) SetGroups ¶

SetGroups gets a reference to the given map[string]TaskPermission and assigns it to the Groups field.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) SetOther ¶

SetOther gets a reference to the given TaskPermission and assigns it to the Other field.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) SetOwner ¶

SetOwner gets a reference to the given TaskPermission and assigns it to the Owner field.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) SetOwnerId ¶

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) SetOwnerIdNil ¶

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) ToMap ¶

func (*TaskPermissionTaskCreateTaskGetTaskUpdateTaskDeleteTaskExecuteTaskAdministratePermissions) UnsetOwnerId ¶

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

type TaskPermissions ¶

type TaskPermissions struct {
}

TaskPermissions struct for TaskPermissions

func NewTaskPermissions ¶

func NewTaskPermissions() *TaskPermissions

NewTaskPermissions instantiates a new TaskPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskPermissionsWithDefaults ¶

func NewTaskPermissionsWithDefaults() *TaskPermissions

NewTaskPermissionsWithDefaults instantiates a new TaskPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (TaskPermissions) MarshalJSON ¶

func (o TaskPermissions) MarshalJSON() ([]byte, error)

func (TaskPermissions) ToMap ¶

func (o TaskPermissions) ToMap() (map[string]interface{}, error)

type TaskPermissionsVM ¶

type TaskPermissionsVM struct {
	Permissions *TaskPermissions `json:"permissions,omitempty"`
}

TaskPermissionsVM struct for TaskPermissionsVM

func NewTaskPermissionsVM ¶

func NewTaskPermissionsVM() *TaskPermissionsVM

NewTaskPermissionsVM instantiates a new TaskPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskPermissionsVMWithDefaults ¶

func NewTaskPermissionsVMWithDefaults() *TaskPermissionsVM

NewTaskPermissionsVMWithDefaults instantiates a new TaskPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskPermissionsVM) GetPermissions ¶

func (o *TaskPermissionsVM) GetPermissions() TaskPermissions

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*TaskPermissionsVM) GetPermissionsOk ¶

func (o *TaskPermissionsVM) GetPermissionsOk() (*TaskPermissions, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskPermissionsVM) HasPermissions ¶

func (o *TaskPermissionsVM) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (TaskPermissionsVM) MarshalJSON ¶

func (o TaskPermissionsVM) MarshalJSON() ([]byte, error)

func (*TaskPermissionsVM) SetPermissions ¶

func (o *TaskPermissionsVM) SetPermissions(v TaskPermissions)

SetPermissions gets a reference to the given TaskPermissions and assigns it to the Permissions field.

func (TaskPermissionsVM) ToMap ¶

func (o TaskPermissionsVM) ToMap() (map[string]interface{}, error)

type TaskSettingsVM ¶

type TaskSettingsVM struct {
	Prepare           NullableBool `json:"prepare,omitempty"`
	ExportTemplate    NullableBool `json:"exportTemplate,omitempty"`
	ExportReport      NullableBool `json:"exportReport,omitempty"`
	SendViaEmail      NullableBool `json:"sendViaEmail,omitempty"`
	UploadToFTP       NullableBool `json:"uploadToFTP,omitempty"`
	SendViaWebhook    NullableBool `json:"sendViaWebhook,omitempty"`
	FetchData         NullableBool `json:"fetchData,omitempty"`
	ThumbnailReport   NullableBool `json:"thumbnailReport,omitempty"`
	ThumbnailTemplate NullableBool `json:"thumbnailTemplate,omitempty"`
}

TaskSettingsVM struct for TaskSettingsVM

func NewTaskSettingsVM ¶

func NewTaskSettingsVM() *TaskSettingsVM

NewTaskSettingsVM instantiates a new TaskSettingsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskSettingsVMWithDefaults ¶

func NewTaskSettingsVMWithDefaults() *TaskSettingsVM

NewTaskSettingsVMWithDefaults instantiates a new TaskSettingsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskSettingsVM) GetExportReport ¶

func (o *TaskSettingsVM) GetExportReport() bool

GetExportReport returns the ExportReport field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetExportReportOk ¶

func (o *TaskSettingsVM) GetExportReportOk() (*bool, bool)

GetExportReportOk returns a tuple with the ExportReport field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetExportTemplate ¶

func (o *TaskSettingsVM) GetExportTemplate() bool

GetExportTemplate returns the ExportTemplate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetExportTemplateOk ¶

func (o *TaskSettingsVM) GetExportTemplateOk() (*bool, bool)

GetExportTemplateOk returns a tuple with the ExportTemplate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetFetchData ¶

func (o *TaskSettingsVM) GetFetchData() bool

GetFetchData returns the FetchData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetFetchDataOk ¶

func (o *TaskSettingsVM) GetFetchDataOk() (*bool, bool)

GetFetchDataOk returns a tuple with the FetchData field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetPrepare ¶

func (o *TaskSettingsVM) GetPrepare() bool

GetPrepare returns the Prepare field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetPrepareOk ¶

func (o *TaskSettingsVM) GetPrepareOk() (*bool, bool)

GetPrepareOk returns a tuple with the Prepare field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetSendViaEmail ¶

func (o *TaskSettingsVM) GetSendViaEmail() bool

GetSendViaEmail returns the SendViaEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetSendViaEmailOk ¶

func (o *TaskSettingsVM) GetSendViaEmailOk() (*bool, bool)

GetSendViaEmailOk returns a tuple with the SendViaEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetSendViaWebhook ¶

func (o *TaskSettingsVM) GetSendViaWebhook() bool

GetSendViaWebhook returns the SendViaWebhook field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetSendViaWebhookOk ¶

func (o *TaskSettingsVM) GetSendViaWebhookOk() (*bool, bool)

GetSendViaWebhookOk returns a tuple with the SendViaWebhook field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetThumbnailReport ¶

func (o *TaskSettingsVM) GetThumbnailReport() bool

GetThumbnailReport returns the ThumbnailReport field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetThumbnailReportOk ¶

func (o *TaskSettingsVM) GetThumbnailReportOk() (*bool, bool)

GetThumbnailReportOk returns a tuple with the ThumbnailReport field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetThumbnailTemplate ¶

func (o *TaskSettingsVM) GetThumbnailTemplate() bool

GetThumbnailTemplate returns the ThumbnailTemplate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetThumbnailTemplateOk ¶

func (o *TaskSettingsVM) GetThumbnailTemplateOk() (*bool, bool)

GetThumbnailTemplateOk returns a tuple with the ThumbnailTemplate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) GetUploadToFTP ¶

func (o *TaskSettingsVM) GetUploadToFTP() bool

GetUploadToFTP returns the UploadToFTP field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskSettingsVM) GetUploadToFTPOk ¶

func (o *TaskSettingsVM) GetUploadToFTPOk() (*bool, bool)

GetUploadToFTPOk returns a tuple with the UploadToFTP field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskSettingsVM) HasExportReport ¶

func (o *TaskSettingsVM) HasExportReport() bool

HasExportReport returns a boolean if a field has been set.

func (*TaskSettingsVM) HasExportTemplate ¶

func (o *TaskSettingsVM) HasExportTemplate() bool

HasExportTemplate returns a boolean if a field has been set.

func (*TaskSettingsVM) HasFetchData ¶

func (o *TaskSettingsVM) HasFetchData() bool

HasFetchData returns a boolean if a field has been set.

func (*TaskSettingsVM) HasPrepare ¶

func (o *TaskSettingsVM) HasPrepare() bool

HasPrepare returns a boolean if a field has been set.

func (*TaskSettingsVM) HasSendViaEmail ¶

func (o *TaskSettingsVM) HasSendViaEmail() bool

HasSendViaEmail returns a boolean if a field has been set.

func (*TaskSettingsVM) HasSendViaWebhook ¶

func (o *TaskSettingsVM) HasSendViaWebhook() bool

HasSendViaWebhook returns a boolean if a field has been set.

func (*TaskSettingsVM) HasThumbnailReport ¶

func (o *TaskSettingsVM) HasThumbnailReport() bool

HasThumbnailReport returns a boolean if a field has been set.

func (*TaskSettingsVM) HasThumbnailTemplate ¶

func (o *TaskSettingsVM) HasThumbnailTemplate() bool

HasThumbnailTemplate returns a boolean if a field has been set.

func (*TaskSettingsVM) HasUploadToFTP ¶

func (o *TaskSettingsVM) HasUploadToFTP() bool

HasUploadToFTP returns a boolean if a field has been set.

func (TaskSettingsVM) MarshalJSON ¶

func (o TaskSettingsVM) MarshalJSON() ([]byte, error)

func (*TaskSettingsVM) SetExportReport ¶

func (o *TaskSettingsVM) SetExportReport(v bool)

SetExportReport gets a reference to the given NullableBool and assigns it to the ExportReport field.

func (*TaskSettingsVM) SetExportReportNil ¶

func (o *TaskSettingsVM) SetExportReportNil()

SetExportReportNil sets the value for ExportReport to be an explicit nil

func (*TaskSettingsVM) SetExportTemplate ¶

func (o *TaskSettingsVM) SetExportTemplate(v bool)

SetExportTemplate gets a reference to the given NullableBool and assigns it to the ExportTemplate field.

func (*TaskSettingsVM) SetExportTemplateNil ¶

func (o *TaskSettingsVM) SetExportTemplateNil()

SetExportTemplateNil sets the value for ExportTemplate to be an explicit nil

func (*TaskSettingsVM) SetFetchData ¶

func (o *TaskSettingsVM) SetFetchData(v bool)

SetFetchData gets a reference to the given NullableBool and assigns it to the FetchData field.

func (*TaskSettingsVM) SetFetchDataNil ¶

func (o *TaskSettingsVM) SetFetchDataNil()

SetFetchDataNil sets the value for FetchData to be an explicit nil

func (*TaskSettingsVM) SetPrepare ¶

func (o *TaskSettingsVM) SetPrepare(v bool)

SetPrepare gets a reference to the given NullableBool and assigns it to the Prepare field.

func (*TaskSettingsVM) SetPrepareNil ¶

func (o *TaskSettingsVM) SetPrepareNil()

SetPrepareNil sets the value for Prepare to be an explicit nil

func (*TaskSettingsVM) SetSendViaEmail ¶

func (o *TaskSettingsVM) SetSendViaEmail(v bool)

SetSendViaEmail gets a reference to the given NullableBool and assigns it to the SendViaEmail field.

func (*TaskSettingsVM) SetSendViaEmailNil ¶

func (o *TaskSettingsVM) SetSendViaEmailNil()

SetSendViaEmailNil sets the value for SendViaEmail to be an explicit nil

func (*TaskSettingsVM) SetSendViaWebhook ¶

func (o *TaskSettingsVM) SetSendViaWebhook(v bool)

SetSendViaWebhook gets a reference to the given NullableBool and assigns it to the SendViaWebhook field.

func (*TaskSettingsVM) SetSendViaWebhookNil ¶

func (o *TaskSettingsVM) SetSendViaWebhookNil()

SetSendViaWebhookNil sets the value for SendViaWebhook to be an explicit nil

func (*TaskSettingsVM) SetThumbnailReport ¶

func (o *TaskSettingsVM) SetThumbnailReport(v bool)

SetThumbnailReport gets a reference to the given NullableBool and assigns it to the ThumbnailReport field.

func (*TaskSettingsVM) SetThumbnailReportNil ¶

func (o *TaskSettingsVM) SetThumbnailReportNil()

SetThumbnailReportNil sets the value for ThumbnailReport to be an explicit nil

func (*TaskSettingsVM) SetThumbnailTemplate ¶

func (o *TaskSettingsVM) SetThumbnailTemplate(v bool)

SetThumbnailTemplate gets a reference to the given NullableBool and assigns it to the ThumbnailTemplate field.

func (*TaskSettingsVM) SetThumbnailTemplateNil ¶

func (o *TaskSettingsVM) SetThumbnailTemplateNil()

SetThumbnailTemplateNil sets the value for ThumbnailTemplate to be an explicit nil

func (*TaskSettingsVM) SetUploadToFTP ¶

func (o *TaskSettingsVM) SetUploadToFTP(v bool)

SetUploadToFTP gets a reference to the given NullableBool and assigns it to the UploadToFTP field.

func (*TaskSettingsVM) SetUploadToFTPNil ¶

func (o *TaskSettingsVM) SetUploadToFTPNil()

SetUploadToFTPNil sets the value for UploadToFTP to be an explicit nil

func (TaskSettingsVM) ToMap ¶

func (o TaskSettingsVM) ToMap() (map[string]interface{}, error)

func (*TaskSettingsVM) UnsetExportReport ¶

func (o *TaskSettingsVM) UnsetExportReport()

UnsetExportReport ensures that no value is present for ExportReport, not even an explicit nil

func (*TaskSettingsVM) UnsetExportTemplate ¶

func (o *TaskSettingsVM) UnsetExportTemplate()

UnsetExportTemplate ensures that no value is present for ExportTemplate, not even an explicit nil

func (*TaskSettingsVM) UnsetFetchData ¶

func (o *TaskSettingsVM) UnsetFetchData()

UnsetFetchData ensures that no value is present for FetchData, not even an explicit nil

func (*TaskSettingsVM) UnsetPrepare ¶

func (o *TaskSettingsVM) UnsetPrepare()

UnsetPrepare ensures that no value is present for Prepare, not even an explicit nil

func (*TaskSettingsVM) UnsetSendViaEmail ¶

func (o *TaskSettingsVM) UnsetSendViaEmail()

UnsetSendViaEmail ensures that no value is present for SendViaEmail, not even an explicit nil

func (*TaskSettingsVM) UnsetSendViaWebhook ¶

func (o *TaskSettingsVM) UnsetSendViaWebhook()

UnsetSendViaWebhook ensures that no value is present for SendViaWebhook, not even an explicit nil

func (*TaskSettingsVM) UnsetThumbnailReport ¶

func (o *TaskSettingsVM) UnsetThumbnailReport()

UnsetThumbnailReport ensures that no value is present for ThumbnailReport, not even an explicit nil

func (*TaskSettingsVM) UnsetThumbnailTemplate ¶

func (o *TaskSettingsVM) UnsetThumbnailTemplate()

UnsetThumbnailTemplate ensures that no value is present for ThumbnailTemplate, not even an explicit nil

func (*TaskSettingsVM) UnsetUploadToFTP ¶

func (o *TaskSettingsVM) UnsetUploadToFTP()

UnsetUploadToFTP ensures that no value is present for UploadToFTP, not even an explicit nil

type TaskUpdate ¶

type TaskUpdate int32

TaskUpdate the model 'TaskUpdate'

func NewTaskUpdateFromValue ¶

func NewTaskUpdateFromValue(v int32) (*TaskUpdate, error)

NewTaskUpdateFromValue returns a pointer to a valid TaskUpdate for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskUpdate) IsValid ¶

func (v TaskUpdate) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskUpdate) Ptr ¶

func (v TaskUpdate) Ptr() *TaskUpdate

Ptr returns reference to TaskUpdate value

func (*TaskUpdate) UnmarshalJSON ¶

func (v *TaskUpdate) UnmarshalJSON(src []byte) error

type TasksApiService ¶

type TasksApiService service

TasksApiService TasksApi service

func (*TasksApiService) TasksCreateTask ¶

func (a *TasksApiService) TasksCreateTask(ctx context.Context) ApiTasksCreateTaskRequest

TasksCreateTask Create a new task

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTasksCreateTaskRequest

func (*TasksApiService) TasksCreateTaskExecute ¶

func (a *TasksApiService) TasksCreateTaskExecute(r ApiTasksCreateTaskRequest) (*TaskBaseVM, *http.Response, error)

Execute executes the request

@return TaskBaseVM

func (*TasksApiService) TasksDeleteTask ¶

func (a *TasksApiService) TasksDeleteTask(ctx context.Context, taskId string) ApiTasksDeleteTaskRequest

TasksDeleteTask Delete a task from a storage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId deleting task id
@return ApiTasksDeleteTaskRequest

func (*TasksApiService) TasksDeleteTaskExecute ¶

func (a *TasksApiService) TasksDeleteTaskExecute(r ApiTasksDeleteTaskRequest) (*http.Response, error)

Execute executes the request

func (*TasksApiService) TasksGet ¶

func (a *TasksApiService) TasksGet(ctx context.Context, taskId string) ApiTasksGetRequest

TasksGet Get a task by a specified id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId a task id
@return ApiTasksGetRequest

func (*TasksApiService) TasksGetExecute ¶

func (a *TasksApiService) TasksGetExecute(r ApiTasksGetRequest) (*TaskBaseVM, *http.Response, error)

Execute executes the request

@return TaskBaseVM

func (*TasksApiService) TasksGetList ¶

TasksGetList Get tasks list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTasksGetListRequest

func (*TasksApiService) TasksGetListExecute ¶

func (a *TasksApiService) TasksGetListExecute(r ApiTasksGetListRequest) (*TasksVM, *http.Response, error)

Execute executes the request

@return TasksVM

func (*TasksApiService) TasksGetPermissions ¶

func (a *TasksApiService) TasksGetPermissions(ctx context.Context, id string) ApiTasksGetPermissionsRequest

TasksGetPermissions Get all Task permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id task id
@return ApiTasksGetPermissionsRequest

func (*TasksApiService) TasksGetPermissionsExecute ¶

func (a *TasksApiService) TasksGetPermissionsExecute(r ApiTasksGetPermissionsRequest) (*TaskPermissionsVM, *http.Response, error)

Execute executes the request

@return TaskPermissionsVM

func (*TasksApiService) TasksRenameTask ¶

func (a *TasksApiService) TasksRenameTask(ctx context.Context, taskId string) ApiTasksRenameTaskRequest

TasksRenameTask Rename a task

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId renaming task id
@return ApiTasksRenameTaskRequest

func (*TasksApiService) TasksRenameTaskExecute ¶

func (a *TasksApiService) TasksRenameTaskExecute(r ApiTasksRenameTaskRequest) (*TaskBaseVM, *http.Response, error)

Execute executes the request

@return TaskBaseVM

func (*TasksApiService) TasksRunTask ¶

TasksRunTask Run a task from request body

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTasksRunTaskRequest

func (*TasksApiService) TasksRunTaskById ¶

func (a *TasksApiService) TasksRunTaskById(ctx context.Context, taskId string) ApiTasksRunTaskByIdRequest

TasksRunTaskById Run a task by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId task id
@return ApiTasksRunTaskByIdRequest

func (*TasksApiService) TasksRunTaskByIdExecute ¶

func (a *TasksApiService) TasksRunTaskByIdExecute(r ApiTasksRunTaskByIdRequest) (*http.Response, error)

Execute executes the request

func (*TasksApiService) TasksRunTaskExecute ¶

func (a *TasksApiService) TasksRunTaskExecute(r ApiTasksRunTaskRequest) (*http.Response, error)

Execute executes the request

func (*TasksApiService) TasksUpdatePermissions ¶

func (a *TasksApiService) TasksUpdatePermissions(ctx context.Context, id string) ApiTasksUpdatePermissionsRequest

TasksUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id task id
@return ApiTasksUpdatePermissionsRequest

func (*TasksApiService) TasksUpdatePermissionsExecute ¶

func (a *TasksApiService) TasksUpdatePermissionsExecute(r ApiTasksUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*TasksApiService) TasksUpdateTask ¶

func (a *TasksApiService) TasksUpdateTask(ctx context.Context, taskId string) ApiTasksUpdateTaskRequest

TasksUpdateTask Update a task

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId updating task id
@return ApiTasksUpdateTaskRequest

func (*TasksApiService) TasksUpdateTaskExecute ¶

func (a *TasksApiService) TasksUpdateTaskExecute(r ApiTasksUpdateTaskRequest) (*TaskBaseVM, *http.Response, error)

Execute executes the request

@return TaskBaseVM

type TasksVM ¶

type TasksVM struct {
	Count *int64       `json:"count,omitempty"`
	Skip  *int32       `json:"skip,omitempty"`
	Take  *int32       `json:"take,omitempty"`
	Tasks []TaskBaseVM `json:"tasks,omitempty"`
}

TasksVM struct for TasksVM

func NewTasksVM ¶

func NewTasksVM() *TasksVM

NewTasksVM instantiates a new TasksVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTasksVMWithDefaults ¶

func NewTasksVMWithDefaults() *TasksVM

NewTasksVMWithDefaults instantiates a new TasksVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TasksVM) GetCount ¶

func (o *TasksVM) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*TasksVM) GetCountOk ¶

func (o *TasksVM) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TasksVM) GetSkip ¶

func (o *TasksVM) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*TasksVM) GetSkipOk ¶

func (o *TasksVM) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TasksVM) GetTake ¶

func (o *TasksVM) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*TasksVM) GetTakeOk ¶

func (o *TasksVM) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TasksVM) GetTasks ¶

func (o *TasksVM) GetTasks() []TaskBaseVM

GetTasks returns the Tasks field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TasksVM) GetTasksOk ¶

func (o *TasksVM) GetTasksOk() ([]TaskBaseVM, bool)

GetTasksOk returns a tuple with the Tasks field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TasksVM) HasCount ¶

func (o *TasksVM) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*TasksVM) HasSkip ¶

func (o *TasksVM) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*TasksVM) HasTake ¶

func (o *TasksVM) HasTake() bool

HasTake returns a boolean if a field has been set.

func (*TasksVM) HasTasks ¶

func (o *TasksVM) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (TasksVM) MarshalJSON ¶

func (o TasksVM) MarshalJSON() ([]byte, error)

func (*TasksVM) SetCount ¶

func (o *TasksVM) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*TasksVM) SetSkip ¶

func (o *TasksVM) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*TasksVM) SetTake ¶

func (o *TasksVM) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (*TasksVM) SetTasks ¶

func (o *TasksVM) SetTasks(v []TaskBaseVM)

SetTasks gets a reference to the given []TaskBaseVM and assigns it to the Tasks field.

func (TasksVM) ToMap ¶

func (o TasksVM) ToMap() (map[string]interface{}, error)

type TemplateCreateAdminVM ¶

type TemplateCreateAdminVM struct {
	OwnerId  string `json:"ownerId"`
	ParentId string `json:"parentId"`
}

TemplateCreateAdminVM struct for TemplateCreateAdminVM

func NewTemplateCreateAdminVM ¶

func NewTemplateCreateAdminVM(ownerId string, parentId string) *TemplateCreateAdminVM

NewTemplateCreateAdminVM instantiates a new TemplateCreateAdminVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateCreateAdminVMWithDefaults ¶

func NewTemplateCreateAdminVMWithDefaults() *TemplateCreateAdminVM

NewTemplateCreateAdminVMWithDefaults instantiates a new TemplateCreateAdminVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateCreateAdminVM) GetOwnerId ¶

func (o *TemplateCreateAdminVM) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*TemplateCreateAdminVM) GetOwnerIdOk ¶

func (o *TemplateCreateAdminVM) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value and a boolean to check if the value has been set.

func (*TemplateCreateAdminVM) GetParentId ¶

func (o *TemplateCreateAdminVM) GetParentId() string

GetParentId returns the ParentId field value

func (*TemplateCreateAdminVM) GetParentIdOk ¶

func (o *TemplateCreateAdminVM) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value and a boolean to check if the value has been set.

func (TemplateCreateAdminVM) MarshalJSON ¶

func (o TemplateCreateAdminVM) MarshalJSON() ([]byte, error)

func (*TemplateCreateAdminVM) SetOwnerId ¶

func (o *TemplateCreateAdminVM) SetOwnerId(v string)

SetOwnerId sets field value

func (*TemplateCreateAdminVM) SetParentId ¶

func (o *TemplateCreateAdminVM) SetParentId(v string)

SetParentId sets field value

func (TemplateCreateAdminVM) ToMap ¶

func (o TemplateCreateAdminVM) ToMap() (map[string]interface{}, error)

type TemplateCreateVM ¶

type TemplateCreateVM struct {
}

TemplateCreateVM struct for TemplateCreateVM

func NewTemplateCreateVM ¶

func NewTemplateCreateVM() *TemplateCreateVM

NewTemplateCreateVM instantiates a new TemplateCreateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateCreateVMWithDefaults ¶

func NewTemplateCreateVMWithDefaults() *TemplateCreateVM

NewTemplateCreateVMWithDefaults instantiates a new TemplateCreateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (TemplateCreateVM) MarshalJSON ¶

func (o TemplateCreateVM) MarshalJSON() ([]byte, error)

func (TemplateCreateVM) ToMap ¶

func (o TemplateCreateVM) ToMap() (map[string]interface{}, error)

type TemplateFolderCreateVM ¶

type TemplateFolderCreateVM struct {
}

TemplateFolderCreateVM struct for TemplateFolderCreateVM

func NewTemplateFolderCreateVM ¶

func NewTemplateFolderCreateVM() *TemplateFolderCreateVM

NewTemplateFolderCreateVM instantiates a new TemplateFolderCreateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateFolderCreateVMWithDefaults ¶

func NewTemplateFolderCreateVMWithDefaults() *TemplateFolderCreateVM

NewTemplateFolderCreateVMWithDefaults instantiates a new TemplateFolderCreateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (TemplateFolderCreateVM) MarshalJSON ¶

func (o TemplateFolderCreateVM) MarshalJSON() ([]byte, error)

func (TemplateFolderCreateVM) ToMap ¶

func (o TemplateFolderCreateVM) ToMap() (map[string]interface{}, error)

type TemplateVM ¶

type TemplateVM struct {
	ReportInfo *ReportInfo `json:"reportInfo,omitempty"`
}

TemplateVM struct for TemplateVM

func NewTemplateVM ¶

func NewTemplateVM() *TemplateVM

NewTemplateVM instantiates a new TemplateVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateVMWithDefaults ¶

func NewTemplateVMWithDefaults() *TemplateVM

NewTemplateVMWithDefaults instantiates a new TemplateVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateVM) GetReportInfo ¶

func (o *TemplateVM) GetReportInfo() ReportInfo

GetReportInfo returns the ReportInfo field value if set, zero value otherwise.

func (*TemplateVM) GetReportInfoOk ¶

func (o *TemplateVM) GetReportInfoOk() (*ReportInfo, bool)

GetReportInfoOk returns a tuple with the ReportInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateVM) HasReportInfo ¶

func (o *TemplateVM) HasReportInfo() bool

HasReportInfo returns a boolean if a field has been set.

func (TemplateVM) MarshalJSON ¶

func (o TemplateVM) MarshalJSON() ([]byte, error)

func (*TemplateVM) SetReportInfo ¶

func (o *TemplateVM) SetReportInfo(v ReportInfo)

SetReportInfo gets a reference to the given ReportInfo and assigns it to the ReportInfo field.

func (TemplateVM) ToMap ¶

func (o TemplateVM) ToMap() (map[string]interface{}, error)

type TemplateVMFilesVMBase ¶

type TemplateVMFilesVMBase struct {
	Files []TemplateVM `json:"files,omitempty"`
	Count *int64       `json:"count,omitempty"`
	Skip  *int32       `json:"skip,omitempty"`
	Take  *int32       `json:"take,omitempty"`
}

TemplateVMFilesVMBase struct for TemplateVMFilesVMBase

func NewTemplateVMFilesVMBase ¶

func NewTemplateVMFilesVMBase() *TemplateVMFilesVMBase

NewTemplateVMFilesVMBase instantiates a new TemplateVMFilesVMBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateVMFilesVMBaseWithDefaults ¶

func NewTemplateVMFilesVMBaseWithDefaults() *TemplateVMFilesVMBase

NewTemplateVMFilesVMBaseWithDefaults instantiates a new TemplateVMFilesVMBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateVMFilesVMBase) GetCount ¶

func (o *TemplateVMFilesVMBase) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*TemplateVMFilesVMBase) GetCountOk ¶

func (o *TemplateVMFilesVMBase) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateVMFilesVMBase) GetFiles ¶

func (o *TemplateVMFilesVMBase) GetFiles() []TemplateVM

GetFiles returns the Files field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateVMFilesVMBase) GetFilesOk ¶

func (o *TemplateVMFilesVMBase) GetFilesOk() ([]TemplateVM, bool)

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateVMFilesVMBase) GetSkip ¶

func (o *TemplateVMFilesVMBase) GetSkip() int32

GetSkip returns the Skip field value if set, zero value otherwise.

func (*TemplateVMFilesVMBase) GetSkipOk ¶

func (o *TemplateVMFilesVMBase) GetSkipOk() (*int32, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateVMFilesVMBase) GetTake ¶

func (o *TemplateVMFilesVMBase) GetTake() int32

GetTake returns the Take field value if set, zero value otherwise.

func (*TemplateVMFilesVMBase) GetTakeOk ¶

func (o *TemplateVMFilesVMBase) GetTakeOk() (*int32, bool)

GetTakeOk returns a tuple with the Take field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateVMFilesVMBase) HasCount ¶

func (o *TemplateVMFilesVMBase) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*TemplateVMFilesVMBase) HasFiles ¶

func (o *TemplateVMFilesVMBase) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*TemplateVMFilesVMBase) HasSkip ¶

func (o *TemplateVMFilesVMBase) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*TemplateVMFilesVMBase) HasTake ¶

func (o *TemplateVMFilesVMBase) HasTake() bool

HasTake returns a boolean if a field has been set.

func (TemplateVMFilesVMBase) MarshalJSON ¶

func (o TemplateVMFilesVMBase) MarshalJSON() ([]byte, error)

func (*TemplateVMFilesVMBase) SetCount ¶

func (o *TemplateVMFilesVMBase) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*TemplateVMFilesVMBase) SetFiles ¶

func (o *TemplateVMFilesVMBase) SetFiles(v []TemplateVM)

SetFiles gets a reference to the given []TemplateVM and assigns it to the Files field.

func (*TemplateVMFilesVMBase) SetSkip ¶

func (o *TemplateVMFilesVMBase) SetSkip(v int32)

SetSkip gets a reference to the given int32 and assigns it to the Skip field.

func (*TemplateVMFilesVMBase) SetTake ¶

func (o *TemplateVMFilesVMBase) SetTake(v int32)

SetTake gets a reference to the given int32 and assigns it to the Take field.

func (TemplateVMFilesVMBase) ToMap ¶

func (o TemplateVMFilesVMBase) ToMap() (map[string]interface{}, error)

type TemplatesApiService ¶

type TemplatesApiService service

TemplatesApiService TemplatesApi service

func (*TemplatesApiService) TemplateFolderAndFileClearRecycleBin ¶

func (a *TemplatesApiService) TemplateFolderAndFileClearRecycleBin(ctx context.Context, subscriptionId string) ApiTemplateFolderAndFileClearRecycleBinRequest

TemplateFolderAndFileClearRecycleBin Delete all folders and files from recycle bin

User with a Delete RecycleBin permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscription id
@return ApiTemplateFolderAndFileClearRecycleBinRequest

func (*TemplatesApiService) TemplateFolderAndFileClearRecycleBinExecute ¶

func (a *TemplatesApiService) TemplateFolderAndFileClearRecycleBinExecute(r ApiTemplateFolderAndFileClearRecycleBinRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFolderAndFileDeleteFiles ¶

func (a *TemplatesApiService) TemplateFolderAndFileDeleteFiles(ctx context.Context, subscriptionId string) ApiTemplateFolderAndFileDeleteFilesRequest

TemplateFolderAndFileDeleteFiles Delete folders and files

User with a Delete permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId id of current subscription
@return ApiTemplateFolderAndFileDeleteFilesRequest

func (*TemplatesApiService) TemplateFolderAndFileDeleteFilesExecute ¶

func (a *TemplatesApiService) TemplateFolderAndFileDeleteFilesExecute(r ApiTemplateFolderAndFileDeleteFilesRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFolderAndFileGetCount ¶

func (a *TemplatesApiService) TemplateFolderAndFileGetCount(ctx context.Context, id string) ApiTemplateFolderAndFileGetCountRequest

TemplateFolderAndFileGetCount Get count of files and folders what contains in a specified folder

User with a Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFolderAndFileGetCountRequest

func (*TemplatesApiService) TemplateFolderAndFileGetCountExecute ¶

func (a *TemplatesApiService) TemplateFolderAndFileGetCountExecute(r ApiTemplateFolderAndFileGetCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*TemplatesApiService) TemplateFolderAndFileGetFoldersAndFiles ¶

func (a *TemplatesApiService) TemplateFolderAndFileGetFoldersAndFiles(ctx context.Context, id string) ApiTemplateFolderAndFileGetFoldersAndFilesRequest

TemplateFolderAndFileGetFoldersAndFiles Get all folders and files from specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFolderAndFileGetFoldersAndFilesRequest

func (*TemplatesApiService) TemplateFolderAndFileGetFoldersAndFilesExecute ¶

func (a *TemplatesApiService) TemplateFolderAndFileGetFoldersAndFilesExecute(r ApiTemplateFolderAndFileGetFoldersAndFilesRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*TemplatesApiService) TemplateFolderAndFileGetRecycleBinFoldersAndFiles ¶

func (a *TemplatesApiService) TemplateFolderAndFileGetRecycleBinFoldersAndFiles(ctx context.Context, subscriptionId string) ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest

TemplateFolderAndFileGetRecycleBinFoldersAndFiles Get all folders and files from recycle bin

User with a Get DeletedFiles permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscription id
@return ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest

func (*TemplatesApiService) TemplateFolderAndFileGetRecycleBinFoldersAndFilesExecute ¶

func (a *TemplatesApiService) TemplateFolderAndFileGetRecycleBinFoldersAndFilesExecute(r ApiTemplateFolderAndFileGetRecycleBinFoldersAndFilesRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*TemplatesApiService) TemplateFolderAndFileRecoverAllFromRecycleBin ¶

func (a *TemplatesApiService) TemplateFolderAndFileRecoverAllFromRecycleBin(ctx context.Context, subscriptionId string) ApiTemplateFolderAndFileRecoverAllFromRecycleBinRequest

TemplateFolderAndFileRecoverAllFromRecycleBin Recover all folders and files from recycle bin

User with a Create RecycleBin permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId subscription id
@return ApiTemplateFolderAndFileRecoverAllFromRecycleBinRequest

func (*TemplatesApiService) TemplateFolderAndFileRecoverAllFromRecycleBinExecute ¶

func (a *TemplatesApiService) TemplateFolderAndFileRecoverAllFromRecycleBinExecute(r ApiTemplateFolderAndFileRecoverAllFromRecycleBinRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFoldersCalculateFolderSize ¶

func (a *TemplatesApiService) TemplateFoldersCalculateFolderSize(ctx context.Context, id string) ApiTemplateFoldersCalculateFolderSizeRequest

TemplateFoldersCalculateFolderSize Get specified folder, calculate it's size

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersCalculateFolderSizeRequest

func (*TemplatesApiService) TemplateFoldersCalculateFolderSizeExecute ¶

func (a *TemplatesApiService) TemplateFoldersCalculateFolderSizeExecute(r ApiTemplateFoldersCalculateFolderSizeRequest) (*FolderSizeVM, *http.Response, error)

Execute executes the request

@return FolderSizeVM

func (*TemplatesApiService) TemplateFoldersCopyFolder ¶

func (a *TemplatesApiService) TemplateFoldersCopyFolder(ctx context.Context, id string, folderId string) ApiTemplateFoldersCopyFolderRequest

TemplateFoldersCopyFolder Move folder to a specified folder

User with a Update Place permission for a folder and Create Entity for a Parent Folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id moving folder id
@param folderId destination folder id
@return ApiTemplateFoldersCopyFolderRequest

func (*TemplatesApiService) TemplateFoldersCopyFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersCopyFolderExecute(r ApiTemplateFoldersCopyFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersDeleteFolder ¶

func (a *TemplatesApiService) TemplateFoldersDeleteFolder(ctx context.Context, id string) ApiTemplateFoldersDeleteFolderRequest

TemplateFoldersDeleteFolder Delete specified folder

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersDeleteFolderRequest

func (*TemplatesApiService) TemplateFoldersDeleteFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersDeleteFolderExecute(r ApiTemplateFoldersDeleteFolderRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFoldersExport ¶

func (a *TemplatesApiService) TemplateFoldersExport(ctx context.Context, id string) ApiTemplateFoldersExportRequest

TemplateFoldersExport Export specified template folder to a specified format

User with Execute Export permission on template folder and Create Entity on an export folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id template folder id
@return ApiTemplateFoldersExportRequest

func (*TemplatesApiService) TemplateFoldersExportExecute ¶

func (a *TemplatesApiService) TemplateFoldersExportExecute(r ApiTemplateFoldersExportRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersGetBreadcrumbs ¶

func (a *TemplatesApiService) TemplateFoldersGetBreadcrumbs(ctx context.Context, id string) ApiTemplateFoldersGetBreadcrumbsRequest

TemplateFoldersGetBreadcrumbs Get specified folder breadcrumbs

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersGetBreadcrumbsRequest

func (*TemplatesApiService) TemplateFoldersGetBreadcrumbsExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetBreadcrumbsExecute(r ApiTemplateFoldersGetBreadcrumbsRequest) (*BreadcrumbsVM, *http.Response, error)

Execute executes the request

@return BreadcrumbsVM

func (*TemplatesApiService) TemplateFoldersGetFolder ¶

func (a *TemplatesApiService) TemplateFoldersGetFolder(ctx context.Context, id string) ApiTemplateFoldersGetFolderRequest

TemplateFoldersGetFolder Get specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersGetFolderRequest

func (*TemplatesApiService) TemplateFoldersGetFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetFolderExecute(r ApiTemplateFoldersGetFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersGetFolders ¶

func (a *TemplatesApiService) TemplateFoldersGetFolders(ctx context.Context, id string) ApiTemplateFoldersGetFoldersRequest

TemplateFoldersGetFolders Get all folders from specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersGetFoldersRequest

func (*TemplatesApiService) TemplateFoldersGetFoldersCount ¶

func (a *TemplatesApiService) TemplateFoldersGetFoldersCount(ctx context.Context, id string) ApiTemplateFoldersGetFoldersCountRequest

TemplateFoldersGetFoldersCount Get count of folders what contains in a specified folder

User with a Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersGetFoldersCountRequest

func (*TemplatesApiService) TemplateFoldersGetFoldersCountExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetFoldersCountExecute(r ApiTemplateFoldersGetFoldersCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*TemplatesApiService) TemplateFoldersGetFoldersExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetFoldersExecute(r ApiTemplateFoldersGetFoldersRequest) (*FilesVM, *http.Response, error)

Execute executes the request

@return FilesVM

func (*TemplatesApiService) TemplateFoldersGetOrCreate ¶

func (a *TemplatesApiService) TemplateFoldersGetOrCreate(ctx context.Context) ApiTemplateFoldersGetOrCreateRequest

TemplateFoldersGetOrCreate Get specified folder

User with a Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateFoldersGetOrCreateRequest

func (*TemplatesApiService) TemplateFoldersGetOrCreateExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetOrCreateExecute(r ApiTemplateFoldersGetOrCreateRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersGetPermissions ¶

func (a *TemplatesApiService) TemplateFoldersGetPermissions(ctx context.Context, id string) ApiTemplateFoldersGetPermissionsRequest

TemplateFoldersGetPermissions Get all folder permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplateFoldersGetPermissionsRequest

func (*TemplatesApiService) TemplateFoldersGetPermissionsExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetPermissionsExecute(r ApiTemplateFoldersGetPermissionsRequest) (*FilePermissionsVM, *http.Response, error)

Execute executes the request

@return FilePermissionsVM

func (*TemplatesApiService) TemplateFoldersGetRootFolder ¶

func (a *TemplatesApiService) TemplateFoldersGetRootFolder(ctx context.Context) ApiTemplateFoldersGetRootFolderRequest

TemplateFoldersGetRootFolder Get user's root folder (without parents)

> Breakchange. Now user model doesn't contain a root folders. This method can return error 400 and 404 when subscription is not found.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateFoldersGetRootFolderRequest

func (*TemplatesApiService) TemplateFoldersGetRootFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersGetRootFolderExecute(r ApiTemplateFoldersGetRootFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersMoveFolder ¶

func (a *TemplatesApiService) TemplateFoldersMoveFolder(ctx context.Context, id string, folderId string) ApiTemplateFoldersMoveFolderRequest

TemplateFoldersMoveFolder Move folder to a specified folder

User with a Update Place permission for a folder and Create Entity for a Parent Folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id moving folder id
@param folderId destination folder id
@return ApiTemplateFoldersMoveFolderRequest

func (*TemplatesApiService) TemplateFoldersMoveFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersMoveFolderExecute(r ApiTemplateFoldersMoveFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersMoveFolderToBin ¶

func (a *TemplatesApiService) TemplateFoldersMoveFolderToBin(ctx context.Context, id string) ApiTemplateFoldersMoveFolderToBinRequest

TemplateFoldersMoveFolderToBin Move specified folder to recycle bin

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersMoveFolderToBinRequest

func (*TemplatesApiService) TemplateFoldersMoveFolderToBinExecute ¶

func (a *TemplatesApiService) TemplateFoldersMoveFolderToBinExecute(r ApiTemplateFoldersMoveFolderToBinRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFoldersPostFolder ¶

func (a *TemplatesApiService) TemplateFoldersPostFolder(ctx context.Context, id string) ApiTemplateFoldersPostFolderRequest

TemplateFoldersPostFolder Create folder

User with a Create Entity permisison can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of parent folder id
@return ApiTemplateFoldersPostFolderRequest

func (*TemplatesApiService) TemplateFoldersPostFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersPostFolderExecute(r ApiTemplateFoldersPostFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersPrepare ¶

func (a *TemplatesApiService) TemplateFoldersPrepare(ctx context.Context, id string) ApiTemplateFoldersPrepareRequest

TemplateFoldersPrepare Prepare specified template folder to report folder

User with Execute Prepare permission on report and Create Entity on a prepared report folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id template id
@return ApiTemplateFoldersPrepareRequest

func (*TemplatesApiService) TemplateFoldersPrepareExecute ¶

func (a *TemplatesApiService) TemplateFoldersPrepareExecute(r ApiTemplateFoldersPrepareRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersRecoverFolder ¶

func (a *TemplatesApiService) TemplateFoldersRecoverFolder(ctx context.Context, id string) ApiTemplateFoldersRecoverFolderRequest

TemplateFoldersRecoverFolder Recover specified folder

User with a Delete Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplateFoldersRecoverFolderRequest

func (*TemplatesApiService) TemplateFoldersRecoverFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersRecoverFolderExecute(r ApiTemplateFoldersRecoverFolderRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFoldersRenameFolder ¶

func (a *TemplatesApiService) TemplateFoldersRenameFolder(ctx context.Context, id string) ApiTemplateFoldersRenameFolderRequest

TemplateFoldersRenameFolder Rename a folder

User with a Update Name permision can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplateFoldersRenameFolderRequest

func (*TemplatesApiService) TemplateFoldersRenameFolderExecute ¶

func (a *TemplatesApiService) TemplateFoldersRenameFolderExecute(r ApiTemplateFoldersRenameFolderRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersUpdateIcon ¶

func (a *TemplatesApiService) TemplateFoldersUpdateIcon(ctx context.Context, id string) ApiTemplateFoldersUpdateIconRequest

TemplateFoldersUpdateIcon Update a folder's icon

User with a Update Icon permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of folder
@return ApiTemplateFoldersUpdateIconRequest

func (*TemplatesApiService) TemplateFoldersUpdateIconExecute ¶

func (a *TemplatesApiService) TemplateFoldersUpdateIconExecute(r ApiTemplateFoldersUpdateIconRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplateFoldersUpdatePermissions ¶

func (a *TemplatesApiService) TemplateFoldersUpdatePermissions(ctx context.Context, id string) ApiTemplateFoldersUpdatePermissionsRequest

TemplateFoldersUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplateFoldersUpdatePermissionsRequest

func (*TemplatesApiService) TemplateFoldersUpdatePermissionsExecute ¶

func (a *TemplatesApiService) TemplateFoldersUpdatePermissionsExecute(r ApiTemplateFoldersUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplateFoldersUpdateTags ¶

func (a *TemplatesApiService) TemplateFoldersUpdateTags(ctx context.Context, id string) ApiTemplateFoldersUpdateTagsRequest

TemplateFoldersUpdateTags Update tags

User with a Update Tags permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplateFoldersUpdateTagsRequest

func (*TemplatesApiService) TemplateFoldersUpdateTagsExecute ¶

func (a *TemplatesApiService) TemplateFoldersUpdateTagsExecute(r ApiTemplateFoldersUpdateTagsRequest) (*FileVM, *http.Response, error)

Execute executes the request

@return FileVM

func (*TemplatesApiService) TemplatesCopyFile ¶

func (a *TemplatesApiService) TemplatesCopyFile(ctx context.Context, id string, folderId string) ApiTemplatesCopyFileRequest

TemplatesCopyFile Copy file to a specified folder

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@param folderId folder id
@return ApiTemplatesCopyFileRequest

func (*TemplatesApiService) TemplatesCopyFileExecute ¶

func (a *TemplatesApiService) TemplatesCopyFileExecute(r ApiTemplatesCopyFileRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

func (*TemplatesApiService) TemplatesDeleteFile ¶

TemplatesDeleteFile Delete specified file

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiTemplatesDeleteFileRequest

func (*TemplatesApiService) TemplatesDeleteFileExecute ¶

func (a *TemplatesApiService) TemplatesDeleteFileExecute(r ApiTemplatesDeleteFileRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplatesExport ¶

TemplatesExport Export specified report template to a specified format

User with Execute Export permission on prepared report and Create Entity on an export folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id report id
@return ApiTemplatesExportRequest

func (*TemplatesApiService) TemplatesExportExecute ¶

func (a *TemplatesApiService) TemplatesExportExecute(r ApiTemplatesExportRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*TemplatesApiService) TemplatesGetFile ¶

TemplatesGetFile Get specified file

User with Get Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiTemplatesGetFileRequest

func (*TemplatesApiService) TemplatesGetFileExecute ¶

func (a *TemplatesApiService) TemplatesGetFileExecute(r ApiTemplatesGetFileRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

func (*TemplatesApiService) TemplatesGetFileHistory ¶

func (a *TemplatesApiService) TemplatesGetFileHistory(ctx context.Context, id string) ApiTemplatesGetFileHistoryRequest

TemplatesGetFileHistory Returns list of actions, performed on this file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplatesGetFileHistoryRequest

func (*TemplatesApiService) TemplatesGetFileHistoryExecute ¶

func (a *TemplatesApiService) TemplatesGetFileHistoryExecute(r ApiTemplatesGetFileHistoryRequest) (*AuditActionsVM, *http.Response, error)

Execute executes the request

@return AuditActionsVM

func (*TemplatesApiService) TemplatesGetFilesCount ¶

func (a *TemplatesApiService) TemplatesGetFilesCount(ctx context.Context, id string) ApiTemplatesGetFilesCountRequest

TemplatesGetFilesCount Get count of files what contains in a specified folder

User with Get Count permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplatesGetFilesCountRequest

func (*TemplatesApiService) TemplatesGetFilesCountExecute ¶

func (a *TemplatesApiService) TemplatesGetFilesCountExecute(r ApiTemplatesGetFilesCountRequest) (*CountVM, *http.Response, error)

Execute executes the request

@return CountVM

func (*TemplatesApiService) TemplatesGetFilesList ¶

func (a *TemplatesApiService) TemplatesGetFilesList(ctx context.Context, id string) ApiTemplatesGetFilesListRequest

TemplatesGetFilesList Get all files from specified folder. <br /> User with Get Entity permission can access this method. <br /> The method will returns minimal infomration about the file: <br /> id, name, size, editedTime, createdTime, tags, status, statusReason.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id folder id
@return ApiTemplatesGetFilesListRequest

func (*TemplatesApiService) TemplatesGetFilesListExecute ¶

func (a *TemplatesApiService) TemplatesGetFilesListExecute(r ApiTemplatesGetFilesListRequest) (*TemplatesVM, *http.Response, error)

Execute executes the request

@return TemplatesVM

func (*TemplatesApiService) TemplatesGetPermissions ¶

func (a *TemplatesApiService) TemplatesGetPermissions(ctx context.Context, id string) ApiTemplatesGetPermissionsRequest

TemplatesGetPermissions Get all file permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplatesGetPermissionsRequest

func (*TemplatesApiService) TemplatesGetPermissionsExecute ¶

Execute executes the request

@return FilePermissionsVM

func (*TemplatesApiService) TemplatesMoveFile ¶

func (a *TemplatesApiService) TemplatesMoveFile(ctx context.Context, id string, folderId string) ApiTemplatesMoveFileRequest

TemplatesMoveFile Move file to a specified folder

User with Update Place permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@param folderId folder id
@return ApiTemplatesMoveFileRequest

func (*TemplatesApiService) TemplatesMoveFileExecute ¶

func (a *TemplatesApiService) TemplatesMoveFileExecute(r ApiTemplatesMoveFileRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

func (*TemplatesApiService) TemplatesMoveFileToBin ¶

func (a *TemplatesApiService) TemplatesMoveFileToBin(ctx context.Context, id string) ApiTemplatesMoveFileToBinRequest

TemplatesMoveFileToBin Move specified file to recycle bin

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiTemplatesMoveFileToBinRequest

func (*TemplatesApiService) TemplatesMoveFileToBinExecute ¶

func (a *TemplatesApiService) TemplatesMoveFileToBinExecute(r ApiTemplatesMoveFileToBinRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplatesPrepare ¶

TemplatesPrepare Prepare specified template to report

User with Execute Prepare permission on report and Create Entity on a prepared report folder can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id template id
@return ApiTemplatesPrepareRequest

func (*TemplatesApiService) TemplatesPrepareExecute ¶

func (a *TemplatesApiService) TemplatesPrepareExecute(r ApiTemplatesPrepareRequest) (*ReportVM, *http.Response, error)

Execute executes the request

@return ReportVM

func (*TemplatesApiService) TemplatesRecoverFile ¶

func (a *TemplatesApiService) TemplatesRecoverFile(ctx context.Context, id string) ApiTemplatesRecoverFileRequest

TemplatesRecoverFile Recover specified file from bin

User with Delete permission can access the method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id file id
@return ApiTemplatesRecoverFileRequest

func (*TemplatesApiService) TemplatesRecoverFileExecute ¶

func (a *TemplatesApiService) TemplatesRecoverFileExecute(r ApiTemplatesRecoverFileRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplatesRenameFile ¶

TemplatesRenameFile Rename a file

User with Update Name permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplatesRenameFileRequest

func (*TemplatesApiService) TemplatesRenameFileExecute ¶

func (a *TemplatesApiService) TemplatesRenameFileExecute(r ApiTemplatesRenameFileRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

func (*TemplatesApiService) TemplatesStaticPreview ¶

func (a *TemplatesApiService) TemplatesStaticPreview(ctx context.Context, id string) ApiTemplatesStaticPreviewRequest

TemplatesStaticPreview Make preview for the report. Generate a new or return exist prepared svg files. If template was changed will be returned a new. Pass the “ parameter to check prepared timestamp

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id template id
@return ApiTemplatesStaticPreviewRequest

func (*TemplatesApiService) TemplatesStaticPreviewExecute ¶

func (a *TemplatesApiService) TemplatesStaticPreviewExecute(r ApiTemplatesStaticPreviewRequest) (*ExportVM, *http.Response, error)

Execute executes the request

@return ExportVM

func (*TemplatesApiService) TemplatesUpdateContent ¶

func (a *TemplatesApiService) TemplatesUpdateContent(ctx context.Context, id string) ApiTemplatesUpdateContentRequest

TemplatesUpdateContent Updates contnet of the template

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id template id
@return ApiTemplatesUpdateContentRequest

func (*TemplatesApiService) TemplatesUpdateContentExecute ¶

func (a *TemplatesApiService) TemplatesUpdateContentExecute(r ApiTemplatesUpdateContentRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplatesUpdateIcon ¶

TemplatesUpdateIcon Update a files's icon

User with Update Icon permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplatesUpdateIconRequest

func (*TemplatesApiService) TemplatesUpdateIconExecute ¶

func (a *TemplatesApiService) TemplatesUpdateIconExecute(r ApiTemplatesUpdateIconRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

func (*TemplatesApiService) TemplatesUpdatePermissions ¶

func (a *TemplatesApiService) TemplatesUpdatePermissions(ctx context.Context, id string) ApiTemplatesUpdatePermissionsRequest

TemplatesUpdatePermissions Update permissions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplatesUpdatePermissionsRequest

func (*TemplatesApiService) TemplatesUpdatePermissionsExecute ¶

func (a *TemplatesApiService) TemplatesUpdatePermissionsExecute(r ApiTemplatesUpdatePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*TemplatesApiService) TemplatesUpdateTags ¶

TemplatesUpdateTags Update tags

User with Update Tags permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiTemplatesUpdateTagsRequest

func (*TemplatesApiService) TemplatesUpdateTagsExecute ¶

func (a *TemplatesApiService) TemplatesUpdateTagsExecute(r ApiTemplatesUpdateTagsRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

func (*TemplatesApiService) TemplatesUploadFile ¶

TemplatesUploadFile Upload a file to the specified folder !

User with Create Entity permission can access this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of folder
@return ApiTemplatesUploadFileRequest

func (*TemplatesApiService) TemplatesUploadFileExecute ¶

func (a *TemplatesApiService) TemplatesUploadFileExecute(r ApiTemplatesUploadFileRequest) (*TemplateVM, *http.Response, error)

Execute executes the request

@return TemplateVM

type TemplatesVM ¶

type TemplatesVM struct {
}

TemplatesVM struct for TemplatesVM

func NewTemplatesVM ¶

func NewTemplatesVM() *TemplatesVM

NewTemplatesVM instantiates a new TemplatesVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplatesVMWithDefaults ¶

func NewTemplatesVMWithDefaults() *TemplatesVM

NewTemplatesVMWithDefaults instantiates a new TemplatesVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (TemplatesVM) MarshalJSON ¶

func (o TemplatesVM) MarshalJSON() ([]byte, error)

func (TemplatesVM) ToMap ¶

func (o TemplatesVM) ToMap() (map[string]interface{}, error)

type ThumbnailReportTaskVM ¶

type ThumbnailReportTaskVM struct {
	ReportId NullableString `json:"reportId,omitempty"`
}

ThumbnailReportTaskVM struct for ThumbnailReportTaskVM

func NewThumbnailReportTaskVM ¶

func NewThumbnailReportTaskVM(t string) *ThumbnailReportTaskVM

NewThumbnailReportTaskVM instantiates a new ThumbnailReportTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThumbnailReportTaskVMWithDefaults ¶

func NewThumbnailReportTaskVMWithDefaults() *ThumbnailReportTaskVM

NewThumbnailReportTaskVMWithDefaults instantiates a new ThumbnailReportTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThumbnailReportTaskVM) GetReportId ¶

func (o *ThumbnailReportTaskVM) GetReportId() string

GetReportId returns the ReportId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThumbnailReportTaskVM) GetReportIdOk ¶

func (o *ThumbnailReportTaskVM) GetReportIdOk() (*string, bool)

GetReportIdOk returns a tuple with the ReportId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThumbnailReportTaskVM) HasReportId ¶

func (o *ThumbnailReportTaskVM) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (ThumbnailReportTaskVM) MarshalJSON ¶

func (o ThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*ThumbnailReportTaskVM) SetReportId ¶

func (o *ThumbnailReportTaskVM) SetReportId(v string)

SetReportId gets a reference to the given NullableString and assigns it to the ReportId field.

func (*ThumbnailReportTaskVM) SetReportIdNil ¶

func (o *ThumbnailReportTaskVM) SetReportIdNil()

SetReportIdNil sets the value for ReportId to be an explicit nil

func (ThumbnailReportTaskVM) ToMap ¶

func (o ThumbnailReportTaskVM) ToMap() (map[string]interface{}, error)

func (*ThumbnailReportTaskVM) UnsetReportId ¶

func (o *ThumbnailReportTaskVM) UnsetReportId()

UnsetReportId ensures that no value is present for ReportId, not even an explicit nil

type ThumbnailTemplateTaskVM ¶

type ThumbnailTemplateTaskVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
}

ThumbnailTemplateTaskVM struct for ThumbnailTemplateTaskVM

func NewThumbnailTemplateTaskVM ¶

func NewThumbnailTemplateTaskVM(t string) *ThumbnailTemplateTaskVM

NewThumbnailTemplateTaskVM instantiates a new ThumbnailTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThumbnailTemplateTaskVMWithDefaults ¶

func NewThumbnailTemplateTaskVMWithDefaults() *ThumbnailTemplateTaskVM

NewThumbnailTemplateTaskVMWithDefaults instantiates a new ThumbnailTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThumbnailTemplateTaskVM) GetTemplateId ¶

func (o *ThumbnailTemplateTaskVM) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThumbnailTemplateTaskVM) GetTemplateIdOk ¶

func (o *ThumbnailTemplateTaskVM) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ThumbnailTemplateTaskVM) HasTemplateId ¶

func (o *ThumbnailTemplateTaskVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (ThumbnailTemplateTaskVM) MarshalJSON ¶

func (o ThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*ThumbnailTemplateTaskVM) SetTemplateId ¶

func (o *ThumbnailTemplateTaskVM) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*ThumbnailTemplateTaskVM) SetTemplateIdNil ¶

func (o *ThumbnailTemplateTaskVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (ThumbnailTemplateTaskVM) ToMap ¶

func (o ThumbnailTemplateTaskVM) ToMap() (map[string]interface{}, error)

func (*ThumbnailTemplateTaskVM) UnsetTemplateId ¶

func (o *ThumbnailTemplateTaskVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type TimePeriodType ¶

type TimePeriodType string

TimePeriodType the model 'TimePeriodType'

const (
	SECOND TimePeriodType = "Second"
	MINUTE TimePeriodType = "Minute"
	HOUR   TimePeriodType = "Hour"
	DAY    TimePeriodType = "Day"
	WEEK   TimePeriodType = "Week"
	MONTH  TimePeriodType = "Month"
	YEAR   TimePeriodType = "Year"
)

List of TimePeriodType

func NewTimePeriodTypeFromValue ¶

func NewTimePeriodTypeFromValue(v string) (*TimePeriodType, error)

NewTimePeriodTypeFromValue returns a pointer to a valid TimePeriodType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TimePeriodType) IsValid ¶

func (v TimePeriodType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TimePeriodType) Ptr ¶

func (v TimePeriodType) Ptr() *TimePeriodType

Ptr returns reference to TimePeriodType value

func (*TimePeriodType) UnmarshalJSON ¶

func (v *TimePeriodType) UnmarshalJSON(src []byte) error

type TransformTaskBaseVM ¶

type TransformTaskBaseVM struct {
	InputFile    *InputFileVM   `json:"inputFile,omitempty"`
	Locale       NullableString `json:"locale,omitempty"`
	OutputFile   *OutputFileVM  `json:"outputFile,omitempty"`
	TransportIds []string       `json:"transportIds,omitempty"`
	T            string         `json:"$t"`
}

TransformTaskBaseVM struct for TransformTaskBaseVM

func NewTransformTaskBaseVM ¶

func NewTransformTaskBaseVM(t string) *TransformTaskBaseVM

NewTransformTaskBaseVM instantiates a new TransformTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransformTaskBaseVMWithDefaults ¶

func NewTransformTaskBaseVMWithDefaults() *TransformTaskBaseVM

NewTransformTaskBaseVMWithDefaults instantiates a new TransformTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransformTaskBaseVM) GetInputFile ¶

func (o *TransformTaskBaseVM) GetInputFile() InputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*TransformTaskBaseVM) GetInputFileOk ¶

func (o *TransformTaskBaseVM) GetInputFileOk() (*InputFileVM, bool)

GetInputFileOk returns a tuple with the InputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransformTaskBaseVM) GetLocale ¶

func (o *TransformTaskBaseVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransformTaskBaseVM) GetLocaleOk ¶

func (o *TransformTaskBaseVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransformTaskBaseVM) GetOutputFile ¶

func (o *TransformTaskBaseVM) GetOutputFile() OutputFileVM

GetOutputFile returns the OutputFile field value if set, zero value otherwise.

func (*TransformTaskBaseVM) GetOutputFileOk ¶

func (o *TransformTaskBaseVM) GetOutputFileOk() (*OutputFileVM, bool)

GetOutputFileOk returns a tuple with the OutputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransformTaskBaseVM) GetT ¶

func (o *TransformTaskBaseVM) GetT() string

GetT returns the T field value

func (*TransformTaskBaseVM) GetTOk ¶

func (o *TransformTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*TransformTaskBaseVM) GetTransportIds ¶

func (o *TransformTaskBaseVM) GetTransportIds() []string

GetTransportIds returns the TransportIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransformTaskBaseVM) GetTransportIdsOk ¶

func (o *TransformTaskBaseVM) GetTransportIdsOk() ([]string, bool)

GetTransportIdsOk returns a tuple with the TransportIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransformTaskBaseVM) HasInputFile ¶

func (o *TransformTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (*TransformTaskBaseVM) HasLocale ¶

func (o *TransformTaskBaseVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*TransformTaskBaseVM) HasOutputFile ¶

func (o *TransformTaskBaseVM) HasOutputFile() bool

HasOutputFile returns a boolean if a field has been set.

func (*TransformTaskBaseVM) HasTransportIds ¶

func (o *TransformTaskBaseVM) HasTransportIds() bool

HasTransportIds returns a boolean if a field has been set.

func (TransformTaskBaseVM) MarshalJSON ¶

func (o TransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*TransformTaskBaseVM) SetInputFile ¶

func (o *TransformTaskBaseVM) SetInputFile(v InputFileVM)

SetInputFile gets a reference to the given InputFileVM and assigns it to the InputFile field.

func (*TransformTaskBaseVM) SetLocale ¶

func (o *TransformTaskBaseVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*TransformTaskBaseVM) SetLocaleNil ¶

func (o *TransformTaskBaseVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*TransformTaskBaseVM) SetOutputFile ¶

func (o *TransformTaskBaseVM) SetOutputFile(v OutputFileVM)

SetOutputFile gets a reference to the given OutputFileVM and assigns it to the OutputFile field.

func (*TransformTaskBaseVM) SetT ¶

func (o *TransformTaskBaseVM) SetT(v string)

SetT sets field value

func (*TransformTaskBaseVM) SetTransportIds ¶

func (o *TransformTaskBaseVM) SetTransportIds(v []string)

SetTransportIds gets a reference to the given []string and assigns it to the TransportIds field.

func (TransformTaskBaseVM) ToMap ¶

func (o TransformTaskBaseVM) ToMap() (map[string]interface{}, error)

func (*TransformTaskBaseVM) UnsetLocale ¶

func (o *TransformTaskBaseVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

type TransportTaskBaseVM ¶

type TransportTaskBaseVM struct {
	InputFile *InputFileVM `json:"inputFile,omitempty"`
	T         string       `json:"$t"`
}

TransportTaskBaseVM struct for TransportTaskBaseVM

func NewTransportTaskBaseVM ¶

func NewTransportTaskBaseVM(t string) *TransportTaskBaseVM

NewTransportTaskBaseVM instantiates a new TransportTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransportTaskBaseVMWithDefaults ¶

func NewTransportTaskBaseVMWithDefaults() *TransportTaskBaseVM

NewTransportTaskBaseVMWithDefaults instantiates a new TransportTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransportTaskBaseVM) GetInputFile ¶

func (o *TransportTaskBaseVM) GetInputFile() InputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*TransportTaskBaseVM) GetInputFileOk ¶

func (o *TransportTaskBaseVM) GetInputFileOk() (*InputFileVM, bool)

GetInputFileOk returns a tuple with the InputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransportTaskBaseVM) GetT ¶

func (o *TransportTaskBaseVM) GetT() string

GetT returns the T field value

func (*TransportTaskBaseVM) GetTOk ¶

func (o *TransportTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*TransportTaskBaseVM) HasInputFile ¶

func (o *TransportTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (TransportTaskBaseVM) MarshalJSON ¶

func (o TransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*TransportTaskBaseVM) SetInputFile ¶

func (o *TransportTaskBaseVM) SetInputFile(v InputFileVM)

SetInputFile gets a reference to the given InputFileVM and assigns it to the InputFile field.

func (*TransportTaskBaseVM) SetT ¶

func (o *TransportTaskBaseVM) SetT(v string)

SetT sets field value

func (TransportTaskBaseVM) ToMap ¶

func (o TransportTaskBaseVM) ToMap() (map[string]interface{}, error)

type UpdateContactGroupVM ¶

type UpdateContactGroupVM struct {
	Name           string         `json:"name"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
}

UpdateContactGroupVM struct for UpdateContactGroupVM

func NewUpdateContactGroupVM ¶

func NewUpdateContactGroupVM(name string) *UpdateContactGroupVM

NewUpdateContactGroupVM instantiates a new UpdateContactGroupVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateContactGroupVMWithDefaults ¶

func NewUpdateContactGroupVMWithDefaults() *UpdateContactGroupVM

NewUpdateContactGroupVMWithDefaults instantiates a new UpdateContactGroupVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateContactGroupVM) GetName ¶

func (o *UpdateContactGroupVM) GetName() string

GetName returns the Name field value

func (*UpdateContactGroupVM) GetNameOk ¶

func (o *UpdateContactGroupVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateContactGroupVM) GetSubscriptionId ¶

func (o *UpdateContactGroupVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateContactGroupVM) GetSubscriptionIdOk ¶

func (o *UpdateContactGroupVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateContactGroupVM) HasSubscriptionId ¶

func (o *UpdateContactGroupVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (UpdateContactGroupVM) MarshalJSON ¶

func (o UpdateContactGroupVM) MarshalJSON() ([]byte, error)

func (*UpdateContactGroupVM) SetName ¶

func (o *UpdateContactGroupVM) SetName(v string)

SetName sets field value

func (*UpdateContactGroupVM) SetSubscriptionId ¶

func (o *UpdateContactGroupVM) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*UpdateContactGroupVM) SetSubscriptionIdNil ¶

func (o *UpdateContactGroupVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (UpdateContactGroupVM) ToMap ¶

func (o UpdateContactGroupVM) ToMap() (map[string]interface{}, error)

func (*UpdateContactGroupVM) UnsetSubscriptionId ¶

func (o *UpdateContactGroupVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type UpdateContactVM ¶

type UpdateContactVM struct {
	Name           NullableString `json:"name,omitempty"`
	Email          NullableString `json:"email,omitempty"`
	Groups         []string       `json:"groups,omitempty"`
	SubscriptionId NullableString `json:"subscriptionId,omitempty"`
}

UpdateContactVM struct for UpdateContactVM

func NewUpdateContactVM ¶

func NewUpdateContactVM() *UpdateContactVM

NewUpdateContactVM instantiates a new UpdateContactVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateContactVMWithDefaults ¶

func NewUpdateContactVMWithDefaults() *UpdateContactVM

NewUpdateContactVMWithDefaults instantiates a new UpdateContactVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateContactVM) GetEmail ¶

func (o *UpdateContactVM) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateContactVM) GetEmailOk ¶

func (o *UpdateContactVM) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateContactVM) GetGroups ¶

func (o *UpdateContactVM) GetGroups() []string

GetGroups returns the Groups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateContactVM) GetGroupsOk ¶

func (o *UpdateContactVM) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateContactVM) GetName ¶

func (o *UpdateContactVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateContactVM) GetNameOk ¶

func (o *UpdateContactVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateContactVM) GetSubscriptionId ¶

func (o *UpdateContactVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateContactVM) GetSubscriptionIdOk ¶

func (o *UpdateContactVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateContactVM) HasEmail ¶

func (o *UpdateContactVM) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UpdateContactVM) HasGroups ¶

func (o *UpdateContactVM) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*UpdateContactVM) HasName ¶

func (o *UpdateContactVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateContactVM) HasSubscriptionId ¶

func (o *UpdateContactVM) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (UpdateContactVM) MarshalJSON ¶

func (o UpdateContactVM) MarshalJSON() ([]byte, error)

func (*UpdateContactVM) SetEmail ¶

func (o *UpdateContactVM) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*UpdateContactVM) SetEmailNil ¶

func (o *UpdateContactVM) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*UpdateContactVM) SetGroups ¶

func (o *UpdateContactVM) SetGroups(v []string)

SetGroups gets a reference to the given []string and assigns it to the Groups field.

func (*UpdateContactVM) SetName ¶

func (o *UpdateContactVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*UpdateContactVM) SetNameNil ¶

func (o *UpdateContactVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateContactVM) SetSubscriptionId ¶

func (o *UpdateContactVM) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*UpdateContactVM) SetSubscriptionIdNil ¶

func (o *UpdateContactVM) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (UpdateContactVM) ToMap ¶

func (o UpdateContactVM) ToMap() (map[string]interface{}, error)

func (*UpdateContactVM) UnsetEmail ¶

func (o *UpdateContactVM) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*UpdateContactVM) UnsetName ¶

func (o *UpdateContactVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*UpdateContactVM) UnsetSubscriptionId ¶

func (o *UpdateContactVM) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

type UpdateDataSourceConnectionStringVM ¶

type UpdateDataSourceConnectionStringVM struct {
	ConnectionString string `json:"connectionString"`
}

UpdateDataSourceConnectionStringVM struct for UpdateDataSourceConnectionStringVM

func NewUpdateDataSourceConnectionStringVM ¶

func NewUpdateDataSourceConnectionStringVM(connectionString string) *UpdateDataSourceConnectionStringVM

NewUpdateDataSourceConnectionStringVM instantiates a new UpdateDataSourceConnectionStringVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDataSourceConnectionStringVMWithDefaults ¶

func NewUpdateDataSourceConnectionStringVMWithDefaults() *UpdateDataSourceConnectionStringVM

NewUpdateDataSourceConnectionStringVMWithDefaults instantiates a new UpdateDataSourceConnectionStringVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDataSourceConnectionStringVM) GetConnectionString ¶

func (o *UpdateDataSourceConnectionStringVM) GetConnectionString() string

GetConnectionString returns the ConnectionString field value

func (*UpdateDataSourceConnectionStringVM) GetConnectionStringOk ¶

func (o *UpdateDataSourceConnectionStringVM) GetConnectionStringOk() (*string, bool)

GetConnectionStringOk returns a tuple with the ConnectionString field value and a boolean to check if the value has been set.

func (UpdateDataSourceConnectionStringVM) MarshalJSON ¶

func (o UpdateDataSourceConnectionStringVM) MarshalJSON() ([]byte, error)

func (*UpdateDataSourceConnectionStringVM) SetConnectionString ¶

func (o *UpdateDataSourceConnectionStringVM) SetConnectionString(v string)

SetConnectionString sets field value

func (UpdateDataSourceConnectionStringVM) ToMap ¶

func (o UpdateDataSourceConnectionStringVM) ToMap() (map[string]interface{}, error)

type UpdateDataSourcePermissionsVM ¶

type UpdateDataSourcePermissionsVM struct {
	NewPermissions DataSourcePermissions  `json:"newPermissions"`
	Administrate   DataSourceAdministrate `json:"administrate"`
}

UpdateDataSourcePermissionsVM struct for UpdateDataSourcePermissionsVM

func NewUpdateDataSourcePermissionsVM ¶

func NewUpdateDataSourcePermissionsVM(newPermissions DataSourcePermissions, administrate DataSourceAdministrate) *UpdateDataSourcePermissionsVM

NewUpdateDataSourcePermissionsVM instantiates a new UpdateDataSourcePermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDataSourcePermissionsVMWithDefaults ¶

func NewUpdateDataSourcePermissionsVMWithDefaults() *UpdateDataSourcePermissionsVM

NewUpdateDataSourcePermissionsVMWithDefaults instantiates a new UpdateDataSourcePermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDataSourcePermissionsVM) GetAdministrate ¶

GetAdministrate returns the Administrate field value

func (*UpdateDataSourcePermissionsVM) GetAdministrateOk ¶

func (o *UpdateDataSourcePermissionsVM) GetAdministrateOk() (*DataSourceAdministrate, bool)

GetAdministrateOk returns a tuple with the Administrate field value and a boolean to check if the value has been set.

func (*UpdateDataSourcePermissionsVM) GetNewPermissions ¶

GetNewPermissions returns the NewPermissions field value

func (*UpdateDataSourcePermissionsVM) GetNewPermissionsOk ¶

func (o *UpdateDataSourcePermissionsVM) GetNewPermissionsOk() (*DataSourcePermissions, bool)

GetNewPermissionsOk returns a tuple with the NewPermissions field value and a boolean to check if the value has been set.

func (UpdateDataSourcePermissionsVM) MarshalJSON ¶

func (o UpdateDataSourcePermissionsVM) MarshalJSON() ([]byte, error)

func (*UpdateDataSourcePermissionsVM) SetAdministrate ¶

SetAdministrate sets field value

func (*UpdateDataSourcePermissionsVM) SetNewPermissions ¶

func (o *UpdateDataSourcePermissionsVM) SetNewPermissions(v DataSourcePermissions)

SetNewPermissions sets field value

func (UpdateDataSourcePermissionsVM) ToMap ¶

func (o UpdateDataSourcePermissionsVM) ToMap() (map[string]interface{}, error)

type UpdateDataSourceSubscriptionVM ¶

type UpdateDataSourceSubscriptionVM struct {
	SubscriptionId string `json:"subscriptionId"`
}

UpdateDataSourceSubscriptionVM struct for UpdateDataSourceSubscriptionVM

func NewUpdateDataSourceSubscriptionVM ¶

func NewUpdateDataSourceSubscriptionVM(subscriptionId string) *UpdateDataSourceSubscriptionVM

NewUpdateDataSourceSubscriptionVM instantiates a new UpdateDataSourceSubscriptionVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDataSourceSubscriptionVMWithDefaults ¶

func NewUpdateDataSourceSubscriptionVMWithDefaults() *UpdateDataSourceSubscriptionVM

NewUpdateDataSourceSubscriptionVMWithDefaults instantiates a new UpdateDataSourceSubscriptionVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDataSourceSubscriptionVM) GetSubscriptionId ¶

func (o *UpdateDataSourceSubscriptionVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value

func (*UpdateDataSourceSubscriptionVM) GetSubscriptionIdOk ¶

func (o *UpdateDataSourceSubscriptionVM) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value and a boolean to check if the value has been set.

func (UpdateDataSourceSubscriptionVM) MarshalJSON ¶

func (o UpdateDataSourceSubscriptionVM) MarshalJSON() ([]byte, error)

func (*UpdateDataSourceSubscriptionVM) SetSubscriptionId ¶

func (o *UpdateDataSourceSubscriptionVM) SetSubscriptionId(v string)

SetSubscriptionId sets field value

func (UpdateDataSourceSubscriptionVM) ToMap ¶

func (o UpdateDataSourceSubscriptionVM) ToMap() (map[string]interface{}, error)

type UpdateDefaultPermissionsVM ¶

type UpdateDefaultPermissionsVM struct {
	FilePermissions       *UpdateFilePermissionsVM       `json:"filePermissions,omitempty"`
	GroupPermissions      *UpdateGroupPermissionsVM      `json:"groupPermissions,omitempty"`
	DataSourcePermissions *UpdateDataSourcePermissionsVM `json:"dataSourcePermissions,omitempty"`
	TaskPermissions       *UpdateTaskPermissionsVM       `json:"taskPermissions,omitempty"`
}

UpdateDefaultPermissionsVM struct for UpdateDefaultPermissionsVM

func NewUpdateDefaultPermissionsVM ¶

func NewUpdateDefaultPermissionsVM() *UpdateDefaultPermissionsVM

NewUpdateDefaultPermissionsVM instantiates a new UpdateDefaultPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDefaultPermissionsVMWithDefaults ¶

func NewUpdateDefaultPermissionsVMWithDefaults() *UpdateDefaultPermissionsVM

NewUpdateDefaultPermissionsVMWithDefaults instantiates a new UpdateDefaultPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDefaultPermissionsVM) GetDataSourcePermissions ¶

func (o *UpdateDefaultPermissionsVM) GetDataSourcePermissions() UpdateDataSourcePermissionsVM

GetDataSourcePermissions returns the DataSourcePermissions field value if set, zero value otherwise.

func (*UpdateDefaultPermissionsVM) GetDataSourcePermissionsOk ¶

func (o *UpdateDefaultPermissionsVM) GetDataSourcePermissionsOk() (*UpdateDataSourcePermissionsVM, bool)

GetDataSourcePermissionsOk returns a tuple with the DataSourcePermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDefaultPermissionsVM) GetFilePermissions ¶

func (o *UpdateDefaultPermissionsVM) GetFilePermissions() UpdateFilePermissionsVM

GetFilePermissions returns the FilePermissions field value if set, zero value otherwise.

func (*UpdateDefaultPermissionsVM) GetFilePermissionsOk ¶

func (o *UpdateDefaultPermissionsVM) GetFilePermissionsOk() (*UpdateFilePermissionsVM, bool)

GetFilePermissionsOk returns a tuple with the FilePermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDefaultPermissionsVM) GetGroupPermissions ¶

func (o *UpdateDefaultPermissionsVM) GetGroupPermissions() UpdateGroupPermissionsVM

GetGroupPermissions returns the GroupPermissions field value if set, zero value otherwise.

func (*UpdateDefaultPermissionsVM) GetGroupPermissionsOk ¶

func (o *UpdateDefaultPermissionsVM) GetGroupPermissionsOk() (*UpdateGroupPermissionsVM, bool)

GetGroupPermissionsOk returns a tuple with the GroupPermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDefaultPermissionsVM) GetTaskPermissions ¶

func (o *UpdateDefaultPermissionsVM) GetTaskPermissions() UpdateTaskPermissionsVM

GetTaskPermissions returns the TaskPermissions field value if set, zero value otherwise.

func (*UpdateDefaultPermissionsVM) GetTaskPermissionsOk ¶

func (o *UpdateDefaultPermissionsVM) GetTaskPermissionsOk() (*UpdateTaskPermissionsVM, bool)

GetTaskPermissionsOk returns a tuple with the TaskPermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDefaultPermissionsVM) HasDataSourcePermissions ¶

func (o *UpdateDefaultPermissionsVM) HasDataSourcePermissions() bool

HasDataSourcePermissions returns a boolean if a field has been set.

func (*UpdateDefaultPermissionsVM) HasFilePermissions ¶

func (o *UpdateDefaultPermissionsVM) HasFilePermissions() bool

HasFilePermissions returns a boolean if a field has been set.

func (*UpdateDefaultPermissionsVM) HasGroupPermissions ¶

func (o *UpdateDefaultPermissionsVM) HasGroupPermissions() bool

HasGroupPermissions returns a boolean if a field has been set.

func (*UpdateDefaultPermissionsVM) HasTaskPermissions ¶

func (o *UpdateDefaultPermissionsVM) HasTaskPermissions() bool

HasTaskPermissions returns a boolean if a field has been set.

func (UpdateDefaultPermissionsVM) MarshalJSON ¶

func (o UpdateDefaultPermissionsVM) MarshalJSON() ([]byte, error)

func (*UpdateDefaultPermissionsVM) SetDataSourcePermissions ¶

func (o *UpdateDefaultPermissionsVM) SetDataSourcePermissions(v UpdateDataSourcePermissionsVM)

SetDataSourcePermissions gets a reference to the given UpdateDataSourcePermissionsVM and assigns it to the DataSourcePermissions field.

func (*UpdateDefaultPermissionsVM) SetFilePermissions ¶

func (o *UpdateDefaultPermissionsVM) SetFilePermissions(v UpdateFilePermissionsVM)

SetFilePermissions gets a reference to the given UpdateFilePermissionsVM and assigns it to the FilePermissions field.

func (*UpdateDefaultPermissionsVM) SetGroupPermissions ¶

func (o *UpdateDefaultPermissionsVM) SetGroupPermissions(v UpdateGroupPermissionsVM)

SetGroupPermissions gets a reference to the given UpdateGroupPermissionsVM and assigns it to the GroupPermissions field.

func (*UpdateDefaultPermissionsVM) SetTaskPermissions ¶

func (o *UpdateDefaultPermissionsVM) SetTaskPermissions(v UpdateTaskPermissionsVM)

SetTaskPermissions gets a reference to the given UpdateTaskPermissionsVM and assigns it to the TaskPermissions field.

func (UpdateDefaultPermissionsVM) ToMap ¶

func (o UpdateDefaultPermissionsVM) ToMap() (map[string]interface{}, error)

type UpdateEmailTaskVM ¶

type UpdateEmailTaskVM struct {
	Body       NullableString `json:"body,omitempty"`
	EnableSsl  NullableBool   `json:"enableSsl,omitempty"`
	From       NullableString `json:"from,omitempty"`
	IsBodyHtml NullableBool   `json:"isBodyHtml,omitempty"`
	Password   NullableString `json:"password,omitempty"`
	Port       NullableInt32  `json:"port,omitempty"`
	Server     NullableString `json:"server,omitempty"`
	Subject    NullableString `json:"subject,omitempty"`
	To         []string       `json:"to,omitempty"`
	Username   NullableString `json:"username,omitempty"`
}

UpdateEmailTaskVM struct for UpdateEmailTaskVM

func NewUpdateEmailTaskVM ¶

func NewUpdateEmailTaskVM(t string) *UpdateEmailTaskVM

NewUpdateEmailTaskVM instantiates a new UpdateEmailTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateEmailTaskVMWithDefaults ¶

func NewUpdateEmailTaskVMWithDefaults() *UpdateEmailTaskVM

NewUpdateEmailTaskVMWithDefaults instantiates a new UpdateEmailTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateEmailTaskVM) GetBody ¶

func (o *UpdateEmailTaskVM) GetBody() string

GetBody returns the Body field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetBodyOk ¶

func (o *UpdateEmailTaskVM) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetEnableSsl ¶

func (o *UpdateEmailTaskVM) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetEnableSslOk ¶

func (o *UpdateEmailTaskVM) GetEnableSslOk() (*bool, bool)

GetEnableSslOk returns a tuple with the EnableSsl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetFrom ¶

func (o *UpdateEmailTaskVM) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetFromOk ¶

func (o *UpdateEmailTaskVM) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetIsBodyHtml ¶

func (o *UpdateEmailTaskVM) GetIsBodyHtml() bool

GetIsBodyHtml returns the IsBodyHtml field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetIsBodyHtmlOk ¶

func (o *UpdateEmailTaskVM) GetIsBodyHtmlOk() (*bool, bool)

GetIsBodyHtmlOk returns a tuple with the IsBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetPassword ¶

func (o *UpdateEmailTaskVM) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetPasswordOk ¶

func (o *UpdateEmailTaskVM) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetPort ¶

func (o *UpdateEmailTaskVM) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetPortOk ¶

func (o *UpdateEmailTaskVM) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetServer ¶

func (o *UpdateEmailTaskVM) GetServer() string

GetServer returns the Server field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetServerOk ¶

func (o *UpdateEmailTaskVM) GetServerOk() (*string, bool)

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetSubject ¶

func (o *UpdateEmailTaskVM) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetSubjectOk ¶

func (o *UpdateEmailTaskVM) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetTo ¶

func (o *UpdateEmailTaskVM) GetTo() []string

GetTo returns the To field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetToOk ¶

func (o *UpdateEmailTaskVM) GetToOk() ([]string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) GetUsername ¶

func (o *UpdateEmailTaskVM) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateEmailTaskVM) GetUsernameOk ¶

func (o *UpdateEmailTaskVM) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateEmailTaskVM) HasBody ¶

func (o *UpdateEmailTaskVM) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasEnableSsl ¶

func (o *UpdateEmailTaskVM) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasFrom ¶

func (o *UpdateEmailTaskVM) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasIsBodyHtml ¶

func (o *UpdateEmailTaskVM) HasIsBodyHtml() bool

HasIsBodyHtml returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasPassword ¶

func (o *UpdateEmailTaskVM) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasPort ¶

func (o *UpdateEmailTaskVM) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasServer ¶

func (o *UpdateEmailTaskVM) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasSubject ¶

func (o *UpdateEmailTaskVM) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasTo ¶

func (o *UpdateEmailTaskVM) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*UpdateEmailTaskVM) HasUsername ¶

func (o *UpdateEmailTaskVM) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UpdateEmailTaskVM) MarshalJSON ¶

func (o UpdateEmailTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateEmailTaskVM) SetBody ¶

func (o *UpdateEmailTaskVM) SetBody(v string)

SetBody gets a reference to the given NullableString and assigns it to the Body field.

func (*UpdateEmailTaskVM) SetBodyNil ¶

func (o *UpdateEmailTaskVM) SetBodyNil()

SetBodyNil sets the value for Body to be an explicit nil

func (*UpdateEmailTaskVM) SetEnableSsl ¶

func (o *UpdateEmailTaskVM) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given NullableBool and assigns it to the EnableSsl field.

func (*UpdateEmailTaskVM) SetEnableSslNil ¶

func (o *UpdateEmailTaskVM) SetEnableSslNil()

SetEnableSslNil sets the value for EnableSsl to be an explicit nil

func (*UpdateEmailTaskVM) SetFrom ¶

func (o *UpdateEmailTaskVM) SetFrom(v string)

SetFrom gets a reference to the given NullableString and assigns it to the From field.

func (*UpdateEmailTaskVM) SetFromNil ¶

func (o *UpdateEmailTaskVM) SetFromNil()

SetFromNil sets the value for From to be an explicit nil

func (*UpdateEmailTaskVM) SetIsBodyHtml ¶

func (o *UpdateEmailTaskVM) SetIsBodyHtml(v bool)

SetIsBodyHtml gets a reference to the given NullableBool and assigns it to the IsBodyHtml field.

func (*UpdateEmailTaskVM) SetIsBodyHtmlNil ¶

func (o *UpdateEmailTaskVM) SetIsBodyHtmlNil()

SetIsBodyHtmlNil sets the value for IsBodyHtml to be an explicit nil

func (*UpdateEmailTaskVM) SetPassword ¶

func (o *UpdateEmailTaskVM) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*UpdateEmailTaskVM) SetPasswordNil ¶

func (o *UpdateEmailTaskVM) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*UpdateEmailTaskVM) SetPort ¶

func (o *UpdateEmailTaskVM) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*UpdateEmailTaskVM) SetPortNil ¶

func (o *UpdateEmailTaskVM) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*UpdateEmailTaskVM) SetServer ¶

func (o *UpdateEmailTaskVM) SetServer(v string)

SetServer gets a reference to the given NullableString and assigns it to the Server field.

func (*UpdateEmailTaskVM) SetServerNil ¶

func (o *UpdateEmailTaskVM) SetServerNil()

SetServerNil sets the value for Server to be an explicit nil

func (*UpdateEmailTaskVM) SetSubject ¶

func (o *UpdateEmailTaskVM) SetSubject(v string)

SetSubject gets a reference to the given NullableString and assigns it to the Subject field.

func (*UpdateEmailTaskVM) SetSubjectNil ¶

func (o *UpdateEmailTaskVM) SetSubjectNil()

SetSubjectNil sets the value for Subject to be an explicit nil

func (*UpdateEmailTaskVM) SetTo ¶

func (o *UpdateEmailTaskVM) SetTo(v []string)

SetTo gets a reference to the given []string and assigns it to the To field.

func (*UpdateEmailTaskVM) SetUsername ¶

func (o *UpdateEmailTaskVM) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*UpdateEmailTaskVM) SetUsernameNil ¶

func (o *UpdateEmailTaskVM) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (UpdateEmailTaskVM) ToMap ¶

func (o UpdateEmailTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateEmailTaskVM) UnsetBody ¶

func (o *UpdateEmailTaskVM) UnsetBody()

UnsetBody ensures that no value is present for Body, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetEnableSsl ¶

func (o *UpdateEmailTaskVM) UnsetEnableSsl()

UnsetEnableSsl ensures that no value is present for EnableSsl, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetFrom ¶

func (o *UpdateEmailTaskVM) UnsetFrom()

UnsetFrom ensures that no value is present for From, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetIsBodyHtml ¶

func (o *UpdateEmailTaskVM) UnsetIsBodyHtml()

UnsetIsBodyHtml ensures that no value is present for IsBodyHtml, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetPassword ¶

func (o *UpdateEmailTaskVM) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetPort ¶

func (o *UpdateEmailTaskVM) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetServer ¶

func (o *UpdateEmailTaskVM) UnsetServer()

UnsetServer ensures that no value is present for Server, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetSubject ¶

func (o *UpdateEmailTaskVM) UnsetSubject()

UnsetSubject ensures that no value is present for Subject, not even an explicit nil

func (*UpdateEmailTaskVM) UnsetUsername ¶

func (o *UpdateEmailTaskVM) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type UpdateExportReportTaskVM ¶

type UpdateExportReportTaskVM struct {
	ExportParameters map[string]string    `json:"exportParameters,omitempty"`
	Format           NullableExportFormat `json:"format,omitempty"`
	PagesCount       NullableInt32        `json:"pagesCount,omitempty"`
	T                string               `json:"$t"`
}

UpdateExportReportTaskVM struct for UpdateExportReportTaskVM

func NewUpdateExportReportTaskVM ¶

func NewUpdateExportReportTaskVM(t string) *UpdateExportReportTaskVM

NewUpdateExportReportTaskVM instantiates a new UpdateExportReportTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateExportReportTaskVMWithDefaults ¶

func NewUpdateExportReportTaskVMWithDefaults() *UpdateExportReportTaskVM

NewUpdateExportReportTaskVMWithDefaults instantiates a new UpdateExportReportTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateExportReportTaskVM) GetExportParameters ¶

func (o *UpdateExportReportTaskVM) GetExportParameters() map[string]string

GetExportParameters returns the ExportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateExportReportTaskVM) GetExportParametersOk ¶

func (o *UpdateExportReportTaskVM) GetExportParametersOk() (*map[string]string, bool)

GetExportParametersOk returns a tuple with the ExportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateExportReportTaskVM) GetFormat ¶

func (o *UpdateExportReportTaskVM) GetFormat() ExportFormat

GetFormat returns the Format field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateExportReportTaskVM) GetFormatOk ¶

func (o *UpdateExportReportTaskVM) GetFormatOk() (*ExportFormat, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateExportReportTaskVM) GetPagesCount ¶

func (o *UpdateExportReportTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateExportReportTaskVM) GetPagesCountOk ¶

func (o *UpdateExportReportTaskVM) GetPagesCountOk() (*int32, bool)

GetPagesCountOk returns a tuple with the PagesCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateExportReportTaskVM) GetT ¶

func (o *UpdateExportReportTaskVM) GetT() string

GetT returns the T field value

func (*UpdateExportReportTaskVM) GetTOk ¶

func (o *UpdateExportReportTaskVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*UpdateExportReportTaskVM) HasExportParameters ¶

func (o *UpdateExportReportTaskVM) HasExportParameters() bool

HasExportParameters returns a boolean if a field has been set.

func (*UpdateExportReportTaskVM) HasFormat ¶

func (o *UpdateExportReportTaskVM) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*UpdateExportReportTaskVM) HasPagesCount ¶

func (o *UpdateExportReportTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (UpdateExportReportTaskVM) MarshalJSON ¶

func (o UpdateExportReportTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateExportReportTaskVM) SetExportParameters ¶

func (o *UpdateExportReportTaskVM) SetExportParameters(v map[string]string)

SetExportParameters gets a reference to the given map[string]string and assigns it to the ExportParameters field.

func (*UpdateExportReportTaskVM) SetFormat ¶

func (o *UpdateExportReportTaskVM) SetFormat(v ExportFormat)

SetFormat gets a reference to the given NullableExportFormat and assigns it to the Format field.

func (*UpdateExportReportTaskVM) SetFormatNil ¶

func (o *UpdateExportReportTaskVM) SetFormatNil()

SetFormatNil sets the value for Format to be an explicit nil

func (*UpdateExportReportTaskVM) SetPagesCount ¶

func (o *UpdateExportReportTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given NullableInt32 and assigns it to the PagesCount field.

func (*UpdateExportReportTaskVM) SetPagesCountNil ¶

func (o *UpdateExportReportTaskVM) SetPagesCountNil()

SetPagesCountNil sets the value for PagesCount to be an explicit nil

func (*UpdateExportReportTaskVM) SetT ¶

func (o *UpdateExportReportTaskVM) SetT(v string)

SetT sets field value

func (UpdateExportReportTaskVM) ToMap ¶

func (o UpdateExportReportTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateExportReportTaskVM) UnsetFormat ¶

func (o *UpdateExportReportTaskVM) UnsetFormat()

UnsetFormat ensures that no value is present for Format, not even an explicit nil

func (*UpdateExportReportTaskVM) UnsetPagesCount ¶

func (o *UpdateExportReportTaskVM) UnsetPagesCount()

UnsetPagesCount ensures that no value is present for PagesCount, not even an explicit nil

type UpdateExportTemplateTaskVM ¶

type UpdateExportTemplateTaskVM struct {
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

UpdateExportTemplateTaskVM struct for UpdateExportTemplateTaskVM

func NewUpdateExportTemplateTaskVM ¶

func NewUpdateExportTemplateTaskVM(t string) *UpdateExportTemplateTaskVM

NewUpdateExportTemplateTaskVM instantiates a new UpdateExportTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateExportTemplateTaskVMWithDefaults ¶

func NewUpdateExportTemplateTaskVMWithDefaults() *UpdateExportTemplateTaskVM

NewUpdateExportTemplateTaskVMWithDefaults instantiates a new UpdateExportTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateExportTemplateTaskVM) GetReportParameters ¶

func (o *UpdateExportTemplateTaskVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateExportTemplateTaskVM) GetReportParametersOk ¶

func (o *UpdateExportTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateExportTemplateTaskVM) HasReportParameters ¶

func (o *UpdateExportTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (UpdateExportTemplateTaskVM) MarshalJSON ¶

func (o UpdateExportTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateExportTemplateTaskVM) SetReportParameters ¶

func (o *UpdateExportTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (UpdateExportTemplateTaskVM) ToMap ¶

func (o UpdateExportTemplateTaskVM) ToMap() (map[string]interface{}, error)

type UpdateFTPUploadTaskVM ¶

type UpdateFTPUploadTaskVM struct {
	Archive           NullableBool   `json:"archive,omitempty"`
	ArchiveName       NullableString `json:"archiveName,omitempty"`
	DestinationFolder NullableString `json:"destinationFolder,omitempty"`
	FtpHost           NullableString `json:"ftpHost,omitempty"`
	FtpPassword       NullableString `json:"ftpPassword,omitempty"`
	FtpPort           NullableInt32  `json:"ftpPort,omitempty"`
	FtpUsername       NullableString `json:"ftpUsername,omitempty"`
	UseSFTP           NullableBool   `json:"useSFTP,omitempty"`
}

UpdateFTPUploadTaskVM struct for UpdateFTPUploadTaskVM

func NewUpdateFTPUploadTaskVM ¶

func NewUpdateFTPUploadTaskVM(t string) *UpdateFTPUploadTaskVM

NewUpdateFTPUploadTaskVM instantiates a new UpdateFTPUploadTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateFTPUploadTaskVMWithDefaults ¶

func NewUpdateFTPUploadTaskVMWithDefaults() *UpdateFTPUploadTaskVM

NewUpdateFTPUploadTaskVMWithDefaults instantiates a new UpdateFTPUploadTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateFTPUploadTaskVM) GetArchive ¶

func (o *UpdateFTPUploadTaskVM) GetArchive() bool

GetArchive returns the Archive field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetArchiveName ¶

func (o *UpdateFTPUploadTaskVM) GetArchiveName() string

GetArchiveName returns the ArchiveName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetArchiveNameOk ¶

func (o *UpdateFTPUploadTaskVM) GetArchiveNameOk() (*string, bool)

GetArchiveNameOk returns a tuple with the ArchiveName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetArchiveOk ¶

func (o *UpdateFTPUploadTaskVM) GetArchiveOk() (*bool, bool)

GetArchiveOk returns a tuple with the Archive field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetDestinationFolder ¶

func (o *UpdateFTPUploadTaskVM) GetDestinationFolder() string

GetDestinationFolder returns the DestinationFolder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetDestinationFolderOk ¶

func (o *UpdateFTPUploadTaskVM) GetDestinationFolderOk() (*string, bool)

GetDestinationFolderOk returns a tuple with the DestinationFolder field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetFtpHost ¶

func (o *UpdateFTPUploadTaskVM) GetFtpHost() string

GetFtpHost returns the FtpHost field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetFtpHostOk ¶

func (o *UpdateFTPUploadTaskVM) GetFtpHostOk() (*string, bool)

GetFtpHostOk returns a tuple with the FtpHost field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetFtpPassword ¶

func (o *UpdateFTPUploadTaskVM) GetFtpPassword() string

GetFtpPassword returns the FtpPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetFtpPasswordOk ¶

func (o *UpdateFTPUploadTaskVM) GetFtpPasswordOk() (*string, bool)

GetFtpPasswordOk returns a tuple with the FtpPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetFtpPort ¶

func (o *UpdateFTPUploadTaskVM) GetFtpPort() int32

GetFtpPort returns the FtpPort field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetFtpPortOk ¶

func (o *UpdateFTPUploadTaskVM) GetFtpPortOk() (*int32, bool)

GetFtpPortOk returns a tuple with the FtpPort field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetFtpUsername ¶

func (o *UpdateFTPUploadTaskVM) GetFtpUsername() string

GetFtpUsername returns the FtpUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetFtpUsernameOk ¶

func (o *UpdateFTPUploadTaskVM) GetFtpUsernameOk() (*string, bool)

GetFtpUsernameOk returns a tuple with the FtpUsername field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) GetUseSFTP ¶

func (o *UpdateFTPUploadTaskVM) GetUseSFTP() bool

GetUseSFTP returns the UseSFTP field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFTPUploadTaskVM) GetUseSFTPOk ¶

func (o *UpdateFTPUploadTaskVM) GetUseSFTPOk() (*bool, bool)

GetUseSFTPOk returns a tuple with the UseSFTP field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFTPUploadTaskVM) HasArchive ¶

func (o *UpdateFTPUploadTaskVM) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasArchiveName ¶

func (o *UpdateFTPUploadTaskVM) HasArchiveName() bool

HasArchiveName returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasDestinationFolder ¶

func (o *UpdateFTPUploadTaskVM) HasDestinationFolder() bool

HasDestinationFolder returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasFtpHost ¶

func (o *UpdateFTPUploadTaskVM) HasFtpHost() bool

HasFtpHost returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasFtpPassword ¶

func (o *UpdateFTPUploadTaskVM) HasFtpPassword() bool

HasFtpPassword returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasFtpPort ¶

func (o *UpdateFTPUploadTaskVM) HasFtpPort() bool

HasFtpPort returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasFtpUsername ¶

func (o *UpdateFTPUploadTaskVM) HasFtpUsername() bool

HasFtpUsername returns a boolean if a field has been set.

func (*UpdateFTPUploadTaskVM) HasUseSFTP ¶

func (o *UpdateFTPUploadTaskVM) HasUseSFTP() bool

HasUseSFTP returns a boolean if a field has been set.

func (UpdateFTPUploadTaskVM) MarshalJSON ¶

func (o UpdateFTPUploadTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateFTPUploadTaskVM) SetArchive ¶

func (o *UpdateFTPUploadTaskVM) SetArchive(v bool)

SetArchive gets a reference to the given NullableBool and assigns it to the Archive field.

func (*UpdateFTPUploadTaskVM) SetArchiveName ¶

func (o *UpdateFTPUploadTaskVM) SetArchiveName(v string)

SetArchiveName gets a reference to the given NullableString and assigns it to the ArchiveName field.

func (*UpdateFTPUploadTaskVM) SetArchiveNameNil ¶

func (o *UpdateFTPUploadTaskVM) SetArchiveNameNil()

SetArchiveNameNil sets the value for ArchiveName to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetArchiveNil ¶

func (o *UpdateFTPUploadTaskVM) SetArchiveNil()

SetArchiveNil sets the value for Archive to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetDestinationFolder ¶

func (o *UpdateFTPUploadTaskVM) SetDestinationFolder(v string)

SetDestinationFolder gets a reference to the given NullableString and assigns it to the DestinationFolder field.

func (*UpdateFTPUploadTaskVM) SetDestinationFolderNil ¶

func (o *UpdateFTPUploadTaskVM) SetDestinationFolderNil()

SetDestinationFolderNil sets the value for DestinationFolder to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetFtpHost ¶

func (o *UpdateFTPUploadTaskVM) SetFtpHost(v string)

SetFtpHost gets a reference to the given NullableString and assigns it to the FtpHost field.

func (*UpdateFTPUploadTaskVM) SetFtpHostNil ¶

func (o *UpdateFTPUploadTaskVM) SetFtpHostNil()

SetFtpHostNil sets the value for FtpHost to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetFtpPassword ¶

func (o *UpdateFTPUploadTaskVM) SetFtpPassword(v string)

SetFtpPassword gets a reference to the given NullableString and assigns it to the FtpPassword field.

func (*UpdateFTPUploadTaskVM) SetFtpPasswordNil ¶

func (o *UpdateFTPUploadTaskVM) SetFtpPasswordNil()

SetFtpPasswordNil sets the value for FtpPassword to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetFtpPort ¶

func (o *UpdateFTPUploadTaskVM) SetFtpPort(v int32)

SetFtpPort gets a reference to the given NullableInt32 and assigns it to the FtpPort field.

func (*UpdateFTPUploadTaskVM) SetFtpPortNil ¶

func (o *UpdateFTPUploadTaskVM) SetFtpPortNil()

SetFtpPortNil sets the value for FtpPort to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetFtpUsername ¶

func (o *UpdateFTPUploadTaskVM) SetFtpUsername(v string)

SetFtpUsername gets a reference to the given NullableString and assigns it to the FtpUsername field.

func (*UpdateFTPUploadTaskVM) SetFtpUsernameNil ¶

func (o *UpdateFTPUploadTaskVM) SetFtpUsernameNil()

SetFtpUsernameNil sets the value for FtpUsername to be an explicit nil

func (*UpdateFTPUploadTaskVM) SetUseSFTP ¶

func (o *UpdateFTPUploadTaskVM) SetUseSFTP(v bool)

SetUseSFTP gets a reference to the given NullableBool and assigns it to the UseSFTP field.

func (*UpdateFTPUploadTaskVM) SetUseSFTPNil ¶

func (o *UpdateFTPUploadTaskVM) SetUseSFTPNil()

SetUseSFTPNil sets the value for UseSFTP to be an explicit nil

func (UpdateFTPUploadTaskVM) ToMap ¶

func (o UpdateFTPUploadTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateFTPUploadTaskVM) UnsetArchive ¶

func (o *UpdateFTPUploadTaskVM) UnsetArchive()

UnsetArchive ensures that no value is present for Archive, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetArchiveName ¶

func (o *UpdateFTPUploadTaskVM) UnsetArchiveName()

UnsetArchiveName ensures that no value is present for ArchiveName, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetDestinationFolder ¶

func (o *UpdateFTPUploadTaskVM) UnsetDestinationFolder()

UnsetDestinationFolder ensures that no value is present for DestinationFolder, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetFtpHost ¶

func (o *UpdateFTPUploadTaskVM) UnsetFtpHost()

UnsetFtpHost ensures that no value is present for FtpHost, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetFtpPassword ¶

func (o *UpdateFTPUploadTaskVM) UnsetFtpPassword()

UnsetFtpPassword ensures that no value is present for FtpPassword, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetFtpPort ¶

func (o *UpdateFTPUploadTaskVM) UnsetFtpPort()

UnsetFtpPort ensures that no value is present for FtpPort, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetFtpUsername ¶

func (o *UpdateFTPUploadTaskVM) UnsetFtpUsername()

UnsetFtpUsername ensures that no value is present for FtpUsername, not even an explicit nil

func (*UpdateFTPUploadTaskVM) UnsetUseSFTP ¶

func (o *UpdateFTPUploadTaskVM) UnsetUseSFTP()

UnsetUseSFTP ensures that no value is present for UseSFTP, not even an explicit nil

type UpdateFetchTaskVM ¶

type UpdateFetchTaskVM struct {
	DataSourceId NullableString `json:"dataSourceId,omitempty"`
}

UpdateFetchTaskVM struct for UpdateFetchTaskVM

func NewUpdateFetchTaskVM ¶

func NewUpdateFetchTaskVM(t string) *UpdateFetchTaskVM

NewUpdateFetchTaskVM instantiates a new UpdateFetchTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateFetchTaskVMWithDefaults ¶

func NewUpdateFetchTaskVMWithDefaults() *UpdateFetchTaskVM

NewUpdateFetchTaskVMWithDefaults instantiates a new UpdateFetchTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateFetchTaskVM) GetDataSourceId ¶

func (o *UpdateFetchTaskVM) GetDataSourceId() string

GetDataSourceId returns the DataSourceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateFetchTaskVM) GetDataSourceIdOk ¶

func (o *UpdateFetchTaskVM) GetDataSourceIdOk() (*string, bool)

GetDataSourceIdOk returns a tuple with the DataSourceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateFetchTaskVM) HasDataSourceId ¶

func (o *UpdateFetchTaskVM) HasDataSourceId() bool

HasDataSourceId returns a boolean if a field has been set.

func (UpdateFetchTaskVM) MarshalJSON ¶

func (o UpdateFetchTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateFetchTaskVM) SetDataSourceId ¶

func (o *UpdateFetchTaskVM) SetDataSourceId(v string)

SetDataSourceId gets a reference to the given NullableString and assigns it to the DataSourceId field.

func (*UpdateFetchTaskVM) SetDataSourceIdNil ¶

func (o *UpdateFetchTaskVM) SetDataSourceIdNil()

SetDataSourceIdNil sets the value for DataSourceId to be an explicit nil

func (UpdateFetchTaskVM) ToMap ¶

func (o UpdateFetchTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateFetchTaskVM) UnsetDataSourceId ¶

func (o *UpdateFetchTaskVM) UnsetDataSourceId()

UnsetDataSourceId ensures that no value is present for DataSourceId, not even an explicit nil

type UpdateFileContentVM ¶

type UpdateFileContentVM struct {
	Content string `json:"content"`
}

UpdateFileContentVM struct for UpdateFileContentVM

func NewUpdateFileContentVM ¶

func NewUpdateFileContentVM(content string) *UpdateFileContentVM

NewUpdateFileContentVM instantiates a new UpdateFileContentVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateFileContentVMWithDefaults ¶

func NewUpdateFileContentVMWithDefaults() *UpdateFileContentVM

NewUpdateFileContentVMWithDefaults instantiates a new UpdateFileContentVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateFileContentVM) GetContent ¶

func (o *UpdateFileContentVM) GetContent() string

GetContent returns the Content field value

func (*UpdateFileContentVM) GetContentOk ¶

func (o *UpdateFileContentVM) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value and a boolean to check if the value has been set.

func (UpdateFileContentVM) MarshalJSON ¶

func (o UpdateFileContentVM) MarshalJSON() ([]byte, error)

func (*UpdateFileContentVM) SetContent ¶

func (o *UpdateFileContentVM) SetContent(v string)

SetContent sets field value

func (UpdateFileContentVM) ToMap ¶

func (o UpdateFileContentVM) ToMap() (map[string]interface{}, error)

type UpdateFilePermissionsVM ¶

type UpdateFilePermissionsVM struct {
	NewPermissions FilePermissions  `json:"newPermissions"`
	Administrate   FileAdministrate `json:"administrate"`
}

UpdateFilePermissionsVM struct for UpdateFilePermissionsVM

func NewUpdateFilePermissionsVM ¶

func NewUpdateFilePermissionsVM(newPermissions FilePermissions, administrate FileAdministrate) *UpdateFilePermissionsVM

NewUpdateFilePermissionsVM instantiates a new UpdateFilePermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateFilePermissionsVMWithDefaults ¶

func NewUpdateFilePermissionsVMWithDefaults() *UpdateFilePermissionsVM

NewUpdateFilePermissionsVMWithDefaults instantiates a new UpdateFilePermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateFilePermissionsVM) GetAdministrate ¶

func (o *UpdateFilePermissionsVM) GetAdministrate() FileAdministrate

GetAdministrate returns the Administrate field value

func (*UpdateFilePermissionsVM) GetAdministrateOk ¶

func (o *UpdateFilePermissionsVM) GetAdministrateOk() (*FileAdministrate, bool)

GetAdministrateOk returns a tuple with the Administrate field value and a boolean to check if the value has been set.

func (*UpdateFilePermissionsVM) GetNewPermissions ¶

func (o *UpdateFilePermissionsVM) GetNewPermissions() FilePermissions

GetNewPermissions returns the NewPermissions field value

func (*UpdateFilePermissionsVM) GetNewPermissionsOk ¶

func (o *UpdateFilePermissionsVM) GetNewPermissionsOk() (*FilePermissions, bool)

GetNewPermissionsOk returns a tuple with the NewPermissions field value and a boolean to check if the value has been set.

func (UpdateFilePermissionsVM) MarshalJSON ¶

func (o UpdateFilePermissionsVM) MarshalJSON() ([]byte, error)

func (*UpdateFilePermissionsVM) SetAdministrate ¶

func (o *UpdateFilePermissionsVM) SetAdministrate(v FileAdministrate)

SetAdministrate sets field value

func (*UpdateFilePermissionsVM) SetNewPermissions ¶

func (o *UpdateFilePermissionsVM) SetNewPermissions(v FilePermissions)

SetNewPermissions sets field value

func (UpdateFilePermissionsVM) ToMap ¶

func (o UpdateFilePermissionsVM) ToMap() (map[string]interface{}, error)

type UpdateGroupPermissionsVM ¶

type UpdateGroupPermissionsVM struct {
	NewPermissions GroupPermissions  `json:"newPermissions"`
	Administrate   GroupAdministrate `json:"administrate"`
}

UpdateGroupPermissionsVM struct for UpdateGroupPermissionsVM

func NewUpdateGroupPermissionsVM ¶

func NewUpdateGroupPermissionsVM(newPermissions GroupPermissions, administrate GroupAdministrate) *UpdateGroupPermissionsVM

NewUpdateGroupPermissionsVM instantiates a new UpdateGroupPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateGroupPermissionsVMWithDefaults ¶

func NewUpdateGroupPermissionsVMWithDefaults() *UpdateGroupPermissionsVM

NewUpdateGroupPermissionsVMWithDefaults instantiates a new UpdateGroupPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateGroupPermissionsVM) GetAdministrate ¶

func (o *UpdateGroupPermissionsVM) GetAdministrate() GroupAdministrate

GetAdministrate returns the Administrate field value

func (*UpdateGroupPermissionsVM) GetAdministrateOk ¶

func (o *UpdateGroupPermissionsVM) GetAdministrateOk() (*GroupAdministrate, bool)

GetAdministrateOk returns a tuple with the Administrate field value and a boolean to check if the value has been set.

func (*UpdateGroupPermissionsVM) GetNewPermissions ¶

func (o *UpdateGroupPermissionsVM) GetNewPermissions() GroupPermissions

GetNewPermissions returns the NewPermissions field value

func (*UpdateGroupPermissionsVM) GetNewPermissionsOk ¶

func (o *UpdateGroupPermissionsVM) GetNewPermissionsOk() (*GroupPermissions, bool)

GetNewPermissionsOk returns a tuple with the NewPermissions field value and a boolean to check if the value has been set.

func (UpdateGroupPermissionsVM) MarshalJSON ¶

func (o UpdateGroupPermissionsVM) MarshalJSON() ([]byte, error)

func (*UpdateGroupPermissionsVM) SetAdministrate ¶

func (o *UpdateGroupPermissionsVM) SetAdministrate(v GroupAdministrate)

SetAdministrate sets field value

func (*UpdateGroupPermissionsVM) SetNewPermissions ¶

func (o *UpdateGroupPermissionsVM) SetNewPermissions(v GroupPermissions)

SetNewPermissions sets field value

func (UpdateGroupPermissionsVM) ToMap ¶

func (o UpdateGroupPermissionsVM) ToMap() (map[string]interface{}, error)

type UpdatePrepareTemplateTaskVM ¶

type UpdatePrepareTemplateTaskVM struct {
	ExportIds        []string          `json:"exportIds,omitempty"`
	PagesCount       NullableInt32     `json:"pagesCount,omitempty"`
	ReportParameters map[string]string `json:"reportParameters,omitempty"`
}

UpdatePrepareTemplateTaskVM struct for UpdatePrepareTemplateTaskVM

func NewUpdatePrepareTemplateTaskVM ¶

func NewUpdatePrepareTemplateTaskVM(t string) *UpdatePrepareTemplateTaskVM

NewUpdatePrepareTemplateTaskVM instantiates a new UpdatePrepareTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePrepareTemplateTaskVMWithDefaults ¶

func NewUpdatePrepareTemplateTaskVMWithDefaults() *UpdatePrepareTemplateTaskVM

NewUpdatePrepareTemplateTaskVMWithDefaults instantiates a new UpdatePrepareTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePrepareTemplateTaskVM) GetExportIds ¶

func (o *UpdatePrepareTemplateTaskVM) GetExportIds() []string

GetExportIds returns the ExportIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePrepareTemplateTaskVM) GetExportIdsOk ¶

func (o *UpdatePrepareTemplateTaskVM) GetExportIdsOk() ([]string, bool)

GetExportIdsOk returns a tuple with the ExportIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePrepareTemplateTaskVM) GetPagesCount ¶

func (o *UpdatePrepareTemplateTaskVM) GetPagesCount() int32

GetPagesCount returns the PagesCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePrepareTemplateTaskVM) GetPagesCountOk ¶

func (o *UpdatePrepareTemplateTaskVM) GetPagesCountOk() (*int32, bool)

GetPagesCountOk returns a tuple with the PagesCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePrepareTemplateTaskVM) GetReportParameters ¶

func (o *UpdatePrepareTemplateTaskVM) GetReportParameters() map[string]string

GetReportParameters returns the ReportParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePrepareTemplateTaskVM) GetReportParametersOk ¶

func (o *UpdatePrepareTemplateTaskVM) GetReportParametersOk() (*map[string]string, bool)

GetReportParametersOk returns a tuple with the ReportParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePrepareTemplateTaskVM) HasExportIds ¶

func (o *UpdatePrepareTemplateTaskVM) HasExportIds() bool

HasExportIds returns a boolean if a field has been set.

func (*UpdatePrepareTemplateTaskVM) HasPagesCount ¶

func (o *UpdatePrepareTemplateTaskVM) HasPagesCount() bool

HasPagesCount returns a boolean if a field has been set.

func (*UpdatePrepareTemplateTaskVM) HasReportParameters ¶

func (o *UpdatePrepareTemplateTaskVM) HasReportParameters() bool

HasReportParameters returns a boolean if a field has been set.

func (UpdatePrepareTemplateTaskVM) MarshalJSON ¶

func (o UpdatePrepareTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*UpdatePrepareTemplateTaskVM) SetExportIds ¶

func (o *UpdatePrepareTemplateTaskVM) SetExportIds(v []string)

SetExportIds gets a reference to the given []string and assigns it to the ExportIds field.

func (*UpdatePrepareTemplateTaskVM) SetPagesCount ¶

func (o *UpdatePrepareTemplateTaskVM) SetPagesCount(v int32)

SetPagesCount gets a reference to the given NullableInt32 and assigns it to the PagesCount field.

func (*UpdatePrepareTemplateTaskVM) SetPagesCountNil ¶

func (o *UpdatePrepareTemplateTaskVM) SetPagesCountNil()

SetPagesCountNil sets the value for PagesCount to be an explicit nil

func (*UpdatePrepareTemplateTaskVM) SetReportParameters ¶

func (o *UpdatePrepareTemplateTaskVM) SetReportParameters(v map[string]string)

SetReportParameters gets a reference to the given map[string]string and assigns it to the ReportParameters field.

func (UpdatePrepareTemplateTaskVM) ToMap ¶

func (o UpdatePrepareTemplateTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdatePrepareTemplateTaskVM) UnsetPagesCount ¶

func (o *UpdatePrepareTemplateTaskVM) UnsetPagesCount()

UnsetPagesCount ensures that no value is present for PagesCount, not even an explicit nil

type UpdateSubscriptionLocaleVM ¶

type UpdateSubscriptionLocaleVM struct {
	Locale string `json:"locale"`
}

UpdateSubscriptionLocaleVM struct for UpdateSubscriptionLocaleVM

func NewUpdateSubscriptionLocaleVM ¶

func NewUpdateSubscriptionLocaleVM(locale string) *UpdateSubscriptionLocaleVM

NewUpdateSubscriptionLocaleVM instantiates a new UpdateSubscriptionLocaleVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateSubscriptionLocaleVMWithDefaults ¶

func NewUpdateSubscriptionLocaleVMWithDefaults() *UpdateSubscriptionLocaleVM

NewUpdateSubscriptionLocaleVMWithDefaults instantiates a new UpdateSubscriptionLocaleVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateSubscriptionLocaleVM) GetLocale ¶

func (o *UpdateSubscriptionLocaleVM) GetLocale() string

GetLocale returns the Locale field value

func (*UpdateSubscriptionLocaleVM) GetLocaleOk ¶

func (o *UpdateSubscriptionLocaleVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value and a boolean to check if the value has been set.

func (UpdateSubscriptionLocaleVM) MarshalJSON ¶

func (o UpdateSubscriptionLocaleVM) MarshalJSON() ([]byte, error)

func (*UpdateSubscriptionLocaleVM) SetLocale ¶

func (o *UpdateSubscriptionLocaleVM) SetLocale(v string)

SetLocale sets field value

func (UpdateSubscriptionLocaleVM) ToMap ¶

func (o UpdateSubscriptionLocaleVM) ToMap() (map[string]interface{}, error)

type UpdateSubscriptionPermissionsVM ¶

type UpdateSubscriptionPermissionsVM struct {
	NewPermissions SubscriptionPermissions  `json:"newPermissions"`
	Administrate   SubscriptionAdministrate `json:"administrate"`
}

UpdateSubscriptionPermissionsVM struct for UpdateSubscriptionPermissionsVM

func NewUpdateSubscriptionPermissionsVM ¶

func NewUpdateSubscriptionPermissionsVM(newPermissions SubscriptionPermissions, administrate SubscriptionAdministrate) *UpdateSubscriptionPermissionsVM

NewUpdateSubscriptionPermissionsVM instantiates a new UpdateSubscriptionPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateSubscriptionPermissionsVMWithDefaults ¶

func NewUpdateSubscriptionPermissionsVMWithDefaults() *UpdateSubscriptionPermissionsVM

NewUpdateSubscriptionPermissionsVMWithDefaults instantiates a new UpdateSubscriptionPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateSubscriptionPermissionsVM) GetAdministrate ¶

GetAdministrate returns the Administrate field value

func (*UpdateSubscriptionPermissionsVM) GetAdministrateOk ¶

GetAdministrateOk returns a tuple with the Administrate field value and a boolean to check if the value has been set.

func (*UpdateSubscriptionPermissionsVM) GetNewPermissions ¶

GetNewPermissions returns the NewPermissions field value

func (*UpdateSubscriptionPermissionsVM) GetNewPermissionsOk ¶

func (o *UpdateSubscriptionPermissionsVM) GetNewPermissionsOk() (*SubscriptionPermissions, bool)

GetNewPermissionsOk returns a tuple with the NewPermissions field value and a boolean to check if the value has been set.

func (UpdateSubscriptionPermissionsVM) MarshalJSON ¶

func (o UpdateSubscriptionPermissionsVM) MarshalJSON() ([]byte, error)

func (*UpdateSubscriptionPermissionsVM) SetAdministrate ¶

SetAdministrate sets field value

func (*UpdateSubscriptionPermissionsVM) SetNewPermissions ¶

SetNewPermissions sets field value

func (UpdateSubscriptionPermissionsVM) ToMap ¶

func (o UpdateSubscriptionPermissionsVM) ToMap() (map[string]interface{}, error)

type UpdateTaskBaseVM ¶

type UpdateTaskBaseVM struct {
	CronExpression NullableString `json:"cronExpression,omitempty"`
	DelayedRunTime NullableTime   `json:"delayedRunTime,omitempty"`
	Name           NullableString `json:"name,omitempty"`
	T              string         `json:"$t"`
}

UpdateTaskBaseVM struct for UpdateTaskBaseVM

func NewUpdateTaskBaseVM ¶

func NewUpdateTaskBaseVM(t string) *UpdateTaskBaseVM

NewUpdateTaskBaseVM instantiates a new UpdateTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTaskBaseVMWithDefaults ¶

func NewUpdateTaskBaseVMWithDefaults() *UpdateTaskBaseVM

NewUpdateTaskBaseVMWithDefaults instantiates a new UpdateTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTaskBaseVM) GetCronExpression ¶

func (o *UpdateTaskBaseVM) GetCronExpression() string

GetCronExpression returns the CronExpression field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTaskBaseVM) GetCronExpressionOk ¶

func (o *UpdateTaskBaseVM) GetCronExpressionOk() (*string, bool)

GetCronExpressionOk returns a tuple with the CronExpression field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTaskBaseVM) GetDelayedRunTime ¶

func (o *UpdateTaskBaseVM) GetDelayedRunTime() time.Time

GetDelayedRunTime returns the DelayedRunTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTaskBaseVM) GetDelayedRunTimeOk ¶

func (o *UpdateTaskBaseVM) GetDelayedRunTimeOk() (*time.Time, bool)

GetDelayedRunTimeOk returns a tuple with the DelayedRunTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTaskBaseVM) GetName ¶

func (o *UpdateTaskBaseVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTaskBaseVM) GetNameOk ¶

func (o *UpdateTaskBaseVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTaskBaseVM) GetT ¶

func (o *UpdateTaskBaseVM) GetT() string

GetT returns the T field value

func (*UpdateTaskBaseVM) GetTOk ¶

func (o *UpdateTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*UpdateTaskBaseVM) HasCronExpression ¶

func (o *UpdateTaskBaseVM) HasCronExpression() bool

HasCronExpression returns a boolean if a field has been set.

func (*UpdateTaskBaseVM) HasDelayedRunTime ¶

func (o *UpdateTaskBaseVM) HasDelayedRunTime() bool

HasDelayedRunTime returns a boolean if a field has been set.

func (*UpdateTaskBaseVM) HasName ¶

func (o *UpdateTaskBaseVM) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateTaskBaseVM) MarshalJSON ¶

func (o UpdateTaskBaseVM) MarshalJSON() ([]byte, error)

func (*UpdateTaskBaseVM) SetCronExpression ¶

func (o *UpdateTaskBaseVM) SetCronExpression(v string)

SetCronExpression gets a reference to the given NullableString and assigns it to the CronExpression field.

func (*UpdateTaskBaseVM) SetCronExpressionNil ¶

func (o *UpdateTaskBaseVM) SetCronExpressionNil()

SetCronExpressionNil sets the value for CronExpression to be an explicit nil

func (*UpdateTaskBaseVM) SetDelayedRunTime ¶

func (o *UpdateTaskBaseVM) SetDelayedRunTime(v time.Time)

SetDelayedRunTime gets a reference to the given NullableTime and assigns it to the DelayedRunTime field.

func (*UpdateTaskBaseVM) SetDelayedRunTimeNil ¶

func (o *UpdateTaskBaseVM) SetDelayedRunTimeNil()

SetDelayedRunTimeNil sets the value for DelayedRunTime to be an explicit nil

func (*UpdateTaskBaseVM) SetName ¶

func (o *UpdateTaskBaseVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*UpdateTaskBaseVM) SetNameNil ¶

func (o *UpdateTaskBaseVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateTaskBaseVM) SetT ¶

func (o *UpdateTaskBaseVM) SetT(v string)

SetT sets field value

func (UpdateTaskBaseVM) ToMap ¶

func (o UpdateTaskBaseVM) ToMap() (map[string]interface{}, error)

func (*UpdateTaskBaseVM) UnsetCronExpression ¶

func (o *UpdateTaskBaseVM) UnsetCronExpression()

UnsetCronExpression ensures that no value is present for CronExpression, not even an explicit nil

func (*UpdateTaskBaseVM) UnsetDelayedRunTime ¶

func (o *UpdateTaskBaseVM) UnsetDelayedRunTime()

UnsetDelayedRunTime ensures that no value is present for DelayedRunTime, not even an explicit nil

func (*UpdateTaskBaseVM) UnsetName ¶

func (o *UpdateTaskBaseVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type UpdateTaskPermissionsVM ¶

type UpdateTaskPermissionsVM struct {
	Administrate   TaskAdministrate `json:"administrate"`
	NewPermissions TaskPermissions  `json:"newPermissions"`
}

UpdateTaskPermissionsVM struct for UpdateTaskPermissionsVM

func NewUpdateTaskPermissionsVM ¶

func NewUpdateTaskPermissionsVM(administrate TaskAdministrate, newPermissions TaskPermissions) *UpdateTaskPermissionsVM

NewUpdateTaskPermissionsVM instantiates a new UpdateTaskPermissionsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTaskPermissionsVMWithDefaults ¶

func NewUpdateTaskPermissionsVMWithDefaults() *UpdateTaskPermissionsVM

NewUpdateTaskPermissionsVMWithDefaults instantiates a new UpdateTaskPermissionsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTaskPermissionsVM) GetAdministrate ¶

func (o *UpdateTaskPermissionsVM) GetAdministrate() TaskAdministrate

GetAdministrate returns the Administrate field value

func (*UpdateTaskPermissionsVM) GetAdministrateOk ¶

func (o *UpdateTaskPermissionsVM) GetAdministrateOk() (*TaskAdministrate, bool)

GetAdministrateOk returns a tuple with the Administrate field value and a boolean to check if the value has been set.

func (*UpdateTaskPermissionsVM) GetNewPermissions ¶

func (o *UpdateTaskPermissionsVM) GetNewPermissions() TaskPermissions

GetNewPermissions returns the NewPermissions field value

func (*UpdateTaskPermissionsVM) GetNewPermissionsOk ¶

func (o *UpdateTaskPermissionsVM) GetNewPermissionsOk() (*TaskPermissions, bool)

GetNewPermissionsOk returns a tuple with the NewPermissions field value and a boolean to check if the value has been set.

func (UpdateTaskPermissionsVM) MarshalJSON ¶

func (o UpdateTaskPermissionsVM) MarshalJSON() ([]byte, error)

func (*UpdateTaskPermissionsVM) SetAdministrate ¶

func (o *UpdateTaskPermissionsVM) SetAdministrate(v TaskAdministrate)

SetAdministrate sets field value

func (*UpdateTaskPermissionsVM) SetNewPermissions ¶

func (o *UpdateTaskPermissionsVM) SetNewPermissions(v TaskPermissions)

SetNewPermissions sets field value

func (UpdateTaskPermissionsVM) ToMap ¶

func (o UpdateTaskPermissionsVM) ToMap() (map[string]interface{}, error)

type UpdateThumbnailReportTaskVM ¶

type UpdateThumbnailReportTaskVM struct {
	ReportId NullableString `json:"reportId,omitempty"`
}

UpdateThumbnailReportTaskVM struct for UpdateThumbnailReportTaskVM

func NewUpdateThumbnailReportTaskVM ¶

func NewUpdateThumbnailReportTaskVM(t string) *UpdateThumbnailReportTaskVM

NewUpdateThumbnailReportTaskVM instantiates a new UpdateThumbnailReportTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateThumbnailReportTaskVMWithDefaults ¶

func NewUpdateThumbnailReportTaskVMWithDefaults() *UpdateThumbnailReportTaskVM

NewUpdateThumbnailReportTaskVMWithDefaults instantiates a new UpdateThumbnailReportTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateThumbnailReportTaskVM) GetReportId ¶

func (o *UpdateThumbnailReportTaskVM) GetReportId() string

GetReportId returns the ReportId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateThumbnailReportTaskVM) GetReportIdOk ¶

func (o *UpdateThumbnailReportTaskVM) GetReportIdOk() (*string, bool)

GetReportIdOk returns a tuple with the ReportId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateThumbnailReportTaskVM) HasReportId ¶

func (o *UpdateThumbnailReportTaskVM) HasReportId() bool

HasReportId returns a boolean if a field has been set.

func (UpdateThumbnailReportTaskVM) MarshalJSON ¶

func (o UpdateThumbnailReportTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateThumbnailReportTaskVM) SetReportId ¶

func (o *UpdateThumbnailReportTaskVM) SetReportId(v string)

SetReportId gets a reference to the given NullableString and assigns it to the ReportId field.

func (*UpdateThumbnailReportTaskVM) SetReportIdNil ¶

func (o *UpdateThumbnailReportTaskVM) SetReportIdNil()

SetReportIdNil sets the value for ReportId to be an explicit nil

func (UpdateThumbnailReportTaskVM) ToMap ¶

func (o UpdateThumbnailReportTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateThumbnailReportTaskVM) UnsetReportId ¶

func (o *UpdateThumbnailReportTaskVM) UnsetReportId()

UnsetReportId ensures that no value is present for ReportId, not even an explicit nil

type UpdateThumbnailTemplateTaskVM ¶

type UpdateThumbnailTemplateTaskVM struct {
	TemplateId NullableString `json:"templateId,omitempty"`
}

UpdateThumbnailTemplateTaskVM struct for UpdateThumbnailTemplateTaskVM

func NewUpdateThumbnailTemplateTaskVM ¶

func NewUpdateThumbnailTemplateTaskVM(t string) *UpdateThumbnailTemplateTaskVM

NewUpdateThumbnailTemplateTaskVM instantiates a new UpdateThumbnailTemplateTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateThumbnailTemplateTaskVMWithDefaults ¶

func NewUpdateThumbnailTemplateTaskVMWithDefaults() *UpdateThumbnailTemplateTaskVM

NewUpdateThumbnailTemplateTaskVMWithDefaults instantiates a new UpdateThumbnailTemplateTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateThumbnailTemplateTaskVM) GetTemplateId ¶

func (o *UpdateThumbnailTemplateTaskVM) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateThumbnailTemplateTaskVM) GetTemplateIdOk ¶

func (o *UpdateThumbnailTemplateTaskVM) GetTemplateIdOk() (*string, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateThumbnailTemplateTaskVM) HasTemplateId ¶

func (o *UpdateThumbnailTemplateTaskVM) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (UpdateThumbnailTemplateTaskVM) MarshalJSON ¶

func (o UpdateThumbnailTemplateTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateThumbnailTemplateTaskVM) SetTemplateId ¶

func (o *UpdateThumbnailTemplateTaskVM) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*UpdateThumbnailTemplateTaskVM) SetTemplateIdNil ¶

func (o *UpdateThumbnailTemplateTaskVM) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (UpdateThumbnailTemplateTaskVM) ToMap ¶

func (o UpdateThumbnailTemplateTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateThumbnailTemplateTaskVM) UnsetTemplateId ¶

func (o *UpdateThumbnailTemplateTaskVM) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

type UpdateTransformTaskBaseVM ¶

type UpdateTransformTaskBaseVM struct {
	InputFile    *InputFileVM   `json:"inputFile,omitempty"`
	Locale       NullableString `json:"locale,omitempty"`
	OutputFile   *OutputFileVM  `json:"outputFile,omitempty"`
	TransportIds []string       `json:"transportIds,omitempty"`
	T            string         `json:"$t"`
}

UpdateTransformTaskBaseVM struct for UpdateTransformTaskBaseVM

func NewUpdateTransformTaskBaseVM ¶

func NewUpdateTransformTaskBaseVM(t string) *UpdateTransformTaskBaseVM

NewUpdateTransformTaskBaseVM instantiates a new UpdateTransformTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTransformTaskBaseVMWithDefaults ¶

func NewUpdateTransformTaskBaseVMWithDefaults() *UpdateTransformTaskBaseVM

NewUpdateTransformTaskBaseVMWithDefaults instantiates a new UpdateTransformTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTransformTaskBaseVM) GetInputFile ¶

func (o *UpdateTransformTaskBaseVM) GetInputFile() InputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*UpdateTransformTaskBaseVM) GetInputFileOk ¶

func (o *UpdateTransformTaskBaseVM) GetInputFileOk() (*InputFileVM, bool)

GetInputFileOk returns a tuple with the InputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransformTaskBaseVM) GetLocale ¶

func (o *UpdateTransformTaskBaseVM) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTransformTaskBaseVM) GetLocaleOk ¶

func (o *UpdateTransformTaskBaseVM) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTransformTaskBaseVM) GetOutputFile ¶

func (o *UpdateTransformTaskBaseVM) GetOutputFile() OutputFileVM

GetOutputFile returns the OutputFile field value if set, zero value otherwise.

func (*UpdateTransformTaskBaseVM) GetOutputFileOk ¶

func (o *UpdateTransformTaskBaseVM) GetOutputFileOk() (*OutputFileVM, bool)

GetOutputFileOk returns a tuple with the OutputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransformTaskBaseVM) GetT ¶

GetT returns the T field value

func (*UpdateTransformTaskBaseVM) GetTOk ¶

func (o *UpdateTransformTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*UpdateTransformTaskBaseVM) GetTransportIds ¶

func (o *UpdateTransformTaskBaseVM) GetTransportIds() []string

GetTransportIds returns the TransportIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateTransformTaskBaseVM) GetTransportIdsOk ¶

func (o *UpdateTransformTaskBaseVM) GetTransportIdsOk() ([]string, bool)

GetTransportIdsOk returns a tuple with the TransportIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateTransformTaskBaseVM) HasInputFile ¶

func (o *UpdateTransformTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (*UpdateTransformTaskBaseVM) HasLocale ¶

func (o *UpdateTransformTaskBaseVM) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*UpdateTransformTaskBaseVM) HasOutputFile ¶

func (o *UpdateTransformTaskBaseVM) HasOutputFile() bool

HasOutputFile returns a boolean if a field has been set.

func (*UpdateTransformTaskBaseVM) HasTransportIds ¶

func (o *UpdateTransformTaskBaseVM) HasTransportIds() bool

HasTransportIds returns a boolean if a field has been set.

func (UpdateTransformTaskBaseVM) MarshalJSON ¶

func (o UpdateTransformTaskBaseVM) MarshalJSON() ([]byte, error)

func (*UpdateTransformTaskBaseVM) SetInputFile ¶

func (o *UpdateTransformTaskBaseVM) SetInputFile(v InputFileVM)

SetInputFile gets a reference to the given InputFileVM and assigns it to the InputFile field.

func (*UpdateTransformTaskBaseVM) SetLocale ¶

func (o *UpdateTransformTaskBaseVM) SetLocale(v string)

SetLocale gets a reference to the given NullableString and assigns it to the Locale field.

func (*UpdateTransformTaskBaseVM) SetLocaleNil ¶

func (o *UpdateTransformTaskBaseVM) SetLocaleNil()

SetLocaleNil sets the value for Locale to be an explicit nil

func (*UpdateTransformTaskBaseVM) SetOutputFile ¶

func (o *UpdateTransformTaskBaseVM) SetOutputFile(v OutputFileVM)

SetOutputFile gets a reference to the given OutputFileVM and assigns it to the OutputFile field.

func (*UpdateTransformTaskBaseVM) SetT ¶

func (o *UpdateTransformTaskBaseVM) SetT(v string)

SetT sets field value

func (*UpdateTransformTaskBaseVM) SetTransportIds ¶

func (o *UpdateTransformTaskBaseVM) SetTransportIds(v []string)

SetTransportIds gets a reference to the given []string and assigns it to the TransportIds field.

func (UpdateTransformTaskBaseVM) ToMap ¶

func (o UpdateTransformTaskBaseVM) ToMap() (map[string]interface{}, error)

func (*UpdateTransformTaskBaseVM) UnsetLocale ¶

func (o *UpdateTransformTaskBaseVM) UnsetLocale()

UnsetLocale ensures that no value is present for Locale, not even an explicit nil

type UpdateTransportTaskBaseVM ¶

type UpdateTransportTaskBaseVM struct {
	InputFile *InputFileVM `json:"inputFile,omitempty"`
	T         string       `json:"$t"`
}

UpdateTransportTaskBaseVM struct for UpdateTransportTaskBaseVM

func NewUpdateTransportTaskBaseVM ¶

func NewUpdateTransportTaskBaseVM(t string) *UpdateTransportTaskBaseVM

NewUpdateTransportTaskBaseVM instantiates a new UpdateTransportTaskBaseVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTransportTaskBaseVMWithDefaults ¶

func NewUpdateTransportTaskBaseVMWithDefaults() *UpdateTransportTaskBaseVM

NewUpdateTransportTaskBaseVMWithDefaults instantiates a new UpdateTransportTaskBaseVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTransportTaskBaseVM) GetInputFile ¶

func (o *UpdateTransportTaskBaseVM) GetInputFile() InputFileVM

GetInputFile returns the InputFile field value if set, zero value otherwise.

func (*UpdateTransportTaskBaseVM) GetInputFileOk ¶

func (o *UpdateTransportTaskBaseVM) GetInputFileOk() (*InputFileVM, bool)

GetInputFileOk returns a tuple with the InputFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransportTaskBaseVM) GetT ¶

GetT returns the T field value

func (*UpdateTransportTaskBaseVM) GetTOk ¶

func (o *UpdateTransportTaskBaseVM) GetTOk() (*string, bool)

GetTOk returns a tuple with the T field value and a boolean to check if the value has been set.

func (*UpdateTransportTaskBaseVM) HasInputFile ¶

func (o *UpdateTransportTaskBaseVM) HasInputFile() bool

HasInputFile returns a boolean if a field has been set.

func (UpdateTransportTaskBaseVM) MarshalJSON ¶

func (o UpdateTransportTaskBaseVM) MarshalJSON() ([]byte, error)

func (*UpdateTransportTaskBaseVM) SetInputFile ¶

func (o *UpdateTransportTaskBaseVM) SetInputFile(v InputFileVM)

SetInputFile gets a reference to the given InputFileVM and assigns it to the InputFile field.

func (*UpdateTransportTaskBaseVM) SetT ¶

func (o *UpdateTransportTaskBaseVM) SetT(v string)

SetT sets field value

func (UpdateTransportTaskBaseVM) ToMap ¶

func (o UpdateTransportTaskBaseVM) ToMap() (map[string]interface{}, error)

type UpdateUserProfileVM ¶

type UpdateUserProfileVM struct {
	Name         NullableString `json:"name,omitempty"`
	Username     NullableString `json:"username,omitempty"`
	Email        NullableString `json:"email,omitempty"`
	PasswordNew  NullableString `json:"passwordNew,omitempty"`
	PasswordNew2 NullableString `json:"passwordNew2,omitempty"`
}

UpdateUserProfileVM struct for UpdateUserProfileVM

func NewUpdateUserProfileVM ¶

func NewUpdateUserProfileVM() *UpdateUserProfileVM

NewUpdateUserProfileVM instantiates a new UpdateUserProfileVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateUserProfileVMWithDefaults ¶

func NewUpdateUserProfileVMWithDefaults() *UpdateUserProfileVM

NewUpdateUserProfileVMWithDefaults instantiates a new UpdateUserProfileVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateUserProfileVM) GetEmail ¶

func (o *UpdateUserProfileVM) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserProfileVM) GetEmailOk ¶

func (o *UpdateUserProfileVM) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserProfileVM) GetName ¶

func (o *UpdateUserProfileVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserProfileVM) GetNameOk ¶

func (o *UpdateUserProfileVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserProfileVM) GetPasswordNew ¶

func (o *UpdateUserProfileVM) GetPasswordNew() string

GetPasswordNew returns the PasswordNew field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserProfileVM) GetPasswordNew2 ¶

func (o *UpdateUserProfileVM) GetPasswordNew2() string

GetPasswordNew2 returns the PasswordNew2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserProfileVM) GetPasswordNew2Ok ¶

func (o *UpdateUserProfileVM) GetPasswordNew2Ok() (*string, bool)

GetPasswordNew2Ok returns a tuple with the PasswordNew2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserProfileVM) GetPasswordNewOk ¶

func (o *UpdateUserProfileVM) GetPasswordNewOk() (*string, bool)

GetPasswordNewOk returns a tuple with the PasswordNew field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserProfileVM) GetUsername ¶

func (o *UpdateUserProfileVM) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserProfileVM) GetUsernameOk ¶

func (o *UpdateUserProfileVM) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserProfileVM) HasEmail ¶

func (o *UpdateUserProfileVM) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UpdateUserProfileVM) HasName ¶

func (o *UpdateUserProfileVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateUserProfileVM) HasPasswordNew ¶

func (o *UpdateUserProfileVM) HasPasswordNew() bool

HasPasswordNew returns a boolean if a field has been set.

func (*UpdateUserProfileVM) HasPasswordNew2 ¶

func (o *UpdateUserProfileVM) HasPasswordNew2() bool

HasPasswordNew2 returns a boolean if a field has been set.

func (*UpdateUserProfileVM) HasUsername ¶

func (o *UpdateUserProfileVM) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UpdateUserProfileVM) MarshalJSON ¶

func (o UpdateUserProfileVM) MarshalJSON() ([]byte, error)

func (*UpdateUserProfileVM) SetEmail ¶

func (o *UpdateUserProfileVM) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*UpdateUserProfileVM) SetEmailNil ¶

func (o *UpdateUserProfileVM) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*UpdateUserProfileVM) SetName ¶

func (o *UpdateUserProfileVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*UpdateUserProfileVM) SetNameNil ¶

func (o *UpdateUserProfileVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateUserProfileVM) SetPasswordNew ¶

func (o *UpdateUserProfileVM) SetPasswordNew(v string)

SetPasswordNew gets a reference to the given NullableString and assigns it to the PasswordNew field.

func (*UpdateUserProfileVM) SetPasswordNew2 ¶

func (o *UpdateUserProfileVM) SetPasswordNew2(v string)

SetPasswordNew2 gets a reference to the given NullableString and assigns it to the PasswordNew2 field.

func (*UpdateUserProfileVM) SetPasswordNew2Nil ¶

func (o *UpdateUserProfileVM) SetPasswordNew2Nil()

SetPasswordNew2Nil sets the value for PasswordNew2 to be an explicit nil

func (*UpdateUserProfileVM) SetPasswordNewNil ¶

func (o *UpdateUserProfileVM) SetPasswordNewNil()

SetPasswordNewNil sets the value for PasswordNew to be an explicit nil

func (*UpdateUserProfileVM) SetUsername ¶

func (o *UpdateUserProfileVM) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*UpdateUserProfileVM) SetUsernameNil ¶

func (o *UpdateUserProfileVM) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (UpdateUserProfileVM) ToMap ¶

func (o UpdateUserProfileVM) ToMap() (map[string]interface{}, error)

func (*UpdateUserProfileVM) UnsetEmail ¶

func (o *UpdateUserProfileVM) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*UpdateUserProfileVM) UnsetName ¶

func (o *UpdateUserProfileVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*UpdateUserProfileVM) UnsetPasswordNew ¶

func (o *UpdateUserProfileVM) UnsetPasswordNew()

UnsetPasswordNew ensures that no value is present for PasswordNew, not even an explicit nil

func (*UpdateUserProfileVM) UnsetPasswordNew2 ¶

func (o *UpdateUserProfileVM) UnsetPasswordNew2()

UnsetPasswordNew2 ensures that no value is present for PasswordNew2, not even an explicit nil

func (*UpdateUserProfileVM) UnsetUsername ¶

func (o *UpdateUserProfileVM) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type UpdateUserSettingsVM ¶

type UpdateUserSettingsVM struct {
	ProfileVisibility         NullableProfileVisibility `json:"profileVisibility,omitempty"`
	DefaultSubscription       NullableString            `json:"defaultSubscription,omitempty"`
	ShowHiddenFilesAndFolders NullableBool              `json:"showHiddenFilesAndFolders,omitempty"`
	SubscribedNotifications   []AuditType               `json:"subscribedNotifications,omitempty"`
}

UpdateUserSettingsVM struct for UpdateUserSettingsVM

func NewUpdateUserSettingsVM ¶

func NewUpdateUserSettingsVM() *UpdateUserSettingsVM

NewUpdateUserSettingsVM instantiates a new UpdateUserSettingsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateUserSettingsVMWithDefaults ¶

func NewUpdateUserSettingsVMWithDefaults() *UpdateUserSettingsVM

NewUpdateUserSettingsVMWithDefaults instantiates a new UpdateUserSettingsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateUserSettingsVM) GetDefaultSubscription ¶

func (o *UpdateUserSettingsVM) GetDefaultSubscription() string

GetDefaultSubscription returns the DefaultSubscription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserSettingsVM) GetDefaultSubscriptionOk ¶

func (o *UpdateUserSettingsVM) GetDefaultSubscriptionOk() (*string, bool)

GetDefaultSubscriptionOk returns a tuple with the DefaultSubscription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserSettingsVM) GetProfileVisibility ¶

func (o *UpdateUserSettingsVM) GetProfileVisibility() ProfileVisibility

GetProfileVisibility returns the ProfileVisibility field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserSettingsVM) GetProfileVisibilityOk ¶

func (o *UpdateUserSettingsVM) GetProfileVisibilityOk() (*ProfileVisibility, bool)

GetProfileVisibilityOk returns a tuple with the ProfileVisibility field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserSettingsVM) GetShowHiddenFilesAndFolders ¶

func (o *UpdateUserSettingsVM) GetShowHiddenFilesAndFolders() bool

GetShowHiddenFilesAndFolders returns the ShowHiddenFilesAndFolders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserSettingsVM) GetShowHiddenFilesAndFoldersOk ¶

func (o *UpdateUserSettingsVM) GetShowHiddenFilesAndFoldersOk() (*bool, bool)

GetShowHiddenFilesAndFoldersOk returns a tuple with the ShowHiddenFilesAndFolders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserSettingsVM) GetSubscribedNotifications ¶

func (o *UpdateUserSettingsVM) GetSubscribedNotifications() []AuditType

GetSubscribedNotifications returns the SubscribedNotifications field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateUserSettingsVM) GetSubscribedNotificationsOk ¶

func (o *UpdateUserSettingsVM) GetSubscribedNotificationsOk() ([]AuditType, bool)

GetSubscribedNotificationsOk returns a tuple with the SubscribedNotifications field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateUserSettingsVM) HasDefaultSubscription ¶

func (o *UpdateUserSettingsVM) HasDefaultSubscription() bool

HasDefaultSubscription returns a boolean if a field has been set.

func (*UpdateUserSettingsVM) HasProfileVisibility ¶

func (o *UpdateUserSettingsVM) HasProfileVisibility() bool

HasProfileVisibility returns a boolean if a field has been set.

func (*UpdateUserSettingsVM) HasShowHiddenFilesAndFolders ¶

func (o *UpdateUserSettingsVM) HasShowHiddenFilesAndFolders() bool

HasShowHiddenFilesAndFolders returns a boolean if a field has been set.

func (*UpdateUserSettingsVM) HasSubscribedNotifications ¶

func (o *UpdateUserSettingsVM) HasSubscribedNotifications() bool

HasSubscribedNotifications returns a boolean if a field has been set.

func (UpdateUserSettingsVM) MarshalJSON ¶

func (o UpdateUserSettingsVM) MarshalJSON() ([]byte, error)

func (*UpdateUserSettingsVM) SetDefaultSubscription ¶

func (o *UpdateUserSettingsVM) SetDefaultSubscription(v string)

SetDefaultSubscription gets a reference to the given NullableString and assigns it to the DefaultSubscription field.

func (*UpdateUserSettingsVM) SetDefaultSubscriptionNil ¶

func (o *UpdateUserSettingsVM) SetDefaultSubscriptionNil()

SetDefaultSubscriptionNil sets the value for DefaultSubscription to be an explicit nil

func (*UpdateUserSettingsVM) SetProfileVisibility ¶

func (o *UpdateUserSettingsVM) SetProfileVisibility(v ProfileVisibility)

SetProfileVisibility gets a reference to the given NullableProfileVisibility and assigns it to the ProfileVisibility field.

func (*UpdateUserSettingsVM) SetProfileVisibilityNil ¶

func (o *UpdateUserSettingsVM) SetProfileVisibilityNil()

SetProfileVisibilityNil sets the value for ProfileVisibility to be an explicit nil

func (*UpdateUserSettingsVM) SetShowHiddenFilesAndFolders ¶

func (o *UpdateUserSettingsVM) SetShowHiddenFilesAndFolders(v bool)

SetShowHiddenFilesAndFolders gets a reference to the given NullableBool and assigns it to the ShowHiddenFilesAndFolders field.

func (*UpdateUserSettingsVM) SetShowHiddenFilesAndFoldersNil ¶

func (o *UpdateUserSettingsVM) SetShowHiddenFilesAndFoldersNil()

SetShowHiddenFilesAndFoldersNil sets the value for ShowHiddenFilesAndFolders to be an explicit nil

func (*UpdateUserSettingsVM) SetSubscribedNotifications ¶

func (o *UpdateUserSettingsVM) SetSubscribedNotifications(v []AuditType)

SetSubscribedNotifications gets a reference to the given []AuditType and assigns it to the SubscribedNotifications field.

func (UpdateUserSettingsVM) ToMap ¶

func (o UpdateUserSettingsVM) ToMap() (map[string]interface{}, error)

func (*UpdateUserSettingsVM) UnsetDefaultSubscription ¶

func (o *UpdateUserSettingsVM) UnsetDefaultSubscription()

UnsetDefaultSubscription ensures that no value is present for DefaultSubscription, not even an explicit nil

func (*UpdateUserSettingsVM) UnsetProfileVisibility ¶

func (o *UpdateUserSettingsVM) UnsetProfileVisibility()

UnsetProfileVisibility ensures that no value is present for ProfileVisibility, not even an explicit nil

func (*UpdateUserSettingsVM) UnsetShowHiddenFilesAndFolders ¶

func (o *UpdateUserSettingsVM) UnsetShowHiddenFilesAndFolders()

UnsetShowHiddenFilesAndFolders ensures that no value is present for ShowHiddenFilesAndFolders, not even an explicit nil

type UpdateWebhookTaskVM ¶

type UpdateWebhookTaskVM struct {
	Headers map[string]string `json:"headers,omitempty"`
	Url     NullableString    `json:"url,omitempty"`
}

UpdateWebhookTaskVM struct for UpdateWebhookTaskVM

func NewUpdateWebhookTaskVM ¶

func NewUpdateWebhookTaskVM(t string) *UpdateWebhookTaskVM

NewUpdateWebhookTaskVM instantiates a new UpdateWebhookTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWebhookTaskVMWithDefaults ¶

func NewUpdateWebhookTaskVMWithDefaults() *UpdateWebhookTaskVM

NewUpdateWebhookTaskVMWithDefaults instantiates a new UpdateWebhookTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWebhookTaskVM) GetHeaders ¶

func (o *UpdateWebhookTaskVM) GetHeaders() map[string]string

GetHeaders returns the Headers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateWebhookTaskVM) GetHeadersOk ¶

func (o *UpdateWebhookTaskVM) GetHeadersOk() (*map[string]string, bool)

GetHeadersOk returns a tuple with the Headers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateWebhookTaskVM) GetUrl ¶

func (o *UpdateWebhookTaskVM) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateWebhookTaskVM) GetUrlOk ¶

func (o *UpdateWebhookTaskVM) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateWebhookTaskVM) HasHeaders ¶

func (o *UpdateWebhookTaskVM) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*UpdateWebhookTaskVM) HasUrl ¶

func (o *UpdateWebhookTaskVM) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (UpdateWebhookTaskVM) MarshalJSON ¶

func (o UpdateWebhookTaskVM) MarshalJSON() ([]byte, error)

func (*UpdateWebhookTaskVM) SetHeaders ¶

func (o *UpdateWebhookTaskVM) SetHeaders(v map[string]string)

SetHeaders gets a reference to the given map[string]string and assigns it to the Headers field.

func (*UpdateWebhookTaskVM) SetUrl ¶

func (o *UpdateWebhookTaskVM) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*UpdateWebhookTaskVM) SetUrlNil ¶

func (o *UpdateWebhookTaskVM) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (UpdateWebhookTaskVM) ToMap ¶

func (o UpdateWebhookTaskVM) ToMap() (map[string]interface{}, error)

func (*UpdateWebhookTaskVM) UnsetUrl ¶

func (o *UpdateWebhookTaskVM) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type UserNotificationsApiService ¶

type UserNotificationsApiService service

UserNotificationsApiService UserNotificationsApi service

func (*UserNotificationsApiService) UserNotificationsClearNotifications ¶

UserNotificationsClearNotifications Use this endpoint to \"clear\" your notifications

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserNotificationsClearNotificationsRequest

func (*UserNotificationsApiService) UserNotificationsClearNotificationsExecute ¶

func (a *UserNotificationsApiService) UserNotificationsClearNotificationsExecute(r ApiUserNotificationsClearNotificationsRequest) (*http.Response, error)

Execute executes the request

func (*UserNotificationsApiService) UserNotificationsGetNotifications ¶

UserNotificationsGetNotifications Use this endpoint to recieve notifications

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserNotificationsGetNotificationsRequest

func (*UserNotificationsApiService) UserNotificationsGetNotificationsExecute ¶

Execute executes the request

@return AuditActionsVM

type UserProfileApiService ¶

type UserProfileApiService service

UserProfileApiService UserProfileApi service

func (*UserProfileApiService) UserProfileGetMyProfile ¶

UserProfileGetMyProfile Return current profile of the current user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserProfileGetMyProfileRequest

func (*UserProfileApiService) UserProfileGetMyProfileExecute ¶

func (a *UserProfileApiService) UserProfileGetMyProfileExecute(r ApiUserProfileGetMyProfileRequest) (*UserProfileVM, *http.Response, error)

Execute executes the request

@return UserProfileVM

func (*UserProfileApiService) UserProfileGetUserProfile ¶

func (a *UserProfileApiService) UserProfileGetUserProfile(ctx context.Context, userId string) ApiUserProfileGetUserProfileRequest

UserProfileGetUserProfile Return user profile by user identifier. If the user did not provide information about himself or blocked, then the endpoint will return an empty model. (only id)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiUserProfileGetUserProfileRequest

func (*UserProfileApiService) UserProfileGetUserProfileExecute ¶

func (a *UserProfileApiService) UserProfileGetUserProfileExecute(r ApiUserProfileGetUserProfileRequest) (*UserProfileVM, *http.Response, error)

Execute executes the request

@return UserProfileVM

func (*UserProfileApiService) UserProfileUpdateMyProfile ¶

UserProfileUpdateMyProfile Update profile of the current user

This method is only allowed for local sign in via intranet

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserProfileUpdateMyProfileRequest

func (*UserProfileApiService) UserProfileUpdateMyProfileExecute ¶

func (a *UserProfileApiService) UserProfileUpdateMyProfileExecute(r ApiUserProfileUpdateMyProfileRequest) (*http.Response, error)

Execute executes the request

type UserProfileVM ¶

type UserProfileVM struct {
	Id         NullableString `json:"id,omitempty"`
	Name       NullableString `json:"name,omitempty"`
	Username   NullableString `json:"username,omitempty"`
	Email      NullableString `json:"email,omitempty"`
	IsReadOnly *bool          `json:"isReadOnly,omitempty"`
}

UserProfileVM struct for UserProfileVM

func NewUserProfileVM ¶

func NewUserProfileVM() *UserProfileVM

NewUserProfileVM instantiates a new UserProfileVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserProfileVMWithDefaults ¶

func NewUserProfileVMWithDefaults() *UserProfileVM

NewUserProfileVMWithDefaults instantiates a new UserProfileVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserProfileVM) GetEmail ¶

func (o *UserProfileVM) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserProfileVM) GetEmailOk ¶

func (o *UserProfileVM) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserProfileVM) GetId ¶

func (o *UserProfileVM) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserProfileVM) GetIdOk ¶

func (o *UserProfileVM) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserProfileVM) GetIsReadOnly ¶

func (o *UserProfileVM) GetIsReadOnly() bool

GetIsReadOnly returns the IsReadOnly field value if set, zero value otherwise.

func (*UserProfileVM) GetIsReadOnlyOk ¶

func (o *UserProfileVM) GetIsReadOnlyOk() (*bool, bool)

GetIsReadOnlyOk returns a tuple with the IsReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserProfileVM) GetName ¶

func (o *UserProfileVM) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserProfileVM) GetNameOk ¶

func (o *UserProfileVM) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserProfileVM) GetUsername ¶

func (o *UserProfileVM) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserProfileVM) GetUsernameOk ¶

func (o *UserProfileVM) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserProfileVM) HasEmail ¶

func (o *UserProfileVM) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserProfileVM) HasId ¶

func (o *UserProfileVM) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserProfileVM) HasIsReadOnly ¶

func (o *UserProfileVM) HasIsReadOnly() bool

HasIsReadOnly returns a boolean if a field has been set.

func (*UserProfileVM) HasName ¶

func (o *UserProfileVM) HasName() bool

HasName returns a boolean if a field has been set.

func (*UserProfileVM) HasUsername ¶

func (o *UserProfileVM) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserProfileVM) MarshalJSON ¶

func (o UserProfileVM) MarshalJSON() ([]byte, error)

func (*UserProfileVM) SetEmail ¶

func (o *UserProfileVM) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*UserProfileVM) SetEmailNil ¶

func (o *UserProfileVM) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*UserProfileVM) SetId ¶

func (o *UserProfileVM) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*UserProfileVM) SetIdNil ¶

func (o *UserProfileVM) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*UserProfileVM) SetIsReadOnly ¶

func (o *UserProfileVM) SetIsReadOnly(v bool)

SetIsReadOnly gets a reference to the given bool and assigns it to the IsReadOnly field.

func (*UserProfileVM) SetName ¶

func (o *UserProfileVM) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*UserProfileVM) SetNameNil ¶

func (o *UserProfileVM) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UserProfileVM) SetUsername ¶

func (o *UserProfileVM) SetUsername(v string)

SetUsername gets a reference to the given NullableString and assigns it to the Username field.

func (*UserProfileVM) SetUsernameNil ¶

func (o *UserProfileVM) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (UserProfileVM) ToMap ¶

func (o UserProfileVM) ToMap() (map[string]interface{}, error)

func (*UserProfileVM) UnsetEmail ¶

func (o *UserProfileVM) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*UserProfileVM) UnsetId ¶

func (o *UserProfileVM) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*UserProfileVM) UnsetName ¶

func (o *UserProfileVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*UserProfileVM) UnsetUsername ¶

func (o *UserProfileVM) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type UserSettingsApiService ¶

type UserSettingsApiService service

UserSettingsApiService UserSettingsApi service

func (*UserSettingsApiService) UserSettingsAcceptAgreements ¶

UserSettingsAcceptAgreements Use this endpoint to accept current version of service license agreement

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserSettingsAcceptAgreementsRequest

func (*UserSettingsApiService) UserSettingsAcceptAgreementsExecute ¶

func (a *UserSettingsApiService) UserSettingsAcceptAgreementsExecute(r ApiUserSettingsAcceptAgreementsRequest) (*http.Response, error)

Execute executes the request

func (*UserSettingsApiService) UserSettingsGetCurrentUserSettings ¶

func (a *UserSettingsApiService) UserSettingsGetCurrentUserSettings(ctx context.Context) ApiUserSettingsGetCurrentUserSettingsRequest

UserSettingsGetCurrentUserSettings Return current user settings.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserSettingsGetCurrentUserSettingsRequest

func (*UserSettingsApiService) UserSettingsGetCurrentUserSettingsExecute ¶

func (a *UserSettingsApiService) UserSettingsGetCurrentUserSettingsExecute(r ApiUserSettingsGetCurrentUserSettingsRequest) (*UserSettingsVM, *http.Response, error)

Execute executes the request

@return UserSettingsVM

func (*UserSettingsApiService) UserSettingsUpdateMySettings ¶

UserSettingsUpdateMySettings Update settings of the current user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserSettingsUpdateMySettingsRequest

func (*UserSettingsApiService) UserSettingsUpdateMySettingsExecute ¶

func (a *UserSettingsApiService) UserSettingsUpdateMySettingsExecute(r ApiUserSettingsUpdateMySettingsRequest) (*UserSettingsVM, *http.Response, error)

Execute executes the request

@return UserSettingsVM

type UserSettingsVM ¶

type UserSettingsVM struct {
	ProfileVisibility         *ProfileVisibility `json:"profileVisibility,omitempty"`
	DefaultSubscription       NullableString     `json:"defaultSubscription,omitempty"`
	ShowHiddenFilesAndFolders *bool              `json:"showHiddenFilesAndFolders,omitempty"`
	SlaAcceptedDateTime       NullableTime       `json:"slaAcceptedDateTime,omitempty"`
	SubscribedNotifications   []AuditType        `json:"subscribedNotifications,omitempty"`
}

UserSettingsVM struct for UserSettingsVM

func NewUserSettingsVM ¶

func NewUserSettingsVM() *UserSettingsVM

NewUserSettingsVM instantiates a new UserSettingsVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSettingsVMWithDefaults ¶

func NewUserSettingsVMWithDefaults() *UserSettingsVM

NewUserSettingsVMWithDefaults instantiates a new UserSettingsVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSettingsVM) GetDefaultSubscription ¶

func (o *UserSettingsVM) GetDefaultSubscription() string

GetDefaultSubscription returns the DefaultSubscription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSettingsVM) GetDefaultSubscriptionOk ¶

func (o *UserSettingsVM) GetDefaultSubscriptionOk() (*string, bool)

GetDefaultSubscriptionOk returns a tuple with the DefaultSubscription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSettingsVM) GetProfileVisibility ¶

func (o *UserSettingsVM) GetProfileVisibility() ProfileVisibility

GetProfileVisibility returns the ProfileVisibility field value if set, zero value otherwise.

func (*UserSettingsVM) GetProfileVisibilityOk ¶

func (o *UserSettingsVM) GetProfileVisibilityOk() (*ProfileVisibility, bool)

GetProfileVisibilityOk returns a tuple with the ProfileVisibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSettingsVM) GetShowHiddenFilesAndFolders ¶

func (o *UserSettingsVM) GetShowHiddenFilesAndFolders() bool

GetShowHiddenFilesAndFolders returns the ShowHiddenFilesAndFolders field value if set, zero value otherwise.

func (*UserSettingsVM) GetShowHiddenFilesAndFoldersOk ¶

func (o *UserSettingsVM) GetShowHiddenFilesAndFoldersOk() (*bool, bool)

GetShowHiddenFilesAndFoldersOk returns a tuple with the ShowHiddenFilesAndFolders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSettingsVM) GetSlaAcceptedDateTime ¶

func (o *UserSettingsVM) GetSlaAcceptedDateTime() time.Time

GetSlaAcceptedDateTime returns the SlaAcceptedDateTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSettingsVM) GetSlaAcceptedDateTimeOk ¶

func (o *UserSettingsVM) GetSlaAcceptedDateTimeOk() (*time.Time, bool)

GetSlaAcceptedDateTimeOk returns a tuple with the SlaAcceptedDateTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSettingsVM) GetSubscribedNotifications ¶

func (o *UserSettingsVM) GetSubscribedNotifications() []AuditType

GetSubscribedNotifications returns the SubscribedNotifications field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSettingsVM) GetSubscribedNotificationsOk ¶

func (o *UserSettingsVM) GetSubscribedNotificationsOk() ([]AuditType, bool)

GetSubscribedNotificationsOk returns a tuple with the SubscribedNotifications field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSettingsVM) HasDefaultSubscription ¶

func (o *UserSettingsVM) HasDefaultSubscription() bool

HasDefaultSubscription returns a boolean if a field has been set.

func (*UserSettingsVM) HasProfileVisibility ¶

func (o *UserSettingsVM) HasProfileVisibility() bool

HasProfileVisibility returns a boolean if a field has been set.

func (*UserSettingsVM) HasShowHiddenFilesAndFolders ¶

func (o *UserSettingsVM) HasShowHiddenFilesAndFolders() bool

HasShowHiddenFilesAndFolders returns a boolean if a field has been set.

func (*UserSettingsVM) HasSlaAcceptedDateTime ¶

func (o *UserSettingsVM) HasSlaAcceptedDateTime() bool

HasSlaAcceptedDateTime returns a boolean if a field has been set.

func (*UserSettingsVM) HasSubscribedNotifications ¶

func (o *UserSettingsVM) HasSubscribedNotifications() bool

HasSubscribedNotifications returns a boolean if a field has been set.

func (UserSettingsVM) MarshalJSON ¶

func (o UserSettingsVM) MarshalJSON() ([]byte, error)

func (*UserSettingsVM) SetDefaultSubscription ¶

func (o *UserSettingsVM) SetDefaultSubscription(v string)

SetDefaultSubscription gets a reference to the given NullableString and assigns it to the DefaultSubscription field.

func (*UserSettingsVM) SetDefaultSubscriptionNil ¶

func (o *UserSettingsVM) SetDefaultSubscriptionNil()

SetDefaultSubscriptionNil sets the value for DefaultSubscription to be an explicit nil

func (*UserSettingsVM) SetProfileVisibility ¶

func (o *UserSettingsVM) SetProfileVisibility(v ProfileVisibility)

SetProfileVisibility gets a reference to the given ProfileVisibility and assigns it to the ProfileVisibility field.

func (*UserSettingsVM) SetShowHiddenFilesAndFolders ¶

func (o *UserSettingsVM) SetShowHiddenFilesAndFolders(v bool)

SetShowHiddenFilesAndFolders gets a reference to the given bool and assigns it to the ShowHiddenFilesAndFolders field.

func (*UserSettingsVM) SetSlaAcceptedDateTime ¶

func (o *UserSettingsVM) SetSlaAcceptedDateTime(v time.Time)

SetSlaAcceptedDateTime gets a reference to the given NullableTime and assigns it to the SlaAcceptedDateTime field.

func (*UserSettingsVM) SetSlaAcceptedDateTimeNil ¶

func (o *UserSettingsVM) SetSlaAcceptedDateTimeNil()

SetSlaAcceptedDateTimeNil sets the value for SlaAcceptedDateTime to be an explicit nil

func (*UserSettingsVM) SetSubscribedNotifications ¶

func (o *UserSettingsVM) SetSubscribedNotifications(v []AuditType)

SetSubscribedNotifications gets a reference to the given []AuditType and assigns it to the SubscribedNotifications field.

func (UserSettingsVM) ToMap ¶

func (o UserSettingsVM) ToMap() (map[string]interface{}, error)

func (*UserSettingsVM) UnsetDefaultSubscription ¶

func (o *UserSettingsVM) UnsetDefaultSubscription()

UnsetDefaultSubscription ensures that no value is present for DefaultSubscription, not even an explicit nil

func (*UserSettingsVM) UnsetSlaAcceptedDateTime ¶

func (o *UserSettingsVM) UnsetSlaAcceptedDateTime()

UnsetSlaAcceptedDateTime ensures that no value is present for SlaAcceptedDateTime, not even an explicit nil

type WebhookTaskVM ¶

type WebhookTaskVM struct {
	Headers map[string]string `json:"headers,omitempty"`
	Url     NullableString    `json:"url,omitempty"`
}

WebhookTaskVM struct for WebhookTaskVM

func NewWebhookTaskVM ¶

func NewWebhookTaskVM(t string) *WebhookTaskVM

NewWebhookTaskVM instantiates a new WebhookTaskVM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookTaskVMWithDefaults ¶

func NewWebhookTaskVMWithDefaults() *WebhookTaskVM

NewWebhookTaskVMWithDefaults instantiates a new WebhookTaskVM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookTaskVM) GetHeaders ¶

func (o *WebhookTaskVM) GetHeaders() map[string]string

GetHeaders returns the Headers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebhookTaskVM) GetHeadersOk ¶

func (o *WebhookTaskVM) GetHeadersOk() (*map[string]string, bool)

GetHeadersOk returns a tuple with the Headers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebhookTaskVM) GetUrl ¶

func (o *WebhookTaskVM) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebhookTaskVM) GetUrlOk ¶

func (o *WebhookTaskVM) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebhookTaskVM) HasHeaders ¶

func (o *WebhookTaskVM) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*WebhookTaskVM) HasUrl ¶

func (o *WebhookTaskVM) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (WebhookTaskVM) MarshalJSON ¶

func (o WebhookTaskVM) MarshalJSON() ([]byte, error)

func (*WebhookTaskVM) SetHeaders ¶

func (o *WebhookTaskVM) SetHeaders(v map[string]string)

SetHeaders gets a reference to the given map[string]string and assigns it to the Headers field.

func (*WebhookTaskVM) SetUrl ¶

func (o *WebhookTaskVM) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*WebhookTaskVM) SetUrlNil ¶

func (o *WebhookTaskVM) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (WebhookTaskVM) ToMap ¶

func (o WebhookTaskVM) ToMap() (map[string]interface{}, error)

func (*WebhookTaskVM) UnsetUrl ¶

func (o *WebhookTaskVM) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL