taikunshowback

package module
v0.0.0-...-608df44 Latest Latest
Warning

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

Go to latest
Published: Nov 23, 2023 License: Apache-2.0 Imports: 20 Imported by: 1

README

Go API client for taikunshowback

This Api will be responsible for overall data distribution and authorization.

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: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit http://taikun.cloud/

Installation

Install the following dependencies:

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

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

import taikunshowback "github.com/itera-io/taikungoclient/showbackclient"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

ctx := context.WithValue(context.Background(), taikunshowback.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), taikunshowback.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
ProjectsAPI ProjectsList Get /showback/v1/projects Retrieve all projects
ShowbackCredentialsAPI ShowbackcredentialsCreate Post /showback/v1/showbackcredentials/create Create showback credential
ShowbackCredentialsAPI ShowbackcredentialsDelete Delete /showback/v1/showbackcredentials/{id} Delete showback credential
ShowbackCredentialsAPI ShowbackcredentialsDropdown Get /showback/v1/showbackcredentials/list Retrieve showback credentials by organization id
ShowbackCredentialsAPI ShowbackcredentialsList Get /showback/v1/showbackcredentials Retrieve all showback credentials
ShowbackCredentialsAPI ShowbackcredentialsLockManagement Post /showback/v1/showbackcredentials/lockmanager Lock management for showback credential
ShowbackRulesAPI ShowbackrulesCreate Post /showback/v1/showbackrules/create Create showback rule
ShowbackRulesAPI ShowbackrulesDelete Delete /showback/v1/showbackrules/{id} Delete showback rule
ShowbackRulesAPI ShowbackrulesDeleteAll Post /showback/v1/showbackrules/delete Delete multiple showback rule
ShowbackRulesAPI ShowbackrulesList Get /showback/v1/showbackrules Retrieve all showback rules
ShowbackRulesAPI ShowbackrulesUpdate Post /showback/v1/showbackrules/update Create showback rule
ShowbackSummariesAPI ShowbacksummariesByLabel Get /showback/v1/showbacksummaries/grouped/byLabel Grouped showback summary by label
ShowbackSummariesAPI ShowbacksummariesByProject Get /showback/v1/showbacksummaries/grouped/byProject Grouped showback summary by project
ShowbackSummariesAPI ShowbacksummariesCreate Post /showback/v1/showbacksummaries/create Create showback summary
ShowbackSummariesAPI ShowbacksummariesExportCsv Get /showback/v1/showbacksummaries/export Export Csv
ShowbackSummariesAPI ShowbacksummariesGrouped Get /showback/v1/showbacksummaries/grouped/list Grouped showback summary
ShowbackSummariesAPI ShowbacksummariesGroupedList Get /showback/v1/showbacksummaries/grouped Grouped list of showback summary

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

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

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

Example

auth := context.WithValue(
		context.Background(),
		taikunshowback.ContextAPIKeys,
		map[string]taikunshowback.APIKey{
			"Authorization": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

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

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

Author

noreply@taikun.cloud

Documentation

Index

Constants

This section is empty.

Variables

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

	// 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 AllowedEPrometheusTypeEnumValues = []EPrometheusType{
	"Count",
	"Sum",
}

All allowed values of EPrometheusType enum

View Source
var AllowedEShowbackTypeEnumValues = []EShowbackType{
	"General",
	"External",
}

All allowed values of EShowbackType 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 {
	ProjectsAPI *ProjectsAPIService

	ShowbackCredentialsAPI *ShowbackCredentialsAPIService

	ShowbackRulesAPI *ShowbackRulesAPIService

	ShowbackSummariesAPI *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Taikun - Showback API 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 ApiProjectsListRequest

type ApiProjectsListRequest struct {
	ApiService *ProjectsAPIService
	// contains filtered or unexported fields
}

func (ApiProjectsListRequest) Execute

func (ApiProjectsListRequest) Id

func (ApiProjectsListRequest) Limit

func (ApiProjectsListRequest) Offset

func (ApiProjectsListRequest) OrganizationId

func (r ApiProjectsListRequest) OrganizationId(organizationId int32) ApiProjectsListRequest

func (ApiProjectsListRequest) Search

func (ApiProjectsListRequest) SortBy

func (ApiProjectsListRequest) SortDirection

func (r ApiProjectsListRequest) SortDirection(sortDirection string) ApiProjectsListRequest

type ApiResponse

type ApiResponse struct {
	Id      NullableString `json:"id,omitempty"`
	Status  *int32         `json:"status,omitempty"`
	Message NullableString `json:"message,omitempty"`
	IsError *bool          `json:"isError,omitempty"`
	Result  interface{}    `json:"result,omitempty"`
}

ApiResponse struct for ApiResponse

func NewApiResponse

func NewApiResponse() *ApiResponse

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

func NewApiResponseWithDefaults

func NewApiResponseWithDefaults() *ApiResponse

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

func (*ApiResponse) GetId

func (o *ApiResponse) GetId() string

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

func (*ApiResponse) GetIdOk

func (o *ApiResponse) 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 (*ApiResponse) GetIsError

func (o *ApiResponse) GetIsError() bool

GetIsError returns the IsError field value if set, zero value otherwise.

func (*ApiResponse) GetIsErrorOk

func (o *ApiResponse) GetIsErrorOk() (*bool, bool)

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

func (*ApiResponse) GetMessage

func (o *ApiResponse) GetMessage() string

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

func (*ApiResponse) GetMessageOk

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

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

func (*ApiResponse) GetResult

func (o *ApiResponse) GetResult() interface{}

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

func (*ApiResponse) GetResultOk

func (o *ApiResponse) GetResultOk() (*interface{}, bool)

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

func (*ApiResponse) GetStatus

func (o *ApiResponse) GetStatus() int32

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

func (*ApiResponse) GetStatusOk

func (o *ApiResponse) GetStatusOk() (*int32, bool)

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

func (*ApiResponse) HasId

func (o *ApiResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApiResponse) HasIsError

func (o *ApiResponse) HasIsError() bool

HasIsError returns a boolean if a field has been set.

func (*ApiResponse) HasMessage

func (o *ApiResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ApiResponse) HasResult

func (o *ApiResponse) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*ApiResponse) HasStatus

func (o *ApiResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ApiResponse) MarshalJSON

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

func (*ApiResponse) SetId

func (o *ApiResponse) SetId(v string)

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

func (*ApiResponse) SetIdNil

func (o *ApiResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ApiResponse) SetIsError

func (o *ApiResponse) SetIsError(v bool)

SetIsError gets a reference to the given bool and assigns it to the IsError field.

func (*ApiResponse) SetMessage

func (o *ApiResponse) SetMessage(v string)

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

func (*ApiResponse) SetMessageNil

func (o *ApiResponse) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ApiResponse) SetResult

func (o *ApiResponse) SetResult(v interface{})

SetResult gets a reference to the given interface{} and assigns it to the Result field.

func (*ApiResponse) SetStatus

func (o *ApiResponse) SetStatus(v int32)

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

func (ApiResponse) ToMap

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

func (*ApiResponse) UnsetId

func (o *ApiResponse) UnsetId()

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

func (*ApiResponse) UnsetMessage

func (o *ApiResponse) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type ApiShowbackcredentialsCreateRequest

type ApiShowbackcredentialsCreateRequest struct {
	ApiService *ShowbackCredentialsAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackcredentialsCreateRequest) CreateShowbackCredentialCommand

func (r ApiShowbackcredentialsCreateRequest) CreateShowbackCredentialCommand(createShowbackCredentialCommand CreateShowbackCredentialCommand) ApiShowbackcredentialsCreateRequest

func (ApiShowbackcredentialsCreateRequest) Execute

type ApiShowbackcredentialsDeleteRequest

type ApiShowbackcredentialsDeleteRequest struct {
	ApiService *ShowbackCredentialsAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackcredentialsDeleteRequest) Execute

type ApiShowbackcredentialsDropdownRequest

type ApiShowbackcredentialsDropdownRequest struct {
	ApiService *ShowbackCredentialsAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackcredentialsDropdownRequest) Execute

func (ApiShowbackcredentialsDropdownRequest) OrganizationId

type ApiShowbackcredentialsListRequest

type ApiShowbackcredentialsListRequest struct {
	ApiService *ShowbackCredentialsAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackcredentialsListRequest) Execute

func (ApiShowbackcredentialsListRequest) Id

func (ApiShowbackcredentialsListRequest) Limit

func (ApiShowbackcredentialsListRequest) Offset

func (ApiShowbackcredentialsListRequest) OrganizationId

func (ApiShowbackcredentialsListRequest) Search

func (ApiShowbackcredentialsListRequest) SortBy

func (ApiShowbackcredentialsListRequest) SortDirection

type ApiShowbackcredentialsLockManagementRequest

type ApiShowbackcredentialsLockManagementRequest struct {
	ApiService *ShowbackCredentialsAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackcredentialsLockManagementRequest) Execute

func (ApiShowbackcredentialsLockManagementRequest) ShowbackCredentialLockCommand

type ApiShowbackrulesCreateRequest

type ApiShowbackrulesCreateRequest struct {
	ApiService *ShowbackRulesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackrulesCreateRequest) CreateShowbackRuleCommand

func (r ApiShowbackrulesCreateRequest) CreateShowbackRuleCommand(createShowbackRuleCommand CreateShowbackRuleCommand) ApiShowbackrulesCreateRequest

func (ApiShowbackrulesCreateRequest) Execute

type ApiShowbackrulesDeleteAllRequest

type ApiShowbackrulesDeleteAllRequest struct {
	ApiService *ShowbackRulesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackrulesDeleteAllRequest) DeleteRulesCommand

func (ApiShowbackrulesDeleteAllRequest) Execute

type ApiShowbackrulesDeleteRequest

type ApiShowbackrulesDeleteRequest struct {
	ApiService *ShowbackRulesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackrulesDeleteRequest) Execute

type ApiShowbackrulesListRequest

type ApiShowbackrulesListRequest struct {
	ApiService *ShowbackRulesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackrulesListRequest) Execute

func (ApiShowbackrulesListRequest) Id

func (ApiShowbackrulesListRequest) Limit

func (ApiShowbackrulesListRequest) Offset

func (ApiShowbackrulesListRequest) OrganizationId

func (r ApiShowbackrulesListRequest) OrganizationId(organizationId int32) ApiShowbackrulesListRequest

func (ApiShowbackrulesListRequest) Search

func (ApiShowbackrulesListRequest) SortBy

func (ApiShowbackrulesListRequest) SortDirection

func (r ApiShowbackrulesListRequest) SortDirection(sortDirection string) ApiShowbackrulesListRequest

type ApiShowbackrulesUpdateRequest

type ApiShowbackrulesUpdateRequest struct {
	ApiService *ShowbackRulesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbackrulesUpdateRequest) Execute

func (ApiShowbackrulesUpdateRequest) UpdateShowbackRuleCommand

func (r ApiShowbackrulesUpdateRequest) UpdateShowbackRuleCommand(updateShowbackRuleCommand UpdateShowbackRuleCommand) ApiShowbackrulesUpdateRequest

type ApiShowbacksummariesByLabelRequest

type ApiShowbacksummariesByLabelRequest struct {
	ApiService *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbacksummariesByLabelRequest) Execute

func (ApiShowbacksummariesByLabelRequest) FromDate

func (ApiShowbacksummariesByLabelRequest) IsDeleted

func (ApiShowbacksummariesByLabelRequest) OrganizationId

func (ApiShowbacksummariesByLabelRequest) ToDate

type ApiShowbacksummariesByProjectRequest

type ApiShowbacksummariesByProjectRequest struct {
	ApiService *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbacksummariesByProjectRequest) Execute

func (ApiShowbacksummariesByProjectRequest) FromDate

func (ApiShowbacksummariesByProjectRequest) IsDeleted

func (ApiShowbacksummariesByProjectRequest) OrganizationId

func (ApiShowbacksummariesByProjectRequest) ToDate

type ApiShowbacksummariesCreateRequest

type ApiShowbacksummariesCreateRequest struct {
	ApiService *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbacksummariesCreateRequest) CreateShowbackSummaryCommand

func (r ApiShowbacksummariesCreateRequest) CreateShowbackSummaryCommand(createShowbackSummaryCommand CreateShowbackSummaryCommand) ApiShowbacksummariesCreateRequest

func (ApiShowbacksummariesCreateRequest) Execute

type ApiShowbacksummariesExportCsvRequest

type ApiShowbacksummariesExportCsvRequest struct {
	ApiService *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbacksummariesExportCsvRequest) Execute

func (ApiShowbacksummariesExportCsvRequest) IsEmailEnabled

func (ApiShowbacksummariesExportCsvRequest) OrganizationId

type ApiShowbacksummariesGroupedListRequest

type ApiShowbacksummariesGroupedListRequest struct {
	ApiService *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbacksummariesGroupedListRequest) Execute

func (ApiShowbacksummariesGroupedListRequest) FromDate

func (ApiShowbacksummariesGroupedListRequest) IsDeleted

func (ApiShowbacksummariesGroupedListRequest) OrganizationId

func (ApiShowbacksummariesGroupedListRequest) PeriodDuration

func (ApiShowbacksummariesGroupedListRequest) ToDate

type ApiShowbacksummariesGroupedRequest

type ApiShowbacksummariesGroupedRequest struct {
	ApiService *ShowbackSummariesAPIService
	// contains filtered or unexported fields
}

func (ApiShowbacksummariesGroupedRequest) Execute

func (ApiShowbacksummariesGroupedRequest) FromDate

func (ApiShowbacksummariesGroupedRequest) OrganizationId

func (ApiShowbacksummariesGroupedRequest) ToDate

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CreateShowbackCredentialCommand

type CreateShowbackCredentialCommand struct {
	Name           NullableString `json:"name,omitempty"`
	Url            NullableString `json:"url,omitempty"`
	Username       NullableString `json:"username,omitempty"`
	Password       NullableString `json:"password,omitempty"`
	OrganizationId NullableInt32  `json:"organizationId,omitempty"`
}

CreateShowbackCredentialCommand struct for CreateShowbackCredentialCommand

func NewCreateShowbackCredentialCommand

func NewCreateShowbackCredentialCommand() *CreateShowbackCredentialCommand

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

func NewCreateShowbackCredentialCommandWithDefaults

func NewCreateShowbackCredentialCommandWithDefaults() *CreateShowbackCredentialCommand

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

func (*CreateShowbackCredentialCommand) GetName

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

func (*CreateShowbackCredentialCommand) GetNameOk

func (o *CreateShowbackCredentialCommand) 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 (*CreateShowbackCredentialCommand) GetOrganizationId

func (o *CreateShowbackCredentialCommand) GetOrganizationId() int32

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

func (*CreateShowbackCredentialCommand) GetOrganizationIdOk

func (o *CreateShowbackCredentialCommand) GetOrganizationIdOk() (*int32, bool)

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

func (*CreateShowbackCredentialCommand) GetPassword

func (o *CreateShowbackCredentialCommand) GetPassword() string

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

func (*CreateShowbackCredentialCommand) GetPasswordOk

func (o *CreateShowbackCredentialCommand) 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 (*CreateShowbackCredentialCommand) GetUrl

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

func (*CreateShowbackCredentialCommand) GetUrlOk

func (o *CreateShowbackCredentialCommand) 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 (*CreateShowbackCredentialCommand) GetUsername

func (o *CreateShowbackCredentialCommand) GetUsername() string

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

func (*CreateShowbackCredentialCommand) GetUsernameOk

func (o *CreateShowbackCredentialCommand) 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 (*CreateShowbackCredentialCommand) HasName

HasName returns a boolean if a field has been set.

func (*CreateShowbackCredentialCommand) HasOrganizationId

func (o *CreateShowbackCredentialCommand) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*CreateShowbackCredentialCommand) HasPassword

func (o *CreateShowbackCredentialCommand) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CreateShowbackCredentialCommand) HasUrl

HasUrl returns a boolean if a field has been set.

func (*CreateShowbackCredentialCommand) HasUsername

func (o *CreateShowbackCredentialCommand) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (CreateShowbackCredentialCommand) MarshalJSON

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

func (*CreateShowbackCredentialCommand) SetName

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

func (*CreateShowbackCredentialCommand) SetNameNil

func (o *CreateShowbackCredentialCommand) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateShowbackCredentialCommand) SetOrganizationId

func (o *CreateShowbackCredentialCommand) SetOrganizationId(v int32)

SetOrganizationId gets a reference to the given NullableInt32 and assigns it to the OrganizationId field.

func (*CreateShowbackCredentialCommand) SetOrganizationIdNil

func (o *CreateShowbackCredentialCommand) SetOrganizationIdNil()

SetOrganizationIdNil sets the value for OrganizationId to be an explicit nil

func (*CreateShowbackCredentialCommand) SetPassword

func (o *CreateShowbackCredentialCommand) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*CreateShowbackCredentialCommand) SetPasswordNil

func (o *CreateShowbackCredentialCommand) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*CreateShowbackCredentialCommand) SetUrl

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*CreateShowbackCredentialCommand) SetUrlNil

func (o *CreateShowbackCredentialCommand) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*CreateShowbackCredentialCommand) SetUsername

func (o *CreateShowbackCredentialCommand) SetUsername(v string)

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

func (*CreateShowbackCredentialCommand) SetUsernameNil

func (o *CreateShowbackCredentialCommand) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (CreateShowbackCredentialCommand) ToMap

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

func (*CreateShowbackCredentialCommand) UnsetName

func (o *CreateShowbackCredentialCommand) UnsetName()

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

func (*CreateShowbackCredentialCommand) UnsetOrganizationId

func (o *CreateShowbackCredentialCommand) UnsetOrganizationId()

UnsetOrganizationId ensures that no value is present for OrganizationId, not even an explicit nil

func (*CreateShowbackCredentialCommand) UnsetPassword

func (o *CreateShowbackCredentialCommand) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*CreateShowbackCredentialCommand) UnsetUrl

func (o *CreateShowbackCredentialCommand) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

func (*CreateShowbackCredentialCommand) UnsetUsername

func (o *CreateShowbackCredentialCommand) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type CreateShowbackRuleCommand

type CreateShowbackRuleCommand struct {
	Name                 NullableString           `json:"name,omitempty"`
	MetricName           NullableString           `json:"metricName,omitempty"`
	ByLabel              NullableString           `json:"byLabel,omitempty"`
	Kind                 *EShowbackType           `json:"kind,omitempty"`
	Type                 *EPrometheusType         `json:"type,omitempty"`
	Price                NullableFloat64          `json:"price,omitempty"`
	ProjectAlertLimit    NullableInt32            `json:"projectAlertLimit,omitempty"`
	GlobalAlertLimit     NullableInt32            `json:"globalAlertLimit,omitempty"`
	OrganizationId       NullableInt32            `json:"organizationId,omitempty"`
	Labels               []ShowbackLabelCreateDto `json:"labels,omitempty"`
	ShowbackCredentialId NullableInt32            `json:"showbackCredentialId,omitempty"`
}

CreateShowbackRuleCommand struct for CreateShowbackRuleCommand

func NewCreateShowbackRuleCommand

func NewCreateShowbackRuleCommand() *CreateShowbackRuleCommand

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

func NewCreateShowbackRuleCommandWithDefaults

func NewCreateShowbackRuleCommandWithDefaults() *CreateShowbackRuleCommand

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

func (*CreateShowbackRuleCommand) GetByLabel

func (o *CreateShowbackRuleCommand) GetByLabel() string

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

func (*CreateShowbackRuleCommand) GetByLabelOk

func (o *CreateShowbackRuleCommand) GetByLabelOk() (*string, bool)

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

func (*CreateShowbackRuleCommand) GetGlobalAlertLimit

func (o *CreateShowbackRuleCommand) GetGlobalAlertLimit() int32

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

func (*CreateShowbackRuleCommand) GetGlobalAlertLimitOk

func (o *CreateShowbackRuleCommand) GetGlobalAlertLimitOk() (*int32, bool)

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

func (*CreateShowbackRuleCommand) GetKind

GetKind returns the Kind field value if set, zero value otherwise.

func (*CreateShowbackRuleCommand) GetKindOk

func (o *CreateShowbackRuleCommand) GetKindOk() (*EShowbackType, bool)

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

func (*CreateShowbackRuleCommand) GetLabels

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

func (*CreateShowbackRuleCommand) GetLabelsOk

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

func (*CreateShowbackRuleCommand) GetMetricName

func (o *CreateShowbackRuleCommand) GetMetricName() string

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

func (*CreateShowbackRuleCommand) GetMetricNameOk

func (o *CreateShowbackRuleCommand) GetMetricNameOk() (*string, bool)

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

func (*CreateShowbackRuleCommand) GetName

func (o *CreateShowbackRuleCommand) GetName() string

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

func (*CreateShowbackRuleCommand) GetNameOk

func (o *CreateShowbackRuleCommand) 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 (*CreateShowbackRuleCommand) GetOrganizationId

func (o *CreateShowbackRuleCommand) GetOrganizationId() int32

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

func (*CreateShowbackRuleCommand) GetOrganizationIdOk

func (o *CreateShowbackRuleCommand) GetOrganizationIdOk() (*int32, bool)

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

func (*CreateShowbackRuleCommand) GetPrice

func (o *CreateShowbackRuleCommand) GetPrice() float64

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

func (*CreateShowbackRuleCommand) GetPriceOk

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

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

func (*CreateShowbackRuleCommand) GetProjectAlertLimit

func (o *CreateShowbackRuleCommand) GetProjectAlertLimit() int32

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

func (*CreateShowbackRuleCommand) GetProjectAlertLimitOk

func (o *CreateShowbackRuleCommand) GetProjectAlertLimitOk() (*int32, bool)

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

func (*CreateShowbackRuleCommand) GetShowbackCredentialId

func (o *CreateShowbackRuleCommand) GetShowbackCredentialId() int32

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

func (*CreateShowbackRuleCommand) GetShowbackCredentialIdOk

func (o *CreateShowbackRuleCommand) GetShowbackCredentialIdOk() (*int32, bool)

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

func (*CreateShowbackRuleCommand) GetType

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

func (*CreateShowbackRuleCommand) GetTypeOk

func (o *CreateShowbackRuleCommand) GetTypeOk() (*EPrometheusType, 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 (*CreateShowbackRuleCommand) HasByLabel

func (o *CreateShowbackRuleCommand) HasByLabel() bool

HasByLabel returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasGlobalAlertLimit

func (o *CreateShowbackRuleCommand) HasGlobalAlertLimit() bool

HasGlobalAlertLimit returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasKind

func (o *CreateShowbackRuleCommand) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasLabels

func (o *CreateShowbackRuleCommand) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasMetricName

func (o *CreateShowbackRuleCommand) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasName

func (o *CreateShowbackRuleCommand) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasOrganizationId

func (o *CreateShowbackRuleCommand) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasPrice

func (o *CreateShowbackRuleCommand) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasProjectAlertLimit

func (o *CreateShowbackRuleCommand) HasProjectAlertLimit() bool

HasProjectAlertLimit returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasShowbackCredentialId

func (o *CreateShowbackRuleCommand) HasShowbackCredentialId() bool

HasShowbackCredentialId returns a boolean if a field has been set.

func (*CreateShowbackRuleCommand) HasType

func (o *CreateShowbackRuleCommand) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateShowbackRuleCommand) MarshalJSON

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

func (*CreateShowbackRuleCommand) SetByLabel

func (o *CreateShowbackRuleCommand) SetByLabel(v string)

SetByLabel gets a reference to the given NullableString and assigns it to the ByLabel field.

func (*CreateShowbackRuleCommand) SetByLabelNil

func (o *CreateShowbackRuleCommand) SetByLabelNil()

SetByLabelNil sets the value for ByLabel to be an explicit nil

func (*CreateShowbackRuleCommand) SetGlobalAlertLimit

func (o *CreateShowbackRuleCommand) SetGlobalAlertLimit(v int32)

SetGlobalAlertLimit gets a reference to the given NullableInt32 and assigns it to the GlobalAlertLimit field.

func (*CreateShowbackRuleCommand) SetGlobalAlertLimitNil

func (o *CreateShowbackRuleCommand) SetGlobalAlertLimitNil()

SetGlobalAlertLimitNil sets the value for GlobalAlertLimit to be an explicit nil

func (*CreateShowbackRuleCommand) SetKind

SetKind gets a reference to the given EShowbackType and assigns it to the Kind field.

func (*CreateShowbackRuleCommand) SetLabels

SetLabels gets a reference to the given []ShowbackLabelCreateDto and assigns it to the Labels field.

func (*CreateShowbackRuleCommand) SetMetricName

func (o *CreateShowbackRuleCommand) SetMetricName(v string)

SetMetricName gets a reference to the given NullableString and assigns it to the MetricName field.

func (*CreateShowbackRuleCommand) SetMetricNameNil

func (o *CreateShowbackRuleCommand) SetMetricNameNil()

SetMetricNameNil sets the value for MetricName to be an explicit nil

func (*CreateShowbackRuleCommand) SetName

func (o *CreateShowbackRuleCommand) SetName(v string)

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

func (*CreateShowbackRuleCommand) SetNameNil

func (o *CreateShowbackRuleCommand) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateShowbackRuleCommand) SetOrganizationId

func (o *CreateShowbackRuleCommand) SetOrganizationId(v int32)

SetOrganizationId gets a reference to the given NullableInt32 and assigns it to the OrganizationId field.

func (*CreateShowbackRuleCommand) SetOrganizationIdNil

func (o *CreateShowbackRuleCommand) SetOrganizationIdNil()

SetOrganizationIdNil sets the value for OrganizationId to be an explicit nil

func (*CreateShowbackRuleCommand) SetPrice

func (o *CreateShowbackRuleCommand) SetPrice(v float64)

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

func (*CreateShowbackRuleCommand) SetPriceNil

func (o *CreateShowbackRuleCommand) SetPriceNil()

SetPriceNil sets the value for Price to be an explicit nil

func (*CreateShowbackRuleCommand) SetProjectAlertLimit

func (o *CreateShowbackRuleCommand) SetProjectAlertLimit(v int32)

SetProjectAlertLimit gets a reference to the given NullableInt32 and assigns it to the ProjectAlertLimit field.

func (*CreateShowbackRuleCommand) SetProjectAlertLimitNil

func (o *CreateShowbackRuleCommand) SetProjectAlertLimitNil()

SetProjectAlertLimitNil sets the value for ProjectAlertLimit to be an explicit nil

func (*CreateShowbackRuleCommand) SetShowbackCredentialId

func (o *CreateShowbackRuleCommand) SetShowbackCredentialId(v int32)

SetShowbackCredentialId gets a reference to the given NullableInt32 and assigns it to the ShowbackCredentialId field.

func (*CreateShowbackRuleCommand) SetShowbackCredentialIdNil

func (o *CreateShowbackRuleCommand) SetShowbackCredentialIdNil()

SetShowbackCredentialIdNil sets the value for ShowbackCredentialId to be an explicit nil

func (*CreateShowbackRuleCommand) SetType

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

func (CreateShowbackRuleCommand) ToMap

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

func (*CreateShowbackRuleCommand) UnsetByLabel

func (o *CreateShowbackRuleCommand) UnsetByLabel()

UnsetByLabel ensures that no value is present for ByLabel, not even an explicit nil

func (*CreateShowbackRuleCommand) UnsetGlobalAlertLimit

func (o *CreateShowbackRuleCommand) UnsetGlobalAlertLimit()

UnsetGlobalAlertLimit ensures that no value is present for GlobalAlertLimit, not even an explicit nil

func (*CreateShowbackRuleCommand) UnsetMetricName

func (o *CreateShowbackRuleCommand) UnsetMetricName()

UnsetMetricName ensures that no value is present for MetricName, not even an explicit nil

func (*CreateShowbackRuleCommand) UnsetName

func (o *CreateShowbackRuleCommand) UnsetName()

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

func (*CreateShowbackRuleCommand) UnsetOrganizationId

func (o *CreateShowbackRuleCommand) UnsetOrganizationId()

UnsetOrganizationId ensures that no value is present for OrganizationId, not even an explicit nil

func (*CreateShowbackRuleCommand) UnsetPrice

func (o *CreateShowbackRuleCommand) UnsetPrice()

UnsetPrice ensures that no value is present for Price, not even an explicit nil

func (*CreateShowbackRuleCommand) UnsetProjectAlertLimit

func (o *CreateShowbackRuleCommand) UnsetProjectAlertLimit()

UnsetProjectAlertLimit ensures that no value is present for ProjectAlertLimit, not even an explicit nil

func (*CreateShowbackRuleCommand) UnsetShowbackCredentialId

func (o *CreateShowbackRuleCommand) UnsetShowbackCredentialId()

UnsetShowbackCredentialId ensures that no value is present for ShowbackCredentialId, not even an explicit nil

type CreateShowbackSummaryCommand

type CreateShowbackSummaryCommand struct {
	BeginApply     *time.Time     `json:"beginApply,omitempty"`
	Price          *float64       `json:"price,omitempty"`
	ShowbackRuleId *int32         `json:"showbackRuleId,omitempty"`
	ProjectId      NullableInt32  `json:"projectId,omitempty"`
	ByLabelValue   NullableString `json:"byLabelValue,omitempty"`
}

CreateShowbackSummaryCommand struct for CreateShowbackSummaryCommand

func NewCreateShowbackSummaryCommand

func NewCreateShowbackSummaryCommand() *CreateShowbackSummaryCommand

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

func NewCreateShowbackSummaryCommandWithDefaults

func NewCreateShowbackSummaryCommandWithDefaults() *CreateShowbackSummaryCommand

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

func (*CreateShowbackSummaryCommand) GetBeginApply

func (o *CreateShowbackSummaryCommand) GetBeginApply() time.Time

GetBeginApply returns the BeginApply field value if set, zero value otherwise.

func (*CreateShowbackSummaryCommand) GetBeginApplyOk

func (o *CreateShowbackSummaryCommand) GetBeginApplyOk() (*time.Time, bool)

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

func (*CreateShowbackSummaryCommand) GetByLabelValue

func (o *CreateShowbackSummaryCommand) GetByLabelValue() string

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

func (*CreateShowbackSummaryCommand) GetByLabelValueOk

func (o *CreateShowbackSummaryCommand) GetByLabelValueOk() (*string, bool)

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

func (*CreateShowbackSummaryCommand) GetPrice

func (o *CreateShowbackSummaryCommand) GetPrice() float64

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

func (*CreateShowbackSummaryCommand) GetPriceOk

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

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

func (*CreateShowbackSummaryCommand) GetProjectId

func (o *CreateShowbackSummaryCommand) GetProjectId() int32

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

func (*CreateShowbackSummaryCommand) GetProjectIdOk

func (o *CreateShowbackSummaryCommand) GetProjectIdOk() (*int32, bool)

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

func (*CreateShowbackSummaryCommand) GetShowbackRuleId

func (o *CreateShowbackSummaryCommand) GetShowbackRuleId() int32

GetShowbackRuleId returns the ShowbackRuleId field value if set, zero value otherwise.

func (*CreateShowbackSummaryCommand) GetShowbackRuleIdOk

func (o *CreateShowbackSummaryCommand) GetShowbackRuleIdOk() (*int32, bool)

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

func (*CreateShowbackSummaryCommand) HasBeginApply

func (o *CreateShowbackSummaryCommand) HasBeginApply() bool

HasBeginApply returns a boolean if a field has been set.

func (*CreateShowbackSummaryCommand) HasByLabelValue

func (o *CreateShowbackSummaryCommand) HasByLabelValue() bool

HasByLabelValue returns a boolean if a field has been set.

func (*CreateShowbackSummaryCommand) HasPrice

func (o *CreateShowbackSummaryCommand) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateShowbackSummaryCommand) HasProjectId

func (o *CreateShowbackSummaryCommand) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*CreateShowbackSummaryCommand) HasShowbackRuleId

func (o *CreateShowbackSummaryCommand) HasShowbackRuleId() bool

HasShowbackRuleId returns a boolean if a field has been set.

func (CreateShowbackSummaryCommand) MarshalJSON

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

func (*CreateShowbackSummaryCommand) SetBeginApply

func (o *CreateShowbackSummaryCommand) SetBeginApply(v time.Time)

SetBeginApply gets a reference to the given time.Time and assigns it to the BeginApply field.

func (*CreateShowbackSummaryCommand) SetByLabelValue

func (o *CreateShowbackSummaryCommand) SetByLabelValue(v string)

SetByLabelValue gets a reference to the given NullableString and assigns it to the ByLabelValue field.

func (*CreateShowbackSummaryCommand) SetByLabelValueNil

func (o *CreateShowbackSummaryCommand) SetByLabelValueNil()

SetByLabelValueNil sets the value for ByLabelValue to be an explicit nil

func (*CreateShowbackSummaryCommand) SetPrice

func (o *CreateShowbackSummaryCommand) SetPrice(v float64)

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

func (*CreateShowbackSummaryCommand) SetProjectId

func (o *CreateShowbackSummaryCommand) SetProjectId(v int32)

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

func (*CreateShowbackSummaryCommand) SetProjectIdNil

func (o *CreateShowbackSummaryCommand) SetProjectIdNil()

SetProjectIdNil sets the value for ProjectId to be an explicit nil

func (*CreateShowbackSummaryCommand) SetShowbackRuleId

func (o *CreateShowbackSummaryCommand) SetShowbackRuleId(v int32)

SetShowbackRuleId gets a reference to the given int32 and assigns it to the ShowbackRuleId field.

func (CreateShowbackSummaryCommand) ToMap

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

func (*CreateShowbackSummaryCommand) UnsetByLabelValue

func (o *CreateShowbackSummaryCommand) UnsetByLabelValue()

UnsetByLabelValue ensures that no value is present for ByLabelValue, not even an explicit nil

func (*CreateShowbackSummaryCommand) UnsetProjectId

func (o *CreateShowbackSummaryCommand) UnsetProjectId()

UnsetProjectId ensures that no value is present for ProjectId, not even an explicit nil

type CsvExporter

type CsvExporter struct {
	FileName    NullableString `json:"fileName,omitempty"`
	ContentType NullableString `json:"contentType,omitempty"`
	Content     NullableString `json:"content,omitempty"`
}

CsvExporter struct for CsvExporter

func NewCsvExporter

func NewCsvExporter() *CsvExporter

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

func NewCsvExporterWithDefaults

func NewCsvExporterWithDefaults() *CsvExporter

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

func (*CsvExporter) GetContent

func (o *CsvExporter) GetContent() string

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

func (*CsvExporter) GetContentOk

func (o *CsvExporter) 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 (*CsvExporter) GetContentType

func (o *CsvExporter) GetContentType() string

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

func (*CsvExporter) GetContentTypeOk

func (o *CsvExporter) GetContentTypeOk() (*string, bool)

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

func (*CsvExporter) GetFileName

func (o *CsvExporter) GetFileName() string

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

func (*CsvExporter) GetFileNameOk

func (o *CsvExporter) 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 (*CsvExporter) HasContent

func (o *CsvExporter) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*CsvExporter) HasContentType

func (o *CsvExporter) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*CsvExporter) HasFileName

func (o *CsvExporter) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (CsvExporter) MarshalJSON

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

func (*CsvExporter) SetContent

func (o *CsvExporter) SetContent(v string)

SetContent gets a reference to the given NullableString and assigns it to the Content field.

func (*CsvExporter) SetContentNil

func (o *CsvExporter) SetContentNil()

SetContentNil sets the value for Content to be an explicit nil

func (*CsvExporter) SetContentType

func (o *CsvExporter) SetContentType(v string)

SetContentType gets a reference to the given NullableString and assigns it to the ContentType field.

func (*CsvExporter) SetContentTypeNil

func (o *CsvExporter) SetContentTypeNil()

SetContentTypeNil sets the value for ContentType to be an explicit nil

func (*CsvExporter) SetFileName

func (o *CsvExporter) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*CsvExporter) SetFileNameNil

func (o *CsvExporter) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (CsvExporter) ToMap

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

func (*CsvExporter) UnsetContent

func (o *CsvExporter) UnsetContent()

UnsetContent ensures that no value is present for Content, not even an explicit nil

func (*CsvExporter) UnsetContentType

func (o *CsvExporter) UnsetContentType()

UnsetContentType ensures that no value is present for ContentType, not even an explicit nil

func (*CsvExporter) UnsetFileName

func (o *CsvExporter) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

type DeleteRulesCommand

type DeleteRulesCommand struct {
	Ids []int32 `json:"ids,omitempty"`
}

DeleteRulesCommand struct for DeleteRulesCommand

func NewDeleteRulesCommand

func NewDeleteRulesCommand() *DeleteRulesCommand

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

func NewDeleteRulesCommandWithDefaults

func NewDeleteRulesCommandWithDefaults() *DeleteRulesCommand

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

func (*DeleteRulesCommand) GetIds

func (o *DeleteRulesCommand) GetIds() []int32

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

func (*DeleteRulesCommand) GetIdsOk

func (o *DeleteRulesCommand) GetIdsOk() ([]int32, bool)

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

func (*DeleteRulesCommand) HasIds

func (o *DeleteRulesCommand) HasIds() bool

HasIds returns a boolean if a field has been set.

func (DeleteRulesCommand) MarshalJSON

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

func (*DeleteRulesCommand) SetIds

func (o *DeleteRulesCommand) SetIds(v []int32)

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

func (DeleteRulesCommand) ToMap

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

type EPrometheusType

type EPrometheusType string

EPrometheusType the model 'EPrometheusType'

const (
	EPROMETHEUSTYPE_COUNT EPrometheusType = "Count"
	EPROMETHEUSTYPE_SUM   EPrometheusType = "Sum"
)

List of EPrometheusType

func NewEPrometheusTypeFromValue

func NewEPrometheusTypeFromValue(v string) (*EPrometheusType, error)

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

func (EPrometheusType) IsValid

func (v EPrometheusType) IsValid() bool

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

func (EPrometheusType) Ptr

Ptr returns reference to EPrometheusType value

func (*EPrometheusType) UnmarshalJSON

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

type EShowbackType

type EShowbackType string

EShowbackType the model 'EShowbackType'

const (
	ESHOWBACKTYPE_GENERAL  EShowbackType = "General"
	ESHOWBACKTYPE_EXTERNAL EShowbackType = "External"
)

List of EShowbackType

func NewEShowbackTypeFromValue

func NewEShowbackTypeFromValue(v string) (*EShowbackType, error)

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

func (EShowbackType) IsValid

func (v EShowbackType) IsValid() bool

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

func (EShowbackType) Ptr

func (v EShowbackType) Ptr() *EShowbackType

Ptr returns reference to EShowbackType value

func (*EShowbackType) UnmarshalJSON

func (v *EShowbackType) UnmarshalJSON(src []byte) 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 GroupedCredentialForShowbackSummary

type GroupedCredentialForShowbackSummary struct {
	Id        NullableInt32  `json:"id,omitempty"`
	ProjectId NullableInt32  `json:"projectId,omitempty"`
	Name      NullableString `json:"name,omitempty"`
}

GroupedCredentialForShowbackSummary struct for GroupedCredentialForShowbackSummary

func NewGroupedCredentialForShowbackSummary

func NewGroupedCredentialForShowbackSummary() *GroupedCredentialForShowbackSummary

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

func NewGroupedCredentialForShowbackSummaryWithDefaults

func NewGroupedCredentialForShowbackSummaryWithDefaults() *GroupedCredentialForShowbackSummary

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

func (*GroupedCredentialForShowbackSummary) GetId

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

func (*GroupedCredentialForShowbackSummary) GetIdOk

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 (*GroupedCredentialForShowbackSummary) GetName

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

func (*GroupedCredentialForShowbackSummary) GetNameOk

func (o *GroupedCredentialForShowbackSummary) 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 (*GroupedCredentialForShowbackSummary) GetProjectId

func (o *GroupedCredentialForShowbackSummary) GetProjectId() int32

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

func (*GroupedCredentialForShowbackSummary) GetProjectIdOk

func (o *GroupedCredentialForShowbackSummary) GetProjectIdOk() (*int32, bool)

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

func (*GroupedCredentialForShowbackSummary) HasId

HasId returns a boolean if a field has been set.

func (*GroupedCredentialForShowbackSummary) HasName

HasName returns a boolean if a field has been set.

func (*GroupedCredentialForShowbackSummary) HasProjectId

func (o *GroupedCredentialForShowbackSummary) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (GroupedCredentialForShowbackSummary) MarshalJSON

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

func (*GroupedCredentialForShowbackSummary) SetId

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

func (*GroupedCredentialForShowbackSummary) SetIdNil

SetIdNil sets the value for Id to be an explicit nil

func (*GroupedCredentialForShowbackSummary) SetName

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

func (*GroupedCredentialForShowbackSummary) SetNameNil

func (o *GroupedCredentialForShowbackSummary) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GroupedCredentialForShowbackSummary) SetProjectId

func (o *GroupedCredentialForShowbackSummary) SetProjectId(v int32)

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

func (*GroupedCredentialForShowbackSummary) SetProjectIdNil

func (o *GroupedCredentialForShowbackSummary) SetProjectIdNil()

SetProjectIdNil sets the value for ProjectId to be an explicit nil

func (GroupedCredentialForShowbackSummary) ToMap

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

func (*GroupedCredentialForShowbackSummary) UnsetId

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

func (*GroupedCredentialForShowbackSummary) UnsetName

func (o *GroupedCredentialForShowbackSummary) UnsetName()

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

func (*GroupedCredentialForShowbackSummary) UnsetProjectId

func (o *GroupedCredentialForShowbackSummary) UnsetProjectId()

UnsetProjectId ensures that no value is present for ProjectId, not even an explicit nil

type GroupedProjectForShowbackSummary

type GroupedProjectForShowbackSummary struct {
	Id         NullableInt32  `json:"id,omitempty"`
	Name       NullableString `json:"name,omitempty"`
	TotalPrice *float64       `json:"totalPrice,omitempty"`
	IsDeleted  NullableBool   `json:"isDeleted,omitempty"`
}

GroupedProjectForShowbackSummary struct for GroupedProjectForShowbackSummary

func NewGroupedProjectForShowbackSummary

func NewGroupedProjectForShowbackSummary() *GroupedProjectForShowbackSummary

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

func NewGroupedProjectForShowbackSummaryWithDefaults

func NewGroupedProjectForShowbackSummaryWithDefaults() *GroupedProjectForShowbackSummary

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

func (*GroupedProjectForShowbackSummary) GetId

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

func (*GroupedProjectForShowbackSummary) GetIdOk

func (o *GroupedProjectForShowbackSummary) GetIdOk() (*int32, 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 (*GroupedProjectForShowbackSummary) GetIsDeleted

func (o *GroupedProjectForShowbackSummary) GetIsDeleted() bool

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

func (*GroupedProjectForShowbackSummary) GetIsDeletedOk

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

func (*GroupedProjectForShowbackSummary) GetName

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

func (*GroupedProjectForShowbackSummary) GetNameOk

func (o *GroupedProjectForShowbackSummary) 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 (*GroupedProjectForShowbackSummary) GetTotalPrice

func (o *GroupedProjectForShowbackSummary) GetTotalPrice() float64

GetTotalPrice returns the TotalPrice field value if set, zero value otherwise.

func (*GroupedProjectForShowbackSummary) GetTotalPriceOk

func (o *GroupedProjectForShowbackSummary) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedProjectForShowbackSummary) HasId

HasId returns a boolean if a field has been set.

func (*GroupedProjectForShowbackSummary) HasIsDeleted

func (o *GroupedProjectForShowbackSummary) HasIsDeleted() bool

HasIsDeleted returns a boolean if a field has been set.

func (*GroupedProjectForShowbackSummary) HasName

HasName returns a boolean if a field has been set.

func (*GroupedProjectForShowbackSummary) HasTotalPrice

func (o *GroupedProjectForShowbackSummary) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedProjectForShowbackSummary) MarshalJSON

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

func (*GroupedProjectForShowbackSummary) SetId

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

func (*GroupedProjectForShowbackSummary) SetIdNil

func (o *GroupedProjectForShowbackSummary) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*GroupedProjectForShowbackSummary) SetIsDeleted

func (o *GroupedProjectForShowbackSummary) SetIsDeleted(v bool)

SetIsDeleted gets a reference to the given NullableBool and assigns it to the IsDeleted field.

func (*GroupedProjectForShowbackSummary) SetIsDeletedNil

func (o *GroupedProjectForShowbackSummary) SetIsDeletedNil()

SetIsDeletedNil sets the value for IsDeleted to be an explicit nil

func (*GroupedProjectForShowbackSummary) SetName

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

func (*GroupedProjectForShowbackSummary) SetNameNil

func (o *GroupedProjectForShowbackSummary) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GroupedProjectForShowbackSummary) SetTotalPrice

func (o *GroupedProjectForShowbackSummary) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given float64 and assigns it to the TotalPrice field.

func (GroupedProjectForShowbackSummary) ToMap

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

func (*GroupedProjectForShowbackSummary) UnsetId

func (o *GroupedProjectForShowbackSummary) UnsetId()

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

func (*GroupedProjectForShowbackSummary) UnsetIsDeleted

func (o *GroupedProjectForShowbackSummary) UnsetIsDeleted()

UnsetIsDeleted ensures that no value is present for IsDeleted, not even an explicit nil

func (*GroupedProjectForShowbackSummary) UnsetName

func (o *GroupedProjectForShowbackSummary) UnsetName()

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

type GroupedShowbackByLabelList

type GroupedShowbackByLabelList struct {
	ByLabelValues []GroupedShowbackSummaryByLabelInfo `json:"byLabelValues,omitempty"`
}

GroupedShowbackByLabelList struct for GroupedShowbackByLabelList

func NewGroupedShowbackByLabelList

func NewGroupedShowbackByLabelList() *GroupedShowbackByLabelList

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

func NewGroupedShowbackByLabelListWithDefaults

func NewGroupedShowbackByLabelListWithDefaults() *GroupedShowbackByLabelList

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

func (*GroupedShowbackByLabelList) GetByLabelValues

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

func (*GroupedShowbackByLabelList) GetByLabelValuesOk

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

func (*GroupedShowbackByLabelList) HasByLabelValues

func (o *GroupedShowbackByLabelList) HasByLabelValues() bool

HasByLabelValues returns a boolean if a field has been set.

func (GroupedShowbackByLabelList) MarshalJSON

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

func (*GroupedShowbackByLabelList) SetByLabelValues

SetByLabelValues gets a reference to the given []GroupedShowbackSummaryByLabelInfo and assigns it to the ByLabelValues field.

func (GroupedShowbackByLabelList) ToMap

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

type GroupedShowbackByProjectList

type GroupedShowbackByProjectList struct {
	ByProjects []GroupedShowbackSummaryByProjectInfos `json:"byProjects,omitempty"`
}

GroupedShowbackByProjectList struct for GroupedShowbackByProjectList

func NewGroupedShowbackByProjectList

func NewGroupedShowbackByProjectList() *GroupedShowbackByProjectList

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

func NewGroupedShowbackByProjectListWithDefaults

func NewGroupedShowbackByProjectListWithDefaults() *GroupedShowbackByProjectList

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

func (*GroupedShowbackByProjectList) GetByProjects

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

func (*GroupedShowbackByProjectList) GetByProjectsOk

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

func (*GroupedShowbackByProjectList) HasByProjects

func (o *GroupedShowbackByProjectList) HasByProjects() bool

HasByProjects returns a boolean if a field has been set.

func (GroupedShowbackByProjectList) MarshalJSON

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

func (*GroupedShowbackByProjectList) SetByProjects

SetByProjects gets a reference to the given []GroupedShowbackSummaryByProjectInfos and assigns it to the ByProjects field.

func (GroupedShowbackByProjectList) ToMap

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

type GroupedShowbackList

type GroupedShowbackList struct {
	Projects      []GroupedShowbackSummaryInfos `json:"projects,omitempty"`
	Credentials   []GroupedShowbackSummaryInfos `json:"credentials,omitempty"`
	ByLabelValues []GroupedShowbackSummaryInfos `json:"byLabelValues,omitempty"`
}

GroupedShowbackList struct for GroupedShowbackList

func NewGroupedShowbackList

func NewGroupedShowbackList() *GroupedShowbackList

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

func NewGroupedShowbackListWithDefaults

func NewGroupedShowbackListWithDefaults() *GroupedShowbackList

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

func (*GroupedShowbackList) GetByLabelValues

func (o *GroupedShowbackList) GetByLabelValues() []GroupedShowbackSummaryInfos

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

func (*GroupedShowbackList) GetByLabelValuesOk

func (o *GroupedShowbackList) GetByLabelValuesOk() ([]GroupedShowbackSummaryInfos, bool)

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

func (*GroupedShowbackList) GetCredentials

func (o *GroupedShowbackList) GetCredentials() []GroupedShowbackSummaryInfos

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

func (*GroupedShowbackList) GetCredentialsOk

func (o *GroupedShowbackList) GetCredentialsOk() ([]GroupedShowbackSummaryInfos, bool)

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

func (*GroupedShowbackList) GetProjects

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

func (*GroupedShowbackList) GetProjectsOk

func (o *GroupedShowbackList) GetProjectsOk() ([]GroupedShowbackSummaryInfos, bool)

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

func (*GroupedShowbackList) HasByLabelValues

func (o *GroupedShowbackList) HasByLabelValues() bool

HasByLabelValues returns a boolean if a field has been set.

func (*GroupedShowbackList) HasCredentials

func (o *GroupedShowbackList) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*GroupedShowbackList) HasProjects

func (o *GroupedShowbackList) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (GroupedShowbackList) MarshalJSON

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

func (*GroupedShowbackList) SetByLabelValues

func (o *GroupedShowbackList) SetByLabelValues(v []GroupedShowbackSummaryInfos)

SetByLabelValues gets a reference to the given []GroupedShowbackSummaryInfos and assigns it to the ByLabelValues field.

func (*GroupedShowbackList) SetCredentials

func (o *GroupedShowbackList) SetCredentials(v []GroupedShowbackSummaryInfos)

SetCredentials gets a reference to the given []GroupedShowbackSummaryInfos and assigns it to the Credentials field.

func (*GroupedShowbackList) SetProjects

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

func (GroupedShowbackList) ToMap

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

type GroupedShowbackSummaries

type GroupedShowbackSummaries struct {
	StartDate NullableString `json:"startDate,omitempty"`
	Price     *float64       `json:"price,omitempty"`
}

GroupedShowbackSummaries struct for GroupedShowbackSummaries

func NewGroupedShowbackSummaries

func NewGroupedShowbackSummaries() *GroupedShowbackSummaries

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

func NewGroupedShowbackSummariesWithDefaults

func NewGroupedShowbackSummariesWithDefaults() *GroupedShowbackSummaries

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

func (*GroupedShowbackSummaries) GetPrice

func (o *GroupedShowbackSummaries) GetPrice() float64

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

func (*GroupedShowbackSummaries) GetPriceOk

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

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

func (*GroupedShowbackSummaries) GetStartDate

func (o *GroupedShowbackSummaries) GetStartDate() string

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

func (*GroupedShowbackSummaries) GetStartDateOk

func (o *GroupedShowbackSummaries) GetStartDateOk() (*string, bool)

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

func (*GroupedShowbackSummaries) HasPrice

func (o *GroupedShowbackSummaries) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GroupedShowbackSummaries) HasStartDate

func (o *GroupedShowbackSummaries) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (GroupedShowbackSummaries) MarshalJSON

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

func (*GroupedShowbackSummaries) SetPrice

func (o *GroupedShowbackSummaries) SetPrice(v float64)

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

func (*GroupedShowbackSummaries) SetStartDate

func (o *GroupedShowbackSummaries) SetStartDate(v string)

SetStartDate gets a reference to the given NullableString and assigns it to the StartDate field.

func (*GroupedShowbackSummaries) SetStartDateNil

func (o *GroupedShowbackSummaries) SetStartDateNil()

SetStartDateNil sets the value for StartDate to be an explicit nil

func (GroupedShowbackSummaries) ToMap

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

func (*GroupedShowbackSummaries) UnsetStartDate

func (o *GroupedShowbackSummaries) UnsetStartDate()

UnsetStartDate ensures that no value is present for StartDate, not even an explicit nil

type GroupedShowbackSummariesByLabelDto

type GroupedShowbackSummariesByLabelDto struct {
	ByLabel    NullableString  `json:"byLabel,omitempty"`
	TotalPrice NullableFloat64 `json:"totalPrice,omitempty"`
}

GroupedShowbackSummariesByLabelDto struct for GroupedShowbackSummariesByLabelDto

func NewGroupedShowbackSummariesByLabelDto

func NewGroupedShowbackSummariesByLabelDto() *GroupedShowbackSummariesByLabelDto

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

func NewGroupedShowbackSummariesByLabelDtoWithDefaults

func NewGroupedShowbackSummariesByLabelDtoWithDefaults() *GroupedShowbackSummariesByLabelDto

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

func (*GroupedShowbackSummariesByLabelDto) GetByLabel

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

func (*GroupedShowbackSummariesByLabelDto) GetByLabelOk

func (o *GroupedShowbackSummariesByLabelDto) GetByLabelOk() (*string, bool)

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

func (*GroupedShowbackSummariesByLabelDto) GetTotalPrice

func (o *GroupedShowbackSummariesByLabelDto) GetTotalPrice() float64

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

func (*GroupedShowbackSummariesByLabelDto) GetTotalPriceOk

func (o *GroupedShowbackSummariesByLabelDto) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedShowbackSummariesByLabelDto) HasByLabel

func (o *GroupedShowbackSummariesByLabelDto) HasByLabel() bool

HasByLabel returns a boolean if a field has been set.

func (*GroupedShowbackSummariesByLabelDto) HasTotalPrice

func (o *GroupedShowbackSummariesByLabelDto) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedShowbackSummariesByLabelDto) MarshalJSON

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

func (*GroupedShowbackSummariesByLabelDto) SetByLabel

func (o *GroupedShowbackSummariesByLabelDto) SetByLabel(v string)

SetByLabel gets a reference to the given NullableString and assigns it to the ByLabel field.

func (*GroupedShowbackSummariesByLabelDto) SetByLabelNil

func (o *GroupedShowbackSummariesByLabelDto) SetByLabelNil()

SetByLabelNil sets the value for ByLabel to be an explicit nil

func (*GroupedShowbackSummariesByLabelDto) SetTotalPrice

func (o *GroupedShowbackSummariesByLabelDto) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given NullableFloat64 and assigns it to the TotalPrice field.

func (*GroupedShowbackSummariesByLabelDto) SetTotalPriceNil

func (o *GroupedShowbackSummariesByLabelDto) SetTotalPriceNil()

SetTotalPriceNil sets the value for TotalPrice to be an explicit nil

func (GroupedShowbackSummariesByLabelDto) ToMap

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

func (*GroupedShowbackSummariesByLabelDto) UnsetByLabel

func (o *GroupedShowbackSummariesByLabelDto) UnsetByLabel()

UnsetByLabel ensures that no value is present for ByLabel, not even an explicit nil

func (*GroupedShowbackSummariesByLabelDto) UnsetTotalPrice

func (o *GroupedShowbackSummariesByLabelDto) UnsetTotalPrice()

UnsetTotalPrice ensures that no value is present for TotalPrice, not even an explicit nil

type GroupedShowbackSummariesByProjectDto

type GroupedShowbackSummariesByProjectDto struct {
	ProjectName NullableString  `json:"projectName,omitempty"`
	TotalPrice  NullableFloat64 `json:"totalPrice,omitempty"`
}

GroupedShowbackSummariesByProjectDto struct for GroupedShowbackSummariesByProjectDto

func NewGroupedShowbackSummariesByProjectDto

func NewGroupedShowbackSummariesByProjectDto() *GroupedShowbackSummariesByProjectDto

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

func NewGroupedShowbackSummariesByProjectDtoWithDefaults

func NewGroupedShowbackSummariesByProjectDtoWithDefaults() *GroupedShowbackSummariesByProjectDto

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

func (*GroupedShowbackSummariesByProjectDto) GetProjectName

func (o *GroupedShowbackSummariesByProjectDto) GetProjectName() string

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

func (*GroupedShowbackSummariesByProjectDto) GetProjectNameOk

func (o *GroupedShowbackSummariesByProjectDto) GetProjectNameOk() (*string, bool)

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

func (*GroupedShowbackSummariesByProjectDto) GetTotalPrice

func (o *GroupedShowbackSummariesByProjectDto) GetTotalPrice() float64

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

func (*GroupedShowbackSummariesByProjectDto) GetTotalPriceOk

func (o *GroupedShowbackSummariesByProjectDto) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedShowbackSummariesByProjectDto) HasProjectName

func (o *GroupedShowbackSummariesByProjectDto) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (*GroupedShowbackSummariesByProjectDto) HasTotalPrice

func (o *GroupedShowbackSummariesByProjectDto) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedShowbackSummariesByProjectDto) MarshalJSON

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

func (*GroupedShowbackSummariesByProjectDto) SetProjectName

func (o *GroupedShowbackSummariesByProjectDto) SetProjectName(v string)

SetProjectName gets a reference to the given NullableString and assigns it to the ProjectName field.

func (*GroupedShowbackSummariesByProjectDto) SetProjectNameNil

func (o *GroupedShowbackSummariesByProjectDto) SetProjectNameNil()

SetProjectNameNil sets the value for ProjectName to be an explicit nil

func (*GroupedShowbackSummariesByProjectDto) SetTotalPrice

func (o *GroupedShowbackSummariesByProjectDto) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given NullableFloat64 and assigns it to the TotalPrice field.

func (*GroupedShowbackSummariesByProjectDto) SetTotalPriceNil

func (o *GroupedShowbackSummariesByProjectDto) SetTotalPriceNil()

SetTotalPriceNil sets the value for TotalPrice to be an explicit nil

func (GroupedShowbackSummariesByProjectDto) ToMap

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

func (*GroupedShowbackSummariesByProjectDto) UnsetProjectName

func (o *GroupedShowbackSummariesByProjectDto) UnsetProjectName()

UnsetProjectName ensures that no value is present for ProjectName, not even an explicit nil

func (*GroupedShowbackSummariesByProjectDto) UnsetTotalPrice

func (o *GroupedShowbackSummariesByProjectDto) UnsetTotalPrice()

UnsetTotalPrice ensures that no value is present for TotalPrice, not even an explicit nil

type GroupedShowbackSummaryByLabelInfo

type GroupedShowbackSummaryByLabelInfo struct {
	RuleName       NullableString                       `json:"ruleName,omitempty"`
	CredentialName NullableString                       `json:"credentialName,omitempty"`
	TotalPrice     NullableFloat64                      `json:"totalPrice,omitempty"`
	Data           []GroupedShowbackSummariesByLabelDto `json:"data,omitempty"`
}

GroupedShowbackSummaryByLabelInfo struct for GroupedShowbackSummaryByLabelInfo

func NewGroupedShowbackSummaryByLabelInfo

func NewGroupedShowbackSummaryByLabelInfo() *GroupedShowbackSummaryByLabelInfo

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

func NewGroupedShowbackSummaryByLabelInfoWithDefaults

func NewGroupedShowbackSummaryByLabelInfoWithDefaults() *GroupedShowbackSummaryByLabelInfo

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

func (*GroupedShowbackSummaryByLabelInfo) GetCredentialName

func (o *GroupedShowbackSummaryByLabelInfo) GetCredentialName() string

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

func (*GroupedShowbackSummaryByLabelInfo) GetCredentialNameOk

func (o *GroupedShowbackSummaryByLabelInfo) GetCredentialNameOk() (*string, bool)

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

func (*GroupedShowbackSummaryByLabelInfo) GetData

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

func (*GroupedShowbackSummaryByLabelInfo) GetDataOk

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

func (*GroupedShowbackSummaryByLabelInfo) GetRuleName

func (o *GroupedShowbackSummaryByLabelInfo) GetRuleName() string

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

func (*GroupedShowbackSummaryByLabelInfo) GetRuleNameOk

func (o *GroupedShowbackSummaryByLabelInfo) GetRuleNameOk() (*string, bool)

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

func (*GroupedShowbackSummaryByLabelInfo) GetTotalPrice

func (o *GroupedShowbackSummaryByLabelInfo) GetTotalPrice() float64

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

func (*GroupedShowbackSummaryByLabelInfo) GetTotalPriceOk

func (o *GroupedShowbackSummaryByLabelInfo) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedShowbackSummaryByLabelInfo) HasCredentialName

func (o *GroupedShowbackSummaryByLabelInfo) HasCredentialName() bool

HasCredentialName returns a boolean if a field has been set.

func (*GroupedShowbackSummaryByLabelInfo) HasData

HasData returns a boolean if a field has been set.

func (*GroupedShowbackSummaryByLabelInfo) HasRuleName

func (o *GroupedShowbackSummaryByLabelInfo) HasRuleName() bool

HasRuleName returns a boolean if a field has been set.

func (*GroupedShowbackSummaryByLabelInfo) HasTotalPrice

func (o *GroupedShowbackSummaryByLabelInfo) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedShowbackSummaryByLabelInfo) MarshalJSON

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

func (*GroupedShowbackSummaryByLabelInfo) SetCredentialName

func (o *GroupedShowbackSummaryByLabelInfo) SetCredentialName(v string)

SetCredentialName gets a reference to the given NullableString and assigns it to the CredentialName field.

func (*GroupedShowbackSummaryByLabelInfo) SetCredentialNameNil

func (o *GroupedShowbackSummaryByLabelInfo) SetCredentialNameNil()

SetCredentialNameNil sets the value for CredentialName to be an explicit nil

func (*GroupedShowbackSummaryByLabelInfo) SetData

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

func (*GroupedShowbackSummaryByLabelInfo) SetRuleName

func (o *GroupedShowbackSummaryByLabelInfo) SetRuleName(v string)

SetRuleName gets a reference to the given NullableString and assigns it to the RuleName field.

func (*GroupedShowbackSummaryByLabelInfo) SetRuleNameNil

func (o *GroupedShowbackSummaryByLabelInfo) SetRuleNameNil()

SetRuleNameNil sets the value for RuleName to be an explicit nil

func (*GroupedShowbackSummaryByLabelInfo) SetTotalPrice

func (o *GroupedShowbackSummaryByLabelInfo) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given NullableFloat64 and assigns it to the TotalPrice field.

func (*GroupedShowbackSummaryByLabelInfo) SetTotalPriceNil

func (o *GroupedShowbackSummaryByLabelInfo) SetTotalPriceNil()

SetTotalPriceNil sets the value for TotalPrice to be an explicit nil

func (GroupedShowbackSummaryByLabelInfo) ToMap

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

func (*GroupedShowbackSummaryByLabelInfo) UnsetCredentialName

func (o *GroupedShowbackSummaryByLabelInfo) UnsetCredentialName()

UnsetCredentialName ensures that no value is present for CredentialName, not even an explicit nil

func (*GroupedShowbackSummaryByLabelInfo) UnsetRuleName

func (o *GroupedShowbackSummaryByLabelInfo) UnsetRuleName()

UnsetRuleName ensures that no value is present for RuleName, not even an explicit nil

func (*GroupedShowbackSummaryByLabelInfo) UnsetTotalPrice

func (o *GroupedShowbackSummaryByLabelInfo) UnsetTotalPrice()

UnsetTotalPrice ensures that no value is present for TotalPrice, not even an explicit nil

type GroupedShowbackSummaryByProjectInfos

type GroupedShowbackSummaryByProjectInfos struct {
	Data           []GroupedShowbackSummariesByProjectDto `json:"data,omitempty"`
	RuleName       NullableString                         `json:"ruleName,omitempty"`
	CredentialName NullableString                         `json:"credentialName,omitempty"`
	TotalPrice     NullableFloat64                        `json:"totalPrice,omitempty"`
}

GroupedShowbackSummaryByProjectInfos struct for GroupedShowbackSummaryByProjectInfos

func NewGroupedShowbackSummaryByProjectInfos

func NewGroupedShowbackSummaryByProjectInfos() *GroupedShowbackSummaryByProjectInfos

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

func NewGroupedShowbackSummaryByProjectInfosWithDefaults

func NewGroupedShowbackSummaryByProjectInfosWithDefaults() *GroupedShowbackSummaryByProjectInfos

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

func (*GroupedShowbackSummaryByProjectInfos) GetCredentialName

func (o *GroupedShowbackSummaryByProjectInfos) GetCredentialName() string

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

func (*GroupedShowbackSummaryByProjectInfos) GetCredentialNameOk

func (o *GroupedShowbackSummaryByProjectInfos) GetCredentialNameOk() (*string, bool)

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

func (*GroupedShowbackSummaryByProjectInfos) GetData

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

func (*GroupedShowbackSummaryByProjectInfos) GetDataOk

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

func (*GroupedShowbackSummaryByProjectInfos) GetRuleName

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

func (*GroupedShowbackSummaryByProjectInfos) GetRuleNameOk

func (o *GroupedShowbackSummaryByProjectInfos) GetRuleNameOk() (*string, bool)

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

func (*GroupedShowbackSummaryByProjectInfos) GetTotalPrice

func (o *GroupedShowbackSummaryByProjectInfos) GetTotalPrice() float64

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

func (*GroupedShowbackSummaryByProjectInfos) GetTotalPriceOk

func (o *GroupedShowbackSummaryByProjectInfos) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedShowbackSummaryByProjectInfos) HasCredentialName

func (o *GroupedShowbackSummaryByProjectInfos) HasCredentialName() bool

HasCredentialName returns a boolean if a field has been set.

func (*GroupedShowbackSummaryByProjectInfos) HasData

HasData returns a boolean if a field has been set.

func (*GroupedShowbackSummaryByProjectInfos) HasRuleName

func (o *GroupedShowbackSummaryByProjectInfos) HasRuleName() bool

HasRuleName returns a boolean if a field has been set.

func (*GroupedShowbackSummaryByProjectInfos) HasTotalPrice

func (o *GroupedShowbackSummaryByProjectInfos) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedShowbackSummaryByProjectInfos) MarshalJSON

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

func (*GroupedShowbackSummaryByProjectInfos) SetCredentialName

func (o *GroupedShowbackSummaryByProjectInfos) SetCredentialName(v string)

SetCredentialName gets a reference to the given NullableString and assigns it to the CredentialName field.

func (*GroupedShowbackSummaryByProjectInfos) SetCredentialNameNil

func (o *GroupedShowbackSummaryByProjectInfos) SetCredentialNameNil()

SetCredentialNameNil sets the value for CredentialName to be an explicit nil

func (*GroupedShowbackSummaryByProjectInfos) SetData

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

func (*GroupedShowbackSummaryByProjectInfos) SetRuleName

func (o *GroupedShowbackSummaryByProjectInfos) SetRuleName(v string)

SetRuleName gets a reference to the given NullableString and assigns it to the RuleName field.

func (*GroupedShowbackSummaryByProjectInfos) SetRuleNameNil

func (o *GroupedShowbackSummaryByProjectInfos) SetRuleNameNil()

SetRuleNameNil sets the value for RuleName to be an explicit nil

func (*GroupedShowbackSummaryByProjectInfos) SetTotalPrice

func (o *GroupedShowbackSummaryByProjectInfos) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given NullableFloat64 and assigns it to the TotalPrice field.

func (*GroupedShowbackSummaryByProjectInfos) SetTotalPriceNil

func (o *GroupedShowbackSummaryByProjectInfos) SetTotalPriceNil()

SetTotalPriceNil sets the value for TotalPrice to be an explicit nil

func (GroupedShowbackSummaryByProjectInfos) ToMap

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

func (*GroupedShowbackSummaryByProjectInfos) UnsetCredentialName

func (o *GroupedShowbackSummaryByProjectInfos) UnsetCredentialName()

UnsetCredentialName ensures that no value is present for CredentialName, not even an explicit nil

func (*GroupedShowbackSummaryByProjectInfos) UnsetRuleName

func (o *GroupedShowbackSummaryByProjectInfos) UnsetRuleName()

UnsetRuleName ensures that no value is present for RuleName, not even an explicit nil

func (*GroupedShowbackSummaryByProjectInfos) UnsetTotalPrice

func (o *GroupedShowbackSummaryByProjectInfos) UnsetTotalPrice()

UnsetTotalPrice ensures that no value is present for TotalPrice, not even an explicit nil

type GroupedShowbackSummaryInfos

type GroupedShowbackSummaryInfos struct {
	Data       []GroupedShowbackSummaries `json:"data,omitempty"`
	Id         NullableInt32              `json:"id,omitempty"`
	Name       NullableString             `json:"name,omitempty"`
	TotalPrice NullableFloat64            `json:"totalPrice,omitempty"`
}

GroupedShowbackSummaryInfos struct for GroupedShowbackSummaryInfos

func NewGroupedShowbackSummaryInfos

func NewGroupedShowbackSummaryInfos() *GroupedShowbackSummaryInfos

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

func NewGroupedShowbackSummaryInfosWithDefaults

func NewGroupedShowbackSummaryInfosWithDefaults() *GroupedShowbackSummaryInfos

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

func (*GroupedShowbackSummaryInfos) GetData

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

func (*GroupedShowbackSummaryInfos) GetDataOk

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

func (*GroupedShowbackSummaryInfos) GetId

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

func (*GroupedShowbackSummaryInfos) GetIdOk

func (o *GroupedShowbackSummaryInfos) GetIdOk() (*int32, 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 (*GroupedShowbackSummaryInfos) GetName

func (o *GroupedShowbackSummaryInfos) GetName() string

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

func (*GroupedShowbackSummaryInfos) GetNameOk

func (o *GroupedShowbackSummaryInfos) 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 (*GroupedShowbackSummaryInfos) GetTotalPrice

func (o *GroupedShowbackSummaryInfos) GetTotalPrice() float64

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

func (*GroupedShowbackSummaryInfos) GetTotalPriceOk

func (o *GroupedShowbackSummaryInfos) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedShowbackSummaryInfos) HasData

func (o *GroupedShowbackSummaryInfos) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupedShowbackSummaryInfos) HasId

func (o *GroupedShowbackSummaryInfos) HasId() bool

HasId returns a boolean if a field has been set.

func (*GroupedShowbackSummaryInfos) HasName

func (o *GroupedShowbackSummaryInfos) HasName() bool

HasName returns a boolean if a field has been set.

func (*GroupedShowbackSummaryInfos) HasTotalPrice

func (o *GroupedShowbackSummaryInfos) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedShowbackSummaryInfos) MarshalJSON

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

func (*GroupedShowbackSummaryInfos) SetData

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

func (*GroupedShowbackSummaryInfos) SetId

func (o *GroupedShowbackSummaryInfos) SetId(v int32)

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

func (*GroupedShowbackSummaryInfos) SetIdNil

func (o *GroupedShowbackSummaryInfos) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*GroupedShowbackSummaryInfos) SetName

func (o *GroupedShowbackSummaryInfos) SetName(v string)

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

func (*GroupedShowbackSummaryInfos) SetNameNil

func (o *GroupedShowbackSummaryInfos) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*GroupedShowbackSummaryInfos) SetTotalPrice

func (o *GroupedShowbackSummaryInfos) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given NullableFloat64 and assigns it to the TotalPrice field.

func (*GroupedShowbackSummaryInfos) SetTotalPriceNil

func (o *GroupedShowbackSummaryInfos) SetTotalPriceNil()

SetTotalPriceNil sets the value for TotalPrice to be an explicit nil

func (GroupedShowbackSummaryInfos) ToMap

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

func (*GroupedShowbackSummaryInfos) UnsetId

func (o *GroupedShowbackSummaryInfos) UnsetId()

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

func (*GroupedShowbackSummaryInfos) UnsetName

func (o *GroupedShowbackSummaryInfos) UnsetName()

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

func (*GroupedShowbackSummaryInfos) UnsetTotalPrice

func (o *GroupedShowbackSummaryInfos) UnsetTotalPrice()

UnsetTotalPrice ensures that no value is present for TotalPrice, not even an explicit nil

type GroupedShowbackSummaryListDto

type GroupedShowbackSummaryListDto struct {
	RuleId     *int32                               `json:"ruleId,omitempty"`
	RuleName   NullableString                       `json:"ruleName,omitempty"`
	TotalPrice *float64                             `json:"totalPrice,omitempty"`
	Projects   []GroupedProjectForShowbackSummary   `json:"projects,omitempty"`
	Credential *GroupedCredentialForShowbackSummary `json:"credential,omitempty"`
}

GroupedShowbackSummaryListDto struct for GroupedShowbackSummaryListDto

func NewGroupedShowbackSummaryListDto

func NewGroupedShowbackSummaryListDto() *GroupedShowbackSummaryListDto

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

func NewGroupedShowbackSummaryListDtoWithDefaults

func NewGroupedShowbackSummaryListDtoWithDefaults() *GroupedShowbackSummaryListDto

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

func (*GroupedShowbackSummaryListDto) GetCredential

GetCredential returns the Credential field value if set, zero value otherwise.

func (*GroupedShowbackSummaryListDto) GetCredentialOk

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

func (*GroupedShowbackSummaryListDto) GetProjects

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

func (*GroupedShowbackSummaryListDto) GetProjectsOk

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

func (*GroupedShowbackSummaryListDto) GetRuleId

func (o *GroupedShowbackSummaryListDto) GetRuleId() int32

GetRuleId returns the RuleId field value if set, zero value otherwise.

func (*GroupedShowbackSummaryListDto) GetRuleIdOk

func (o *GroupedShowbackSummaryListDto) GetRuleIdOk() (*int32, bool)

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

func (*GroupedShowbackSummaryListDto) GetRuleName

func (o *GroupedShowbackSummaryListDto) GetRuleName() string

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

func (*GroupedShowbackSummaryListDto) GetRuleNameOk

func (o *GroupedShowbackSummaryListDto) GetRuleNameOk() (*string, bool)

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

func (*GroupedShowbackSummaryListDto) GetTotalPrice

func (o *GroupedShowbackSummaryListDto) GetTotalPrice() float64

GetTotalPrice returns the TotalPrice field value if set, zero value otherwise.

func (*GroupedShowbackSummaryListDto) GetTotalPriceOk

func (o *GroupedShowbackSummaryListDto) GetTotalPriceOk() (*float64, bool)

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

func (*GroupedShowbackSummaryListDto) HasCredential

func (o *GroupedShowbackSummaryListDto) HasCredential() bool

HasCredential returns a boolean if a field has been set.

func (*GroupedShowbackSummaryListDto) HasProjects

func (o *GroupedShowbackSummaryListDto) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (*GroupedShowbackSummaryListDto) HasRuleId

func (o *GroupedShowbackSummaryListDto) HasRuleId() bool

HasRuleId returns a boolean if a field has been set.

func (*GroupedShowbackSummaryListDto) HasRuleName

func (o *GroupedShowbackSummaryListDto) HasRuleName() bool

HasRuleName returns a boolean if a field has been set.

func (*GroupedShowbackSummaryListDto) HasTotalPrice

func (o *GroupedShowbackSummaryListDto) HasTotalPrice() bool

HasTotalPrice returns a boolean if a field has been set.

func (GroupedShowbackSummaryListDto) MarshalJSON

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

func (*GroupedShowbackSummaryListDto) SetCredential

SetCredential gets a reference to the given GroupedCredentialForShowbackSummary and assigns it to the Credential field.

func (*GroupedShowbackSummaryListDto) SetProjects

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

func (*GroupedShowbackSummaryListDto) SetRuleId

func (o *GroupedShowbackSummaryListDto) SetRuleId(v int32)

SetRuleId gets a reference to the given int32 and assigns it to the RuleId field.

func (*GroupedShowbackSummaryListDto) SetRuleName

func (o *GroupedShowbackSummaryListDto) SetRuleName(v string)

SetRuleName gets a reference to the given NullableString and assigns it to the RuleName field.

func (*GroupedShowbackSummaryListDto) SetRuleNameNil

func (o *GroupedShowbackSummaryListDto) SetRuleNameNil()

SetRuleNameNil sets the value for RuleName to be an explicit nil

func (*GroupedShowbackSummaryListDto) SetTotalPrice

func (o *GroupedShowbackSummaryListDto) SetTotalPrice(v float64)

SetTotalPrice gets a reference to the given float64 and assigns it to the TotalPrice field.

func (GroupedShowbackSummaryListDto) ToMap

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

func (*GroupedShowbackSummaryListDto) UnsetRuleName

func (o *GroupedShowbackSummaryListDto) UnsetRuleName()

UnsetRuleName ensures that no value is present for RuleName, not even an explicit nil

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableApiResponse

type NullableApiResponse struct {
	// contains filtered or unexported fields
}

func NewNullableApiResponse

func NewNullableApiResponse(val *ApiResponse) *NullableApiResponse

func (NullableApiResponse) Get

func (NullableApiResponse) IsSet

func (v NullableApiResponse) IsSet() bool

func (NullableApiResponse) MarshalJSON

func (v NullableApiResponse) MarshalJSON() ([]byte, error)

func (*NullableApiResponse) Set

func (v *NullableApiResponse) Set(val *ApiResponse)

func (*NullableApiResponse) UnmarshalJSON

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

func (*NullableApiResponse) Unset

func (v *NullableApiResponse) 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 NullableCreateShowbackCredentialCommand

type NullableCreateShowbackCredentialCommand struct {
	// contains filtered or unexported fields
}

func (NullableCreateShowbackCredentialCommand) Get

func (NullableCreateShowbackCredentialCommand) IsSet

func (NullableCreateShowbackCredentialCommand) MarshalJSON

func (v NullableCreateShowbackCredentialCommand) MarshalJSON() ([]byte, error)

func (*NullableCreateShowbackCredentialCommand) Set

func (*NullableCreateShowbackCredentialCommand) UnmarshalJSON

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

func (*NullableCreateShowbackCredentialCommand) Unset

type NullableCreateShowbackRuleCommand

type NullableCreateShowbackRuleCommand struct {
	// contains filtered or unexported fields
}

func (NullableCreateShowbackRuleCommand) Get

func (NullableCreateShowbackRuleCommand) IsSet

func (NullableCreateShowbackRuleCommand) MarshalJSON

func (v NullableCreateShowbackRuleCommand) MarshalJSON() ([]byte, error)

func (*NullableCreateShowbackRuleCommand) Set

func (*NullableCreateShowbackRuleCommand) UnmarshalJSON

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

func (*NullableCreateShowbackRuleCommand) Unset

type NullableCreateShowbackSummaryCommand

type NullableCreateShowbackSummaryCommand struct {
	// contains filtered or unexported fields
}

func (NullableCreateShowbackSummaryCommand) Get

func (NullableCreateShowbackSummaryCommand) IsSet

func (NullableCreateShowbackSummaryCommand) MarshalJSON

func (v NullableCreateShowbackSummaryCommand) MarshalJSON() ([]byte, error)

func (*NullableCreateShowbackSummaryCommand) Set

func (*NullableCreateShowbackSummaryCommand) UnmarshalJSON

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

func (*NullableCreateShowbackSummaryCommand) Unset

type NullableCsvExporter

type NullableCsvExporter struct {
	// contains filtered or unexported fields
}

func NewNullableCsvExporter

func NewNullableCsvExporter(val *CsvExporter) *NullableCsvExporter

func (NullableCsvExporter) Get

func (NullableCsvExporter) IsSet

func (v NullableCsvExporter) IsSet() bool

func (NullableCsvExporter) MarshalJSON

func (v NullableCsvExporter) MarshalJSON() ([]byte, error)

func (*NullableCsvExporter) Set

func (v *NullableCsvExporter) Set(val *CsvExporter)

func (*NullableCsvExporter) UnmarshalJSON

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

func (*NullableCsvExporter) Unset

func (v *NullableCsvExporter) Unset()

type NullableDeleteRulesCommand

type NullableDeleteRulesCommand struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteRulesCommand

func NewNullableDeleteRulesCommand(val *DeleteRulesCommand) *NullableDeleteRulesCommand

func (NullableDeleteRulesCommand) Get

func (NullableDeleteRulesCommand) IsSet

func (v NullableDeleteRulesCommand) IsSet() bool

func (NullableDeleteRulesCommand) MarshalJSON

func (v NullableDeleteRulesCommand) MarshalJSON() ([]byte, error)

func (*NullableDeleteRulesCommand) Set

func (*NullableDeleteRulesCommand) UnmarshalJSON

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

func (*NullableDeleteRulesCommand) Unset

func (v *NullableDeleteRulesCommand) Unset()

type NullableEPrometheusType

type NullableEPrometheusType struct {
	// contains filtered or unexported fields
}

func NewNullableEPrometheusType

func NewNullableEPrometheusType(val *EPrometheusType) *NullableEPrometheusType

func (NullableEPrometheusType) Get

func (NullableEPrometheusType) IsSet

func (v NullableEPrometheusType) IsSet() bool

func (NullableEPrometheusType) MarshalJSON

func (v NullableEPrometheusType) MarshalJSON() ([]byte, error)

func (*NullableEPrometheusType) Set

func (*NullableEPrometheusType) UnmarshalJSON

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

func (*NullableEPrometheusType) Unset

func (v *NullableEPrometheusType) Unset()

type NullableEShowbackType

type NullableEShowbackType struct {
	// contains filtered or unexported fields
}

func NewNullableEShowbackType

func NewNullableEShowbackType(val *EShowbackType) *NullableEShowbackType

func (NullableEShowbackType) Get

func (NullableEShowbackType) IsSet

func (v NullableEShowbackType) IsSet() bool

func (NullableEShowbackType) MarshalJSON

func (v NullableEShowbackType) MarshalJSON() ([]byte, error)

func (*NullableEShowbackType) Set

func (v *NullableEShowbackType) Set(val *EShowbackType)

func (*NullableEShowbackType) UnmarshalJSON

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

func (*NullableEShowbackType) Unset

func (v *NullableEShowbackType) 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 NullableGroupedCredentialForShowbackSummary

type NullableGroupedCredentialForShowbackSummary struct {
	// contains filtered or unexported fields
}

func (NullableGroupedCredentialForShowbackSummary) Get

func (NullableGroupedCredentialForShowbackSummary) IsSet

func (NullableGroupedCredentialForShowbackSummary) MarshalJSON

func (*NullableGroupedCredentialForShowbackSummary) Set

func (*NullableGroupedCredentialForShowbackSummary) UnmarshalJSON

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

func (*NullableGroupedCredentialForShowbackSummary) Unset

type NullableGroupedProjectForShowbackSummary

type NullableGroupedProjectForShowbackSummary struct {
	// contains filtered or unexported fields
}

func (NullableGroupedProjectForShowbackSummary) Get

func (NullableGroupedProjectForShowbackSummary) IsSet

func (NullableGroupedProjectForShowbackSummary) MarshalJSON

func (*NullableGroupedProjectForShowbackSummary) Set

func (*NullableGroupedProjectForShowbackSummary) UnmarshalJSON

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

func (*NullableGroupedProjectForShowbackSummary) Unset

type NullableGroupedShowbackByLabelList

type NullableGroupedShowbackByLabelList struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackByLabelList) Get

func (NullableGroupedShowbackByLabelList) IsSet

func (NullableGroupedShowbackByLabelList) MarshalJSON

func (v NullableGroupedShowbackByLabelList) MarshalJSON() ([]byte, error)

func (*NullableGroupedShowbackByLabelList) Set

func (*NullableGroupedShowbackByLabelList) UnmarshalJSON

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

func (*NullableGroupedShowbackByLabelList) Unset

type NullableGroupedShowbackByProjectList

type NullableGroupedShowbackByProjectList struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackByProjectList) Get

func (NullableGroupedShowbackByProjectList) IsSet

func (NullableGroupedShowbackByProjectList) MarshalJSON

func (v NullableGroupedShowbackByProjectList) MarshalJSON() ([]byte, error)

func (*NullableGroupedShowbackByProjectList) Set

func (*NullableGroupedShowbackByProjectList) UnmarshalJSON

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

func (*NullableGroupedShowbackByProjectList) Unset

type NullableGroupedShowbackList

type NullableGroupedShowbackList struct {
	// contains filtered or unexported fields
}

func NewNullableGroupedShowbackList

func NewNullableGroupedShowbackList(val *GroupedShowbackList) *NullableGroupedShowbackList

func (NullableGroupedShowbackList) Get

func (NullableGroupedShowbackList) IsSet

func (NullableGroupedShowbackList) MarshalJSON

func (v NullableGroupedShowbackList) MarshalJSON() ([]byte, error)

func (*NullableGroupedShowbackList) Set

func (*NullableGroupedShowbackList) UnmarshalJSON

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

func (*NullableGroupedShowbackList) Unset

func (v *NullableGroupedShowbackList) Unset()

type NullableGroupedShowbackSummaries

type NullableGroupedShowbackSummaries struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummaries) Get

func (NullableGroupedShowbackSummaries) IsSet

func (NullableGroupedShowbackSummaries) MarshalJSON

func (v NullableGroupedShowbackSummaries) MarshalJSON() ([]byte, error)

func (*NullableGroupedShowbackSummaries) Set

func (*NullableGroupedShowbackSummaries) UnmarshalJSON

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

func (*NullableGroupedShowbackSummaries) Unset

type NullableGroupedShowbackSummariesByLabelDto

type NullableGroupedShowbackSummariesByLabelDto struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummariesByLabelDto) Get

func (NullableGroupedShowbackSummariesByLabelDto) IsSet

func (NullableGroupedShowbackSummariesByLabelDto) MarshalJSON

func (*NullableGroupedShowbackSummariesByLabelDto) Set

func (*NullableGroupedShowbackSummariesByLabelDto) UnmarshalJSON

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

func (*NullableGroupedShowbackSummariesByLabelDto) Unset

type NullableGroupedShowbackSummariesByProjectDto

type NullableGroupedShowbackSummariesByProjectDto struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummariesByProjectDto) Get

func (NullableGroupedShowbackSummariesByProjectDto) IsSet

func (NullableGroupedShowbackSummariesByProjectDto) MarshalJSON

func (*NullableGroupedShowbackSummariesByProjectDto) Set

func (*NullableGroupedShowbackSummariesByProjectDto) UnmarshalJSON

func (*NullableGroupedShowbackSummariesByProjectDto) Unset

type NullableGroupedShowbackSummaryByLabelInfo

type NullableGroupedShowbackSummaryByLabelInfo struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummaryByLabelInfo) Get

func (NullableGroupedShowbackSummaryByLabelInfo) IsSet

func (NullableGroupedShowbackSummaryByLabelInfo) MarshalJSON

func (*NullableGroupedShowbackSummaryByLabelInfo) Set

func (*NullableGroupedShowbackSummaryByLabelInfo) UnmarshalJSON

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

func (*NullableGroupedShowbackSummaryByLabelInfo) Unset

type NullableGroupedShowbackSummaryByProjectInfos

type NullableGroupedShowbackSummaryByProjectInfos struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummaryByProjectInfos) Get

func (NullableGroupedShowbackSummaryByProjectInfos) IsSet

func (NullableGroupedShowbackSummaryByProjectInfos) MarshalJSON

func (*NullableGroupedShowbackSummaryByProjectInfos) Set

func (*NullableGroupedShowbackSummaryByProjectInfos) UnmarshalJSON

func (*NullableGroupedShowbackSummaryByProjectInfos) Unset

type NullableGroupedShowbackSummaryInfos

type NullableGroupedShowbackSummaryInfos struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummaryInfos) Get

func (NullableGroupedShowbackSummaryInfos) IsSet

func (NullableGroupedShowbackSummaryInfos) MarshalJSON

func (v NullableGroupedShowbackSummaryInfos) MarshalJSON() ([]byte, error)

func (*NullableGroupedShowbackSummaryInfos) Set

func (*NullableGroupedShowbackSummaryInfos) UnmarshalJSON

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

func (*NullableGroupedShowbackSummaryInfos) Unset

type NullableGroupedShowbackSummaryListDto

type NullableGroupedShowbackSummaryListDto struct {
	// contains filtered or unexported fields
}

func (NullableGroupedShowbackSummaryListDto) Get

func (NullableGroupedShowbackSummaryListDto) IsSet

func (NullableGroupedShowbackSummaryListDto) MarshalJSON

func (v NullableGroupedShowbackSummaryListDto) MarshalJSON() ([]byte, error)

func (*NullableGroupedShowbackSummaryListDto) Set

func (*NullableGroupedShowbackSummaryListDto) UnmarshalJSON

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

func (*NullableGroupedShowbackSummaryListDto) 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 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 NullableShowbackCredentialLockCommand

type NullableShowbackCredentialLockCommand struct {
	// contains filtered or unexported fields
}

func (NullableShowbackCredentialLockCommand) Get

func (NullableShowbackCredentialLockCommand) IsSet

func (NullableShowbackCredentialLockCommand) MarshalJSON

func (v NullableShowbackCredentialLockCommand) MarshalJSON() ([]byte, error)

func (*NullableShowbackCredentialLockCommand) Set

func (*NullableShowbackCredentialLockCommand) UnmarshalJSON

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

func (*NullableShowbackCredentialLockCommand) Unset

type NullableShowbackCredentialsDetailsDto

type NullableShowbackCredentialsDetailsDto struct {
	// contains filtered or unexported fields
}

func (NullableShowbackCredentialsDetailsDto) Get

func (NullableShowbackCredentialsDetailsDto) IsSet

func (NullableShowbackCredentialsDetailsDto) MarshalJSON

func (v NullableShowbackCredentialsDetailsDto) MarshalJSON() ([]byte, error)

func (*NullableShowbackCredentialsDetailsDto) Set

func (*NullableShowbackCredentialsDetailsDto) UnmarshalJSON

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

func (*NullableShowbackCredentialsDetailsDto) Unset

type NullableShowbackCredentialsList

type NullableShowbackCredentialsList struct {
	// contains filtered or unexported fields
}

func (NullableShowbackCredentialsList) Get

func (NullableShowbackCredentialsList) IsSet

func (NullableShowbackCredentialsList) MarshalJSON

func (v NullableShowbackCredentialsList) MarshalJSON() ([]byte, error)

func (*NullableShowbackCredentialsList) Set

func (*NullableShowbackCredentialsList) UnmarshalJSON

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

func (*NullableShowbackCredentialsList) Unset

type NullableShowbackCredentialsListDto

type NullableShowbackCredentialsListDto struct {
	// contains filtered or unexported fields
}

func (NullableShowbackCredentialsListDto) Get

func (NullableShowbackCredentialsListDto) IsSet

func (NullableShowbackCredentialsListDto) MarshalJSON

func (v NullableShowbackCredentialsListDto) MarshalJSON() ([]byte, error)

func (*NullableShowbackCredentialsListDto) Set

func (*NullableShowbackCredentialsListDto) UnmarshalJSON

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

func (*NullableShowbackCredentialsListDto) Unset

type NullableShowbackLabelCreateDto

type NullableShowbackLabelCreateDto struct {
	// contains filtered or unexported fields
}

func (NullableShowbackLabelCreateDto) Get

func (NullableShowbackLabelCreateDto) IsSet

func (NullableShowbackLabelCreateDto) MarshalJSON

func (v NullableShowbackLabelCreateDto) MarshalJSON() ([]byte, error)

func (*NullableShowbackLabelCreateDto) Set

func (*NullableShowbackLabelCreateDto) UnmarshalJSON

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

func (*NullableShowbackLabelCreateDto) Unset

func (v *NullableShowbackLabelCreateDto) Unset()

type NullableShowbackProjectsList

type NullableShowbackProjectsList struct {
	// contains filtered or unexported fields
}

func NewNullableShowbackProjectsList

func NewNullableShowbackProjectsList(val *ShowbackProjectsList) *NullableShowbackProjectsList

func (NullableShowbackProjectsList) Get

func (NullableShowbackProjectsList) IsSet

func (NullableShowbackProjectsList) MarshalJSON

func (v NullableShowbackProjectsList) MarshalJSON() ([]byte, error)

func (*NullableShowbackProjectsList) Set

func (*NullableShowbackProjectsList) UnmarshalJSON

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

func (*NullableShowbackProjectsList) Unset

func (v *NullableShowbackProjectsList) Unset()

type NullableShowbackProjectsListDto

type NullableShowbackProjectsListDto struct {
	// contains filtered or unexported fields
}

func (NullableShowbackProjectsListDto) Get

func (NullableShowbackProjectsListDto) IsSet

func (NullableShowbackProjectsListDto) MarshalJSON

func (v NullableShowbackProjectsListDto) MarshalJSON() ([]byte, error)

func (*NullableShowbackProjectsListDto) Set

func (*NullableShowbackProjectsListDto) UnmarshalJSON

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

func (*NullableShowbackProjectsListDto) Unset

type NullableShowbackRuleEntityDto

type NullableShowbackRuleEntityDto struct {
	// contains filtered or unexported fields
}

func (NullableShowbackRuleEntityDto) Get

func (NullableShowbackRuleEntityDto) IsSet

func (NullableShowbackRuleEntityDto) MarshalJSON

func (v NullableShowbackRuleEntityDto) MarshalJSON() ([]byte, error)

func (*NullableShowbackRuleEntityDto) Set

func (*NullableShowbackRuleEntityDto) UnmarshalJSON

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

func (*NullableShowbackRuleEntityDto) Unset

func (v *NullableShowbackRuleEntityDto) Unset()

type NullableShowbackRuleList

type NullableShowbackRuleList struct {
	// contains filtered or unexported fields
}

func NewNullableShowbackRuleList

func NewNullableShowbackRuleList(val *ShowbackRuleList) *NullableShowbackRuleList

func (NullableShowbackRuleList) Get

func (NullableShowbackRuleList) IsSet

func (v NullableShowbackRuleList) IsSet() bool

func (NullableShowbackRuleList) MarshalJSON

func (v NullableShowbackRuleList) MarshalJSON() ([]byte, error)

func (*NullableShowbackRuleList) Set

func (*NullableShowbackRuleList) UnmarshalJSON

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

func (*NullableShowbackRuleList) Unset

func (v *NullableShowbackRuleList) Unset()

type NullableShowbackRulesListDto

type NullableShowbackRulesListDto struct {
	// contains filtered or unexported fields
}

func NewNullableShowbackRulesListDto

func NewNullableShowbackRulesListDto(val *ShowbackRulesListDto) *NullableShowbackRulesListDto

func (NullableShowbackRulesListDto) Get

func (NullableShowbackRulesListDto) IsSet

func (NullableShowbackRulesListDto) MarshalJSON

func (v NullableShowbackRulesListDto) MarshalJSON() ([]byte, error)

func (*NullableShowbackRulesListDto) Set

func (*NullableShowbackRulesListDto) UnmarshalJSON

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

func (*NullableShowbackRulesListDto) Unset

func (v *NullableShowbackRulesListDto) 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 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 NullableUpdateShowbackRuleCommand

type NullableUpdateShowbackRuleCommand struct {
	// contains filtered or unexported fields
}

func (NullableUpdateShowbackRuleCommand) Get

func (NullableUpdateShowbackRuleCommand) IsSet

func (NullableUpdateShowbackRuleCommand) MarshalJSON

func (v NullableUpdateShowbackRuleCommand) MarshalJSON() ([]byte, error)

func (*NullableUpdateShowbackRuleCommand) Set

func (*NullableUpdateShowbackRuleCommand) UnmarshalJSON

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

func (*NullableUpdateShowbackRuleCommand) Unset

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"`
	AdditionalProperties map[string]interface{}
}

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) UnmarshalJSON

func (o *ProblemDetails) UnmarshalJSON(bytes []byte) (err 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 ProjectsAPIService

type ProjectsAPIService service

ProjectsAPIService ProjectsAPI service

func (*ProjectsAPIService) ProjectsList

ProjectsList Retrieve all projects

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

func (*ProjectsAPIService) ProjectsListExecute

Execute executes the request

@return ShowbackProjectsList

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ShowbackCredentialLockCommand

type ShowbackCredentialLockCommand struct {
	Id   *int32         `json:"id,omitempty"`
	Mode NullableString `json:"mode,omitempty"`
}

ShowbackCredentialLockCommand struct for ShowbackCredentialLockCommand

func NewShowbackCredentialLockCommand

func NewShowbackCredentialLockCommand() *ShowbackCredentialLockCommand

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

func NewShowbackCredentialLockCommandWithDefaults

func NewShowbackCredentialLockCommandWithDefaults() *ShowbackCredentialLockCommand

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

func (*ShowbackCredentialLockCommand) GetId

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

func (*ShowbackCredentialLockCommand) GetIdOk

func (o *ShowbackCredentialLockCommand) GetIdOk() (*int32, bool)

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

func (*ShowbackCredentialLockCommand) GetMode

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

func (*ShowbackCredentialLockCommand) GetModeOk

func (o *ShowbackCredentialLockCommand) GetModeOk() (*string, bool)

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

func (*ShowbackCredentialLockCommand) HasId

HasId returns a boolean if a field has been set.

func (*ShowbackCredentialLockCommand) HasMode

func (o *ShowbackCredentialLockCommand) HasMode() bool

HasMode returns a boolean if a field has been set.

func (ShowbackCredentialLockCommand) MarshalJSON

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

func (*ShowbackCredentialLockCommand) SetId

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

func (*ShowbackCredentialLockCommand) SetMode

func (o *ShowbackCredentialLockCommand) SetMode(v string)

SetMode gets a reference to the given NullableString and assigns it to the Mode field.

func (*ShowbackCredentialLockCommand) SetModeNil

func (o *ShowbackCredentialLockCommand) SetModeNil()

SetModeNil sets the value for Mode to be an explicit nil

func (ShowbackCredentialLockCommand) ToMap

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

func (*ShowbackCredentialLockCommand) UnsetMode

func (o *ShowbackCredentialLockCommand) UnsetMode()

UnsetMode ensures that no value is present for Mode, not even an explicit nil

type ShowbackCredentialsAPIService

type ShowbackCredentialsAPIService service

ShowbackCredentialsAPIService ShowbackCredentialsAPI service

func (*ShowbackCredentialsAPIService) ShowbackcredentialsCreate

ShowbackcredentialsCreate Create showback credential

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

func (*ShowbackCredentialsAPIService) ShowbackcredentialsCreateExecute

Execute executes the request

@return ApiResponse

func (*ShowbackCredentialsAPIService) ShowbackcredentialsDelete

ShowbackcredentialsDelete Delete showback credential

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

func (*ShowbackCredentialsAPIService) ShowbackcredentialsDeleteExecute

func (a *ShowbackCredentialsAPIService) ShowbackcredentialsDeleteExecute(r ApiShowbackcredentialsDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ShowbackCredentialsAPIService) ShowbackcredentialsDropdown

ShowbackcredentialsDropdown Retrieve showback credentials by organization id

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

func (*ShowbackCredentialsAPIService) ShowbackcredentialsDropdownExecute

Execute executes the request

@return []ShowbackCredentialsDetailsDto

func (*ShowbackCredentialsAPIService) ShowbackcredentialsList

ShowbackcredentialsList Retrieve all showback credentials

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

func (*ShowbackCredentialsAPIService) ShowbackcredentialsListExecute

Execute executes the request

@return ShowbackCredentialsList

func (*ShowbackCredentialsAPIService) ShowbackcredentialsLockManagement

ShowbackcredentialsLockManagement Lock management for showback credential

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

func (*ShowbackCredentialsAPIService) ShowbackcredentialsLockManagementExecute

func (a *ShowbackCredentialsAPIService) ShowbackcredentialsLockManagementExecute(r ApiShowbackcredentialsLockManagementRequest) (*http.Response, error)

Execute executes the request

type ShowbackCredentialsDetailsDto

type ShowbackCredentialsDetailsDto struct {
	Id   *int32         `json:"id,omitempty"`
	Name NullableString `json:"name,omitempty"`
}

ShowbackCredentialsDetailsDto struct for ShowbackCredentialsDetailsDto

func NewShowbackCredentialsDetailsDto

func NewShowbackCredentialsDetailsDto() *ShowbackCredentialsDetailsDto

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

func NewShowbackCredentialsDetailsDtoWithDefaults

func NewShowbackCredentialsDetailsDtoWithDefaults() *ShowbackCredentialsDetailsDto

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

func (*ShowbackCredentialsDetailsDto) GetId

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

func (*ShowbackCredentialsDetailsDto) GetIdOk

func (o *ShowbackCredentialsDetailsDto) GetIdOk() (*int32, bool)

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

func (*ShowbackCredentialsDetailsDto) GetName

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

func (*ShowbackCredentialsDetailsDto) GetNameOk

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

HasId returns a boolean if a field has been set.

func (*ShowbackCredentialsDetailsDto) HasName

func (o *ShowbackCredentialsDetailsDto) HasName() bool

HasName returns a boolean if a field has been set.

func (ShowbackCredentialsDetailsDto) MarshalJSON

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

func (*ShowbackCredentialsDetailsDto) SetId

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

func (*ShowbackCredentialsDetailsDto) SetName

func (o *ShowbackCredentialsDetailsDto) SetName(v string)

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

func (*ShowbackCredentialsDetailsDto) SetNameNil

func (o *ShowbackCredentialsDetailsDto) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (ShowbackCredentialsDetailsDto) ToMap

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

func (*ShowbackCredentialsDetailsDto) UnsetName

func (o *ShowbackCredentialsDetailsDto) UnsetName()

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

type ShowbackCredentialsList

type ShowbackCredentialsList struct {
	Data       []ShowbackCredentialsListDto `json:"data,omitempty"`
	TotalCount *int32                       `json:"totalCount,omitempty"`
}

ShowbackCredentialsList struct for ShowbackCredentialsList

func NewShowbackCredentialsList

func NewShowbackCredentialsList() *ShowbackCredentialsList

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

func NewShowbackCredentialsListWithDefaults

func NewShowbackCredentialsListWithDefaults() *ShowbackCredentialsList

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

func (*ShowbackCredentialsList) GetData

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

func (*ShowbackCredentialsList) GetDataOk

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

func (*ShowbackCredentialsList) GetTotalCount

func (o *ShowbackCredentialsList) GetTotalCount() int32

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*ShowbackCredentialsList) GetTotalCountOk

func (o *ShowbackCredentialsList) GetTotalCountOk() (*int32, bool)

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

func (*ShowbackCredentialsList) HasData

func (o *ShowbackCredentialsList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ShowbackCredentialsList) HasTotalCount

func (o *ShowbackCredentialsList) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (ShowbackCredentialsList) MarshalJSON

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

func (*ShowbackCredentialsList) SetData

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

func (*ShowbackCredentialsList) SetTotalCount

func (o *ShowbackCredentialsList) SetTotalCount(v int32)

SetTotalCount gets a reference to the given int32 and assigns it to the TotalCount field.

func (ShowbackCredentialsList) ToMap

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

type ShowbackCredentialsListDto

type ShowbackCredentialsListDto struct {
	Id               *int32                  `json:"id,omitempty"`
	Name             NullableString          `json:"name,omitempty"`
	Url              NullableString          `json:"url,omitempty"`
	CreatedAt        NullableString          `json:"createdAt,omitempty"`
	Username         NullableString          `json:"username,omitempty"`
	Password         NullableString          `json:"password,omitempty"`
	IsLocked         *bool                   `json:"isLocked,omitempty"`
	OrganizationName NullableString          `json:"organizationName,omitempty"`
	OrganizationId   *int32                  `json:"organizationId,omitempty"`
	CreatedBy        NullableString          `json:"createdBy,omitempty"`
	LastModified     NullableString          `json:"lastModified,omitempty"`
	LastModifiedBy   NullableString          `json:"lastModifiedBy,omitempty"`
	Rules            []ShowbackRuleEntityDto `json:"rules,omitempty"`
}

ShowbackCredentialsListDto struct for ShowbackCredentialsListDto

func NewShowbackCredentialsListDto

func NewShowbackCredentialsListDto() *ShowbackCredentialsListDto

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

func NewShowbackCredentialsListDtoWithDefaults

func NewShowbackCredentialsListDtoWithDefaults() *ShowbackCredentialsListDto

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

func (*ShowbackCredentialsListDto) GetCreatedAt

func (o *ShowbackCredentialsListDto) GetCreatedAt() string

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

func (*ShowbackCredentialsListDto) GetCreatedAtOk

func (o *ShowbackCredentialsListDto) GetCreatedAtOk() (*string, bool)

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

func (*ShowbackCredentialsListDto) GetCreatedBy

func (o *ShowbackCredentialsListDto) GetCreatedBy() string

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

func (*ShowbackCredentialsListDto) GetCreatedByOk

func (o *ShowbackCredentialsListDto) GetCreatedByOk() (*string, bool)

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

func (*ShowbackCredentialsListDto) GetId

func (o *ShowbackCredentialsListDto) GetId() int32

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

func (*ShowbackCredentialsListDto) GetIdOk

func (o *ShowbackCredentialsListDto) GetIdOk() (*int32, bool)

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

func (*ShowbackCredentialsListDto) GetIsLocked

func (o *ShowbackCredentialsListDto) GetIsLocked() bool

GetIsLocked returns the IsLocked field value if set, zero value otherwise.

func (*ShowbackCredentialsListDto) GetIsLockedOk

func (o *ShowbackCredentialsListDto) GetIsLockedOk() (*bool, bool)

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

func (*ShowbackCredentialsListDto) GetLastModified

func (o *ShowbackCredentialsListDto) GetLastModified() string

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

func (*ShowbackCredentialsListDto) GetLastModifiedBy

func (o *ShowbackCredentialsListDto) GetLastModifiedBy() string

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

func (*ShowbackCredentialsListDto) GetLastModifiedByOk

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

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

func (*ShowbackCredentialsListDto) GetLastModifiedOk

func (o *ShowbackCredentialsListDto) GetLastModifiedOk() (*string, bool)

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

func (*ShowbackCredentialsListDto) GetName

func (o *ShowbackCredentialsListDto) GetName() string

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

func (*ShowbackCredentialsListDto) GetNameOk

func (o *ShowbackCredentialsListDto) 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 (*ShowbackCredentialsListDto) GetOrganizationId

func (o *ShowbackCredentialsListDto) GetOrganizationId() int32

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ShowbackCredentialsListDto) GetOrganizationIdOk

func (o *ShowbackCredentialsListDto) GetOrganizationIdOk() (*int32, bool)

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

func (*ShowbackCredentialsListDto) GetOrganizationName

func (o *ShowbackCredentialsListDto) GetOrganizationName() string

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

func (*ShowbackCredentialsListDto) GetOrganizationNameOk

func (o *ShowbackCredentialsListDto) GetOrganizationNameOk() (*string, bool)

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

func (*ShowbackCredentialsListDto) GetPassword

func (o *ShowbackCredentialsListDto) GetPassword() string

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

func (*ShowbackCredentialsListDto) GetPasswordOk

func (o *ShowbackCredentialsListDto) 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 (*ShowbackCredentialsListDto) GetRules

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

func (*ShowbackCredentialsListDto) GetRulesOk

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

func (*ShowbackCredentialsListDto) GetUrl

func (o *ShowbackCredentialsListDto) GetUrl() string

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

func (*ShowbackCredentialsListDto) GetUrlOk

func (o *ShowbackCredentialsListDto) 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 (*ShowbackCredentialsListDto) GetUsername

func (o *ShowbackCredentialsListDto) GetUsername() string

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

func (*ShowbackCredentialsListDto) GetUsernameOk

func (o *ShowbackCredentialsListDto) 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 (*ShowbackCredentialsListDto) HasCreatedAt

func (o *ShowbackCredentialsListDto) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasCreatedBy

func (o *ShowbackCredentialsListDto) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasId

func (o *ShowbackCredentialsListDto) HasId() bool

HasId returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasIsLocked

func (o *ShowbackCredentialsListDto) HasIsLocked() bool

HasIsLocked returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasLastModified

func (o *ShowbackCredentialsListDto) HasLastModified() bool

HasLastModified returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasLastModifiedBy

func (o *ShowbackCredentialsListDto) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasName

func (o *ShowbackCredentialsListDto) HasName() bool

HasName returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasOrganizationId

func (o *ShowbackCredentialsListDto) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasOrganizationName

func (o *ShowbackCredentialsListDto) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasPassword

func (o *ShowbackCredentialsListDto) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasRules

func (o *ShowbackCredentialsListDto) HasRules() bool

HasRules returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasUrl

func (o *ShowbackCredentialsListDto) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*ShowbackCredentialsListDto) HasUsername

func (o *ShowbackCredentialsListDto) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ShowbackCredentialsListDto) MarshalJSON

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

func (*ShowbackCredentialsListDto) SetCreatedAt

func (o *ShowbackCredentialsListDto) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*ShowbackCredentialsListDto) SetCreatedAtNil

func (o *ShowbackCredentialsListDto) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ShowbackCredentialsListDto) SetCreatedBy

func (o *ShowbackCredentialsListDto) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*ShowbackCredentialsListDto) SetCreatedByNil

func (o *ShowbackCredentialsListDto) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ShowbackCredentialsListDto) SetId

func (o *ShowbackCredentialsListDto) SetId(v int32)

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

func (*ShowbackCredentialsListDto) SetIsLocked

func (o *ShowbackCredentialsListDto) SetIsLocked(v bool)

SetIsLocked gets a reference to the given bool and assigns it to the IsLocked field.

func (*ShowbackCredentialsListDto) SetLastModified

func (o *ShowbackCredentialsListDto) SetLastModified(v string)

SetLastModified gets a reference to the given NullableString and assigns it to the LastModified field.

func (*ShowbackCredentialsListDto) SetLastModifiedBy

func (o *ShowbackCredentialsListDto) SetLastModifiedBy(v string)

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

func (*ShowbackCredentialsListDto) SetLastModifiedByNil

func (o *ShowbackCredentialsListDto) SetLastModifiedByNil()

SetLastModifiedByNil sets the value for LastModifiedBy to be an explicit nil

func (*ShowbackCredentialsListDto) SetLastModifiedNil

func (o *ShowbackCredentialsListDto) SetLastModifiedNil()

SetLastModifiedNil sets the value for LastModified to be an explicit nil

func (*ShowbackCredentialsListDto) SetName

func (o *ShowbackCredentialsListDto) SetName(v string)

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

func (*ShowbackCredentialsListDto) SetNameNil

func (o *ShowbackCredentialsListDto) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ShowbackCredentialsListDto) SetOrganizationId

func (o *ShowbackCredentialsListDto) SetOrganizationId(v int32)

SetOrganizationId gets a reference to the given int32 and assigns it to the OrganizationId field.

func (*ShowbackCredentialsListDto) SetOrganizationName

func (o *ShowbackCredentialsListDto) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given NullableString and assigns it to the OrganizationName field.

func (*ShowbackCredentialsListDto) SetOrganizationNameNil

func (o *ShowbackCredentialsListDto) SetOrganizationNameNil()

SetOrganizationNameNil sets the value for OrganizationName to be an explicit nil

func (*ShowbackCredentialsListDto) SetPassword

func (o *ShowbackCredentialsListDto) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*ShowbackCredentialsListDto) SetPasswordNil

func (o *ShowbackCredentialsListDto) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*ShowbackCredentialsListDto) SetRules

SetRules gets a reference to the given []ShowbackRuleEntityDto and assigns it to the Rules field.

func (*ShowbackCredentialsListDto) SetUrl

func (o *ShowbackCredentialsListDto) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*ShowbackCredentialsListDto) SetUrlNil

func (o *ShowbackCredentialsListDto) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*ShowbackCredentialsListDto) SetUsername

func (o *ShowbackCredentialsListDto) SetUsername(v string)

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

func (*ShowbackCredentialsListDto) SetUsernameNil

func (o *ShowbackCredentialsListDto) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (ShowbackCredentialsListDto) ToMap

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

func (*ShowbackCredentialsListDto) UnsetCreatedAt

func (o *ShowbackCredentialsListDto) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetCreatedBy

func (o *ShowbackCredentialsListDto) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetLastModified

func (o *ShowbackCredentialsListDto) UnsetLastModified()

UnsetLastModified ensures that no value is present for LastModified, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetLastModifiedBy

func (o *ShowbackCredentialsListDto) UnsetLastModifiedBy()

UnsetLastModifiedBy ensures that no value is present for LastModifiedBy, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetName

func (o *ShowbackCredentialsListDto) UnsetName()

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

func (*ShowbackCredentialsListDto) UnsetOrganizationName

func (o *ShowbackCredentialsListDto) UnsetOrganizationName()

UnsetOrganizationName ensures that no value is present for OrganizationName, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetPassword

func (o *ShowbackCredentialsListDto) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetUrl

func (o *ShowbackCredentialsListDto) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

func (*ShowbackCredentialsListDto) UnsetUsername

func (o *ShowbackCredentialsListDto) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type ShowbackLabelCreateDto

type ShowbackLabelCreateDto struct {
	Label NullableString `json:"label,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

ShowbackLabelCreateDto struct for ShowbackLabelCreateDto

func NewShowbackLabelCreateDto

func NewShowbackLabelCreateDto() *ShowbackLabelCreateDto

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

func NewShowbackLabelCreateDtoWithDefaults

func NewShowbackLabelCreateDtoWithDefaults() *ShowbackLabelCreateDto

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

func (*ShowbackLabelCreateDto) GetLabel

func (o *ShowbackLabelCreateDto) GetLabel() string

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

func (*ShowbackLabelCreateDto) GetLabelOk

func (o *ShowbackLabelCreateDto) GetLabelOk() (*string, bool)

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

func (*ShowbackLabelCreateDto) GetValue

func (o *ShowbackLabelCreateDto) GetValue() string

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

func (*ShowbackLabelCreateDto) GetValueOk

func (o *ShowbackLabelCreateDto) 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 (*ShowbackLabelCreateDto) HasLabel

func (o *ShowbackLabelCreateDto) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ShowbackLabelCreateDto) HasValue

func (o *ShowbackLabelCreateDto) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ShowbackLabelCreateDto) MarshalJSON

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

func (*ShowbackLabelCreateDto) SetLabel

func (o *ShowbackLabelCreateDto) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*ShowbackLabelCreateDto) SetLabelNil

func (o *ShowbackLabelCreateDto) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*ShowbackLabelCreateDto) SetValue

func (o *ShowbackLabelCreateDto) SetValue(v string)

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

func (*ShowbackLabelCreateDto) SetValueNil

func (o *ShowbackLabelCreateDto) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (ShowbackLabelCreateDto) ToMap

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

func (*ShowbackLabelCreateDto) UnsetLabel

func (o *ShowbackLabelCreateDto) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*ShowbackLabelCreateDto) UnsetValue

func (o *ShowbackLabelCreateDto) UnsetValue()

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

type ShowbackProjectsList

type ShowbackProjectsList struct {
	Data       []ShowbackProjectsListDto `json:"data,omitempty"`
	TotalCount *int32                    `json:"totalCount,omitempty"`
}

ShowbackProjectsList struct for ShowbackProjectsList

func NewShowbackProjectsList

func NewShowbackProjectsList() *ShowbackProjectsList

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

func NewShowbackProjectsListWithDefaults

func NewShowbackProjectsListWithDefaults() *ShowbackProjectsList

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

func (*ShowbackProjectsList) GetData

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

func (*ShowbackProjectsList) GetDataOk

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

func (*ShowbackProjectsList) GetTotalCount

func (o *ShowbackProjectsList) GetTotalCount() int32

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*ShowbackProjectsList) GetTotalCountOk

func (o *ShowbackProjectsList) GetTotalCountOk() (*int32, bool)

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

func (*ShowbackProjectsList) HasData

func (o *ShowbackProjectsList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ShowbackProjectsList) HasTotalCount

func (o *ShowbackProjectsList) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (ShowbackProjectsList) MarshalJSON

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

func (*ShowbackProjectsList) SetData

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

func (*ShowbackProjectsList) SetTotalCount

func (o *ShowbackProjectsList) SetTotalCount(v int32)

SetTotalCount gets a reference to the given int32 and assigns it to the TotalCount field.

func (ShowbackProjectsList) ToMap

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

type ShowbackProjectsListDto

type ShowbackProjectsListDto struct {
	Id                 *int32         `json:"id,omitempty"`
	Name               NullableString `json:"name,omitempty"`
	MonitoringUrl      NullableString `json:"monitoringUrl,omitempty"`
	MonitoringUsername NullableString `json:"monitoringUsername,omitempty"`
	MonitoringPassword NullableString `json:"monitoringPassword,omitempty"`
}

ShowbackProjectsListDto struct for ShowbackProjectsListDto

func NewShowbackProjectsListDto

func NewShowbackProjectsListDto() *ShowbackProjectsListDto

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

func NewShowbackProjectsListDtoWithDefaults

func NewShowbackProjectsListDtoWithDefaults() *ShowbackProjectsListDto

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

func (*ShowbackProjectsListDto) GetId

func (o *ShowbackProjectsListDto) GetId() int32

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

func (*ShowbackProjectsListDto) GetIdOk

func (o *ShowbackProjectsListDto) GetIdOk() (*int32, bool)

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

func (*ShowbackProjectsListDto) GetMonitoringPassword

func (o *ShowbackProjectsListDto) GetMonitoringPassword() string

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

func (*ShowbackProjectsListDto) GetMonitoringPasswordOk

func (o *ShowbackProjectsListDto) GetMonitoringPasswordOk() (*string, bool)

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

func (*ShowbackProjectsListDto) GetMonitoringUrl

func (o *ShowbackProjectsListDto) GetMonitoringUrl() string

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

func (*ShowbackProjectsListDto) GetMonitoringUrlOk

func (o *ShowbackProjectsListDto) GetMonitoringUrlOk() (*string, bool)

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

func (*ShowbackProjectsListDto) GetMonitoringUsername

func (o *ShowbackProjectsListDto) GetMonitoringUsername() string

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

func (*ShowbackProjectsListDto) GetMonitoringUsernameOk

func (o *ShowbackProjectsListDto) GetMonitoringUsernameOk() (*string, bool)

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

func (*ShowbackProjectsListDto) GetName

func (o *ShowbackProjectsListDto) GetName() string

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

func (*ShowbackProjectsListDto) GetNameOk

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

func (o *ShowbackProjectsListDto) HasId() bool

HasId returns a boolean if a field has been set.

func (*ShowbackProjectsListDto) HasMonitoringPassword

func (o *ShowbackProjectsListDto) HasMonitoringPassword() bool

HasMonitoringPassword returns a boolean if a field has been set.

func (*ShowbackProjectsListDto) HasMonitoringUrl

func (o *ShowbackProjectsListDto) HasMonitoringUrl() bool

HasMonitoringUrl returns a boolean if a field has been set.

func (*ShowbackProjectsListDto) HasMonitoringUsername

func (o *ShowbackProjectsListDto) HasMonitoringUsername() bool

HasMonitoringUsername returns a boolean if a field has been set.

func (*ShowbackProjectsListDto) HasName

func (o *ShowbackProjectsListDto) HasName() bool

HasName returns a boolean if a field has been set.

func (ShowbackProjectsListDto) MarshalJSON

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

func (*ShowbackProjectsListDto) SetId

func (o *ShowbackProjectsListDto) SetId(v int32)

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

func (*ShowbackProjectsListDto) SetMonitoringPassword

func (o *ShowbackProjectsListDto) SetMonitoringPassword(v string)

SetMonitoringPassword gets a reference to the given NullableString and assigns it to the MonitoringPassword field.

func (*ShowbackProjectsListDto) SetMonitoringPasswordNil

func (o *ShowbackProjectsListDto) SetMonitoringPasswordNil()

SetMonitoringPasswordNil sets the value for MonitoringPassword to be an explicit nil

func (*ShowbackProjectsListDto) SetMonitoringUrl

func (o *ShowbackProjectsListDto) SetMonitoringUrl(v string)

SetMonitoringUrl gets a reference to the given NullableString and assigns it to the MonitoringUrl field.

func (*ShowbackProjectsListDto) SetMonitoringUrlNil

func (o *ShowbackProjectsListDto) SetMonitoringUrlNil()

SetMonitoringUrlNil sets the value for MonitoringUrl to be an explicit nil

func (*ShowbackProjectsListDto) SetMonitoringUsername

func (o *ShowbackProjectsListDto) SetMonitoringUsername(v string)

SetMonitoringUsername gets a reference to the given NullableString and assigns it to the MonitoringUsername field.

func (*ShowbackProjectsListDto) SetMonitoringUsernameNil

func (o *ShowbackProjectsListDto) SetMonitoringUsernameNil()

SetMonitoringUsernameNil sets the value for MonitoringUsername to be an explicit nil

func (*ShowbackProjectsListDto) SetName

func (o *ShowbackProjectsListDto) SetName(v string)

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

func (*ShowbackProjectsListDto) SetNameNil

func (o *ShowbackProjectsListDto) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (ShowbackProjectsListDto) ToMap

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

func (*ShowbackProjectsListDto) UnsetMonitoringPassword

func (o *ShowbackProjectsListDto) UnsetMonitoringPassword()

UnsetMonitoringPassword ensures that no value is present for MonitoringPassword, not even an explicit nil

func (*ShowbackProjectsListDto) UnsetMonitoringUrl

func (o *ShowbackProjectsListDto) UnsetMonitoringUrl()

UnsetMonitoringUrl ensures that no value is present for MonitoringUrl, not even an explicit nil

func (*ShowbackProjectsListDto) UnsetMonitoringUsername

func (o *ShowbackProjectsListDto) UnsetMonitoringUsername()

UnsetMonitoringUsername ensures that no value is present for MonitoringUsername, not even an explicit nil

func (*ShowbackProjectsListDto) UnsetName

func (o *ShowbackProjectsListDto) UnsetName()

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

type ShowbackRuleEntityDto

type ShowbackRuleEntityDto struct {
	Id   *int32         `json:"id,omitempty"`
	Name NullableString `json:"name,omitempty"`
}

ShowbackRuleEntityDto struct for ShowbackRuleEntityDto

func NewShowbackRuleEntityDto

func NewShowbackRuleEntityDto() *ShowbackRuleEntityDto

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

func NewShowbackRuleEntityDtoWithDefaults

func NewShowbackRuleEntityDtoWithDefaults() *ShowbackRuleEntityDto

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

func (*ShowbackRuleEntityDto) GetId

func (o *ShowbackRuleEntityDto) GetId() int32

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

func (*ShowbackRuleEntityDto) GetIdOk

func (o *ShowbackRuleEntityDto) GetIdOk() (*int32, bool)

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

func (*ShowbackRuleEntityDto) GetName

func (o *ShowbackRuleEntityDto) GetName() string

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

func (*ShowbackRuleEntityDto) GetNameOk

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

func (o *ShowbackRuleEntityDto) HasId() bool

HasId returns a boolean if a field has been set.

func (*ShowbackRuleEntityDto) HasName

func (o *ShowbackRuleEntityDto) HasName() bool

HasName returns a boolean if a field has been set.

func (ShowbackRuleEntityDto) MarshalJSON

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

func (*ShowbackRuleEntityDto) SetId

func (o *ShowbackRuleEntityDto) SetId(v int32)

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

func (*ShowbackRuleEntityDto) SetName

func (o *ShowbackRuleEntityDto) SetName(v string)

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

func (*ShowbackRuleEntityDto) SetNameNil

func (o *ShowbackRuleEntityDto) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (ShowbackRuleEntityDto) ToMap

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

func (*ShowbackRuleEntityDto) UnsetName

func (o *ShowbackRuleEntityDto) UnsetName()

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

type ShowbackRuleList

type ShowbackRuleList struct {
	Data       []ShowbackRulesListDto `json:"data,omitempty"`
	TotalCount *int32                 `json:"totalCount,omitempty"`
}

ShowbackRuleList struct for ShowbackRuleList

func NewShowbackRuleList

func NewShowbackRuleList() *ShowbackRuleList

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

func NewShowbackRuleListWithDefaults

func NewShowbackRuleListWithDefaults() *ShowbackRuleList

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

func (*ShowbackRuleList) GetData

func (o *ShowbackRuleList) GetData() []ShowbackRulesListDto

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

func (*ShowbackRuleList) GetDataOk

func (o *ShowbackRuleList) GetDataOk() ([]ShowbackRulesListDto, bool)

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

func (*ShowbackRuleList) GetTotalCount

func (o *ShowbackRuleList) GetTotalCount() int32

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*ShowbackRuleList) GetTotalCountOk

func (o *ShowbackRuleList) GetTotalCountOk() (*int32, bool)

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

func (*ShowbackRuleList) HasData

func (o *ShowbackRuleList) HasData() bool

HasData returns a boolean if a field has been set.

func (*ShowbackRuleList) HasTotalCount

func (o *ShowbackRuleList) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (ShowbackRuleList) MarshalJSON

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

func (*ShowbackRuleList) SetData

func (o *ShowbackRuleList) SetData(v []ShowbackRulesListDto)

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

func (*ShowbackRuleList) SetTotalCount

func (o *ShowbackRuleList) SetTotalCount(v int32)

SetTotalCount gets a reference to the given int32 and assigns it to the TotalCount field.

func (ShowbackRuleList) ToMap

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

type ShowbackRulesAPIService

type ShowbackRulesAPIService service

ShowbackRulesAPIService ShowbackRulesAPI service

func (*ShowbackRulesAPIService) ShowbackrulesCreate

ShowbackrulesCreate Create showback rule

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

func (*ShowbackRulesAPIService) ShowbackrulesCreateExecute

Execute executes the request

@return ApiResponse

func (*ShowbackRulesAPIService) ShowbackrulesDelete

ShowbackrulesDelete Delete showback rule

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

func (*ShowbackRulesAPIService) ShowbackrulesDeleteAll

ShowbackrulesDeleteAll Delete multiple showback rule

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

func (*ShowbackRulesAPIService) ShowbackrulesDeleteAllExecute

func (a *ShowbackRulesAPIService) ShowbackrulesDeleteAllExecute(r ApiShowbackrulesDeleteAllRequest) (*http.Response, error)

Execute executes the request

func (*ShowbackRulesAPIService) ShowbackrulesDeleteExecute

func (a *ShowbackRulesAPIService) ShowbackrulesDeleteExecute(r ApiShowbackrulesDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ShowbackRulesAPIService) ShowbackrulesList

ShowbackrulesList Retrieve all showback rules

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

func (*ShowbackRulesAPIService) ShowbackrulesListExecute

Execute executes the request

@return ShowbackRuleList

func (*ShowbackRulesAPIService) ShowbackrulesUpdate

ShowbackrulesUpdate Create showback rule

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

func (*ShowbackRulesAPIService) ShowbackrulesUpdateExecute

func (a *ShowbackRulesAPIService) ShowbackrulesUpdateExecute(r ApiShowbackrulesUpdateRequest) (*http.Response, error)

Execute executes the request

type ShowbackRulesListDto

type ShowbackRulesListDto struct {
	Id                     *int32                   `json:"id,omitempty"`
	Name                   NullableString           `json:"name,omitempty"`
	ByLabel                NullableString           `json:"byLabel,omitempty"`
	MetricName             NullableString           `json:"metricName,omitempty"`
	CreatedAt              NullableString           `json:"createdAt,omitempty"`
	Kind                   NullableString           `json:"kind,omitempty"`
	Type                   NullableString           `json:"type,omitempty"`
	Price                  *float64                 `json:"price,omitempty"`
	ProjectAlertLimit      *int32                   `json:"projectAlertLimit,omitempty"`
	GlobalAlertLimit       *int32                   `json:"globalAlertLimit,omitempty"`
	OrganizationName       NullableString           `json:"organizationName,omitempty"`
	OrganizationId         *int32                   `json:"organizationId,omitempty"`
	BillingStartDate       NullableString           `json:"billingStartDate,omitempty"`
	Labels                 []ShowbackLabelCreateDto `json:"labels,omitempty"`
	ShowbackCredentialName NullableString           `json:"showbackCredentialName,omitempty"`
	ShowbackCredentialId   NullableInt32            `json:"showbackCredentialId,omitempty"`
	CreatedBy              NullableString           `json:"createdBy,omitempty"`
	LastModified           NullableString           `json:"lastModified,omitempty"`
	LastModifiedBy         NullableString           `json:"lastModifiedBy,omitempty"`
}

ShowbackRulesListDto struct for ShowbackRulesListDto

func NewShowbackRulesListDto

func NewShowbackRulesListDto() *ShowbackRulesListDto

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

func NewShowbackRulesListDtoWithDefaults

func NewShowbackRulesListDtoWithDefaults() *ShowbackRulesListDto

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

func (*ShowbackRulesListDto) GetBillingStartDate

func (o *ShowbackRulesListDto) GetBillingStartDate() string

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

func (*ShowbackRulesListDto) GetBillingStartDateOk

func (o *ShowbackRulesListDto) GetBillingStartDateOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetByLabel

func (o *ShowbackRulesListDto) GetByLabel() string

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

func (*ShowbackRulesListDto) GetByLabelOk

func (o *ShowbackRulesListDto) GetByLabelOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetCreatedAt

func (o *ShowbackRulesListDto) GetCreatedAt() string

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

func (*ShowbackRulesListDto) GetCreatedAtOk

func (o *ShowbackRulesListDto) GetCreatedAtOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetCreatedBy

func (o *ShowbackRulesListDto) GetCreatedBy() string

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

func (*ShowbackRulesListDto) GetCreatedByOk

func (o *ShowbackRulesListDto) GetCreatedByOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetGlobalAlertLimit

func (o *ShowbackRulesListDto) GetGlobalAlertLimit() int32

GetGlobalAlertLimit returns the GlobalAlertLimit field value if set, zero value otherwise.

func (*ShowbackRulesListDto) GetGlobalAlertLimitOk

func (o *ShowbackRulesListDto) GetGlobalAlertLimitOk() (*int32, bool)

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

func (*ShowbackRulesListDto) GetId

func (o *ShowbackRulesListDto) GetId() int32

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

func (*ShowbackRulesListDto) GetIdOk

func (o *ShowbackRulesListDto) GetIdOk() (*int32, bool)

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

func (*ShowbackRulesListDto) GetKind

func (o *ShowbackRulesListDto) GetKind() string

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

func (*ShowbackRulesListDto) GetKindOk

func (o *ShowbackRulesListDto) GetKindOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetLabels

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

func (*ShowbackRulesListDto) GetLabelsOk

func (o *ShowbackRulesListDto) GetLabelsOk() ([]ShowbackLabelCreateDto, bool)

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

func (*ShowbackRulesListDto) GetLastModified

func (o *ShowbackRulesListDto) GetLastModified() string

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

func (*ShowbackRulesListDto) GetLastModifiedBy

func (o *ShowbackRulesListDto) GetLastModifiedBy() string

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

func (*ShowbackRulesListDto) GetLastModifiedByOk

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

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

func (*ShowbackRulesListDto) GetLastModifiedOk

func (o *ShowbackRulesListDto) GetLastModifiedOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetMetricName

func (o *ShowbackRulesListDto) GetMetricName() string

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

func (*ShowbackRulesListDto) GetMetricNameOk

func (o *ShowbackRulesListDto) GetMetricNameOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetName

func (o *ShowbackRulesListDto) GetName() string

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

func (*ShowbackRulesListDto) GetNameOk

func (o *ShowbackRulesListDto) 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 (*ShowbackRulesListDto) GetOrganizationId

func (o *ShowbackRulesListDto) GetOrganizationId() int32

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ShowbackRulesListDto) GetOrganizationIdOk

func (o *ShowbackRulesListDto) GetOrganizationIdOk() (*int32, bool)

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

func (*ShowbackRulesListDto) GetOrganizationName

func (o *ShowbackRulesListDto) GetOrganizationName() string

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

func (*ShowbackRulesListDto) GetOrganizationNameOk

func (o *ShowbackRulesListDto) GetOrganizationNameOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetPrice

func (o *ShowbackRulesListDto) GetPrice() float64

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

func (*ShowbackRulesListDto) GetPriceOk

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

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

func (*ShowbackRulesListDto) GetProjectAlertLimit

func (o *ShowbackRulesListDto) GetProjectAlertLimit() int32

GetProjectAlertLimit returns the ProjectAlertLimit field value if set, zero value otherwise.

func (*ShowbackRulesListDto) GetProjectAlertLimitOk

func (o *ShowbackRulesListDto) GetProjectAlertLimitOk() (*int32, bool)

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

func (*ShowbackRulesListDto) GetShowbackCredentialId

func (o *ShowbackRulesListDto) GetShowbackCredentialId() int32

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

func (*ShowbackRulesListDto) GetShowbackCredentialIdOk

func (o *ShowbackRulesListDto) GetShowbackCredentialIdOk() (*int32, bool)

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

func (*ShowbackRulesListDto) GetShowbackCredentialName

func (o *ShowbackRulesListDto) GetShowbackCredentialName() string

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

func (*ShowbackRulesListDto) GetShowbackCredentialNameOk

func (o *ShowbackRulesListDto) GetShowbackCredentialNameOk() (*string, bool)

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

func (*ShowbackRulesListDto) GetType

func (o *ShowbackRulesListDto) GetType() string

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

func (*ShowbackRulesListDto) GetTypeOk

func (o *ShowbackRulesListDto) 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 (*ShowbackRulesListDto) HasBillingStartDate

func (o *ShowbackRulesListDto) HasBillingStartDate() bool

HasBillingStartDate returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasByLabel

func (o *ShowbackRulesListDto) HasByLabel() bool

HasByLabel returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasCreatedAt

func (o *ShowbackRulesListDto) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasCreatedBy

func (o *ShowbackRulesListDto) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasGlobalAlertLimit

func (o *ShowbackRulesListDto) HasGlobalAlertLimit() bool

HasGlobalAlertLimit returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasId

func (o *ShowbackRulesListDto) HasId() bool

HasId returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasKind

func (o *ShowbackRulesListDto) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasLabels

func (o *ShowbackRulesListDto) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasLastModified

func (o *ShowbackRulesListDto) HasLastModified() bool

HasLastModified returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasLastModifiedBy

func (o *ShowbackRulesListDto) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasMetricName

func (o *ShowbackRulesListDto) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasName

func (o *ShowbackRulesListDto) HasName() bool

HasName returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasOrganizationId

func (o *ShowbackRulesListDto) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasOrganizationName

func (o *ShowbackRulesListDto) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasPrice

func (o *ShowbackRulesListDto) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasProjectAlertLimit

func (o *ShowbackRulesListDto) HasProjectAlertLimit() bool

HasProjectAlertLimit returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasShowbackCredentialId

func (o *ShowbackRulesListDto) HasShowbackCredentialId() bool

HasShowbackCredentialId returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasShowbackCredentialName

func (o *ShowbackRulesListDto) HasShowbackCredentialName() bool

HasShowbackCredentialName returns a boolean if a field has been set.

func (*ShowbackRulesListDto) HasType

func (o *ShowbackRulesListDto) HasType() bool

HasType returns a boolean if a field has been set.

func (ShowbackRulesListDto) MarshalJSON

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

func (*ShowbackRulesListDto) SetBillingStartDate

func (o *ShowbackRulesListDto) SetBillingStartDate(v string)

SetBillingStartDate gets a reference to the given NullableString and assigns it to the BillingStartDate field.

func (*ShowbackRulesListDto) SetBillingStartDateNil

func (o *ShowbackRulesListDto) SetBillingStartDateNil()

SetBillingStartDateNil sets the value for BillingStartDate to be an explicit nil

func (*ShowbackRulesListDto) SetByLabel

func (o *ShowbackRulesListDto) SetByLabel(v string)

SetByLabel gets a reference to the given NullableString and assigns it to the ByLabel field.

func (*ShowbackRulesListDto) SetByLabelNil

func (o *ShowbackRulesListDto) SetByLabelNil()

SetByLabelNil sets the value for ByLabel to be an explicit nil

func (*ShowbackRulesListDto) SetCreatedAt

func (o *ShowbackRulesListDto) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*ShowbackRulesListDto) SetCreatedAtNil

func (o *ShowbackRulesListDto) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*ShowbackRulesListDto) SetCreatedBy

func (o *ShowbackRulesListDto) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given NullableString and assigns it to the CreatedBy field.

func (*ShowbackRulesListDto) SetCreatedByNil

func (o *ShowbackRulesListDto) SetCreatedByNil()

SetCreatedByNil sets the value for CreatedBy to be an explicit nil

func (*ShowbackRulesListDto) SetGlobalAlertLimit

func (o *ShowbackRulesListDto) SetGlobalAlertLimit(v int32)

SetGlobalAlertLimit gets a reference to the given int32 and assigns it to the GlobalAlertLimit field.

func (*ShowbackRulesListDto) SetId

func (o *ShowbackRulesListDto) SetId(v int32)

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

func (*ShowbackRulesListDto) SetKind

func (o *ShowbackRulesListDto) SetKind(v string)

SetKind gets a reference to the given NullableString and assigns it to the Kind field.

func (*ShowbackRulesListDto) SetKindNil

func (o *ShowbackRulesListDto) SetKindNil()

SetKindNil sets the value for Kind to be an explicit nil

func (*ShowbackRulesListDto) SetLabels

func (o *ShowbackRulesListDto) SetLabels(v []ShowbackLabelCreateDto)

SetLabels gets a reference to the given []ShowbackLabelCreateDto and assigns it to the Labels field.

func (*ShowbackRulesListDto) SetLastModified

func (o *ShowbackRulesListDto) SetLastModified(v string)

SetLastModified gets a reference to the given NullableString and assigns it to the LastModified field.

func (*ShowbackRulesListDto) SetLastModifiedBy

func (o *ShowbackRulesListDto) SetLastModifiedBy(v string)

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

func (*ShowbackRulesListDto) SetLastModifiedByNil

func (o *ShowbackRulesListDto) SetLastModifiedByNil()

SetLastModifiedByNil sets the value for LastModifiedBy to be an explicit nil

func (*ShowbackRulesListDto) SetLastModifiedNil

func (o *ShowbackRulesListDto) SetLastModifiedNil()

SetLastModifiedNil sets the value for LastModified to be an explicit nil

func (*ShowbackRulesListDto) SetMetricName

func (o *ShowbackRulesListDto) SetMetricName(v string)

SetMetricName gets a reference to the given NullableString and assigns it to the MetricName field.

func (*ShowbackRulesListDto) SetMetricNameNil

func (o *ShowbackRulesListDto) SetMetricNameNil()

SetMetricNameNil sets the value for MetricName to be an explicit nil

func (*ShowbackRulesListDto) SetName

func (o *ShowbackRulesListDto) SetName(v string)

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

func (*ShowbackRulesListDto) SetNameNil

func (o *ShowbackRulesListDto) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ShowbackRulesListDto) SetOrganizationId

func (o *ShowbackRulesListDto) SetOrganizationId(v int32)

SetOrganizationId gets a reference to the given int32 and assigns it to the OrganizationId field.

func (*ShowbackRulesListDto) SetOrganizationName

func (o *ShowbackRulesListDto) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given NullableString and assigns it to the OrganizationName field.

func (*ShowbackRulesListDto) SetOrganizationNameNil

func (o *ShowbackRulesListDto) SetOrganizationNameNil()

SetOrganizationNameNil sets the value for OrganizationName to be an explicit nil

func (*ShowbackRulesListDto) SetPrice

func (o *ShowbackRulesListDto) SetPrice(v float64)

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

func (*ShowbackRulesListDto) SetProjectAlertLimit

func (o *ShowbackRulesListDto) SetProjectAlertLimit(v int32)

SetProjectAlertLimit gets a reference to the given int32 and assigns it to the ProjectAlertLimit field.

func (*ShowbackRulesListDto) SetShowbackCredentialId

func (o *ShowbackRulesListDto) SetShowbackCredentialId(v int32)

SetShowbackCredentialId gets a reference to the given NullableInt32 and assigns it to the ShowbackCredentialId field.

func (*ShowbackRulesListDto) SetShowbackCredentialIdNil

func (o *ShowbackRulesListDto) SetShowbackCredentialIdNil()

SetShowbackCredentialIdNil sets the value for ShowbackCredentialId to be an explicit nil

func (*ShowbackRulesListDto) SetShowbackCredentialName

func (o *ShowbackRulesListDto) SetShowbackCredentialName(v string)

SetShowbackCredentialName gets a reference to the given NullableString and assigns it to the ShowbackCredentialName field.

func (*ShowbackRulesListDto) SetShowbackCredentialNameNil

func (o *ShowbackRulesListDto) SetShowbackCredentialNameNil()

SetShowbackCredentialNameNil sets the value for ShowbackCredentialName to be an explicit nil

func (*ShowbackRulesListDto) SetType

func (o *ShowbackRulesListDto) SetType(v string)

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

func (*ShowbackRulesListDto) SetTypeNil

func (o *ShowbackRulesListDto) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ShowbackRulesListDto) ToMap

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

func (*ShowbackRulesListDto) UnsetBillingStartDate

func (o *ShowbackRulesListDto) UnsetBillingStartDate()

UnsetBillingStartDate ensures that no value is present for BillingStartDate, not even an explicit nil

func (*ShowbackRulesListDto) UnsetByLabel

func (o *ShowbackRulesListDto) UnsetByLabel()

UnsetByLabel ensures that no value is present for ByLabel, not even an explicit nil

func (*ShowbackRulesListDto) UnsetCreatedAt

func (o *ShowbackRulesListDto) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*ShowbackRulesListDto) UnsetCreatedBy

func (o *ShowbackRulesListDto) UnsetCreatedBy()

UnsetCreatedBy ensures that no value is present for CreatedBy, not even an explicit nil

func (*ShowbackRulesListDto) UnsetKind

func (o *ShowbackRulesListDto) UnsetKind()

UnsetKind ensures that no value is present for Kind, not even an explicit nil

func (*ShowbackRulesListDto) UnsetLastModified

func (o *ShowbackRulesListDto) UnsetLastModified()

UnsetLastModified ensures that no value is present for LastModified, not even an explicit nil

func (*ShowbackRulesListDto) UnsetLastModifiedBy

func (o *ShowbackRulesListDto) UnsetLastModifiedBy()

UnsetLastModifiedBy ensures that no value is present for LastModifiedBy, not even an explicit nil

func (*ShowbackRulesListDto) UnsetMetricName

func (o *ShowbackRulesListDto) UnsetMetricName()

UnsetMetricName ensures that no value is present for MetricName, not even an explicit nil

func (*ShowbackRulesListDto) UnsetName

func (o *ShowbackRulesListDto) UnsetName()

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

func (*ShowbackRulesListDto) UnsetOrganizationName

func (o *ShowbackRulesListDto) UnsetOrganizationName()

UnsetOrganizationName ensures that no value is present for OrganizationName, not even an explicit nil

func (*ShowbackRulesListDto) UnsetShowbackCredentialId

func (o *ShowbackRulesListDto) UnsetShowbackCredentialId()

UnsetShowbackCredentialId ensures that no value is present for ShowbackCredentialId, not even an explicit nil

func (*ShowbackRulesListDto) UnsetShowbackCredentialName

func (o *ShowbackRulesListDto) UnsetShowbackCredentialName()

UnsetShowbackCredentialName ensures that no value is present for ShowbackCredentialName, not even an explicit nil

func (*ShowbackRulesListDto) UnsetType

func (o *ShowbackRulesListDto) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ShowbackSummariesAPIService

type ShowbackSummariesAPIService service

ShowbackSummariesAPIService ShowbackSummariesAPI service

func (*ShowbackSummariesAPIService) ShowbacksummariesByLabel

ShowbacksummariesByLabel Grouped showback summary by label

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

func (*ShowbackSummariesAPIService) ShowbacksummariesByLabelExecute

Execute executes the request

@return GroupedShowbackByLabelList

func (*ShowbackSummariesAPIService) ShowbacksummariesByProject

ShowbacksummariesByProject Grouped showback summary by project

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

func (*ShowbackSummariesAPIService) ShowbacksummariesByProjectExecute

Execute executes the request

@return GroupedShowbackByProjectList

func (*ShowbackSummariesAPIService) ShowbacksummariesCreate

ShowbacksummariesCreate Create showback summary

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

func (*ShowbackSummariesAPIService) ShowbacksummariesCreateExecute

func (a *ShowbackSummariesAPIService) ShowbacksummariesCreateExecute(r ApiShowbacksummariesCreateRequest) (*http.Response, error)

Execute executes the request

func (*ShowbackSummariesAPIService) ShowbacksummariesExportCsv

ShowbacksummariesExportCsv Export Csv

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

func (*ShowbackSummariesAPIService) ShowbacksummariesExportCsvExecute

Execute executes the request

@return CsvExporter

func (*ShowbackSummariesAPIService) ShowbacksummariesGrouped

ShowbacksummariesGrouped Grouped showback summary

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

func (*ShowbackSummariesAPIService) ShowbacksummariesGroupedExecute

Execute executes the request

@return []GroupedShowbackSummaryListDto

func (*ShowbackSummariesAPIService) ShowbacksummariesGroupedList

ShowbacksummariesGroupedList Grouped list of showback summary

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

func (*ShowbackSummariesAPIService) ShowbacksummariesGroupedListExecute

Execute executes the request

@return GroupedShowbackList

type UpdateShowbackRuleCommand

type UpdateShowbackRuleCommand struct {
	Id                *int32                   `json:"id,omitempty"`
	Name              NullableString           `json:"name,omitempty"`
	ByLabel           NullableString           `json:"byLabel,omitempty"`
	MetricName        NullableString           `json:"metricName,omitempty"`
	Kind              *EShowbackType           `json:"kind,omitempty"`
	Type              *EPrometheusType         `json:"type,omitempty"`
	Price             NullableFloat64          `json:"price,omitempty"`
	ProjectAlertLimit NullableInt32            `json:"projectAlertLimit,omitempty"`
	GlobalAlertLimit  NullableInt32            `json:"globalAlertLimit,omitempty"`
	Labels            []ShowbackLabelCreateDto `json:"labels,omitempty"`
}

UpdateShowbackRuleCommand struct for UpdateShowbackRuleCommand

func NewUpdateShowbackRuleCommand

func NewUpdateShowbackRuleCommand() *UpdateShowbackRuleCommand

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

func NewUpdateShowbackRuleCommandWithDefaults

func NewUpdateShowbackRuleCommandWithDefaults() *UpdateShowbackRuleCommand

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

func (*UpdateShowbackRuleCommand) GetByLabel

func (o *UpdateShowbackRuleCommand) GetByLabel() string

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

func (*UpdateShowbackRuleCommand) GetByLabelOk

func (o *UpdateShowbackRuleCommand) GetByLabelOk() (*string, bool)

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

func (*UpdateShowbackRuleCommand) GetGlobalAlertLimit

func (o *UpdateShowbackRuleCommand) GetGlobalAlertLimit() int32

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

func (*UpdateShowbackRuleCommand) GetGlobalAlertLimitOk

func (o *UpdateShowbackRuleCommand) GetGlobalAlertLimitOk() (*int32, bool)

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

func (*UpdateShowbackRuleCommand) GetId

func (o *UpdateShowbackRuleCommand) GetId() int32

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

func (*UpdateShowbackRuleCommand) GetIdOk

func (o *UpdateShowbackRuleCommand) GetIdOk() (*int32, bool)

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

func (*UpdateShowbackRuleCommand) GetKind

GetKind returns the Kind field value if set, zero value otherwise.

func (*UpdateShowbackRuleCommand) GetKindOk

func (o *UpdateShowbackRuleCommand) GetKindOk() (*EShowbackType, bool)

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

func (*UpdateShowbackRuleCommand) GetLabels

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

func (*UpdateShowbackRuleCommand) GetLabelsOk

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

func (*UpdateShowbackRuleCommand) GetMetricName

func (o *UpdateShowbackRuleCommand) GetMetricName() string

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

func (*UpdateShowbackRuleCommand) GetMetricNameOk

func (o *UpdateShowbackRuleCommand) GetMetricNameOk() (*string, bool)

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

func (*UpdateShowbackRuleCommand) GetName

func (o *UpdateShowbackRuleCommand) GetName() string

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

func (*UpdateShowbackRuleCommand) GetNameOk

func (o *UpdateShowbackRuleCommand) 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 (*UpdateShowbackRuleCommand) GetPrice

func (o *UpdateShowbackRuleCommand) GetPrice() float64

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

func (*UpdateShowbackRuleCommand) GetPriceOk

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

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

func (*UpdateShowbackRuleCommand) GetProjectAlertLimit

func (o *UpdateShowbackRuleCommand) GetProjectAlertLimit() int32

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

func (*UpdateShowbackRuleCommand) GetProjectAlertLimitOk

func (o *UpdateShowbackRuleCommand) GetProjectAlertLimitOk() (*int32, bool)

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

func (*UpdateShowbackRuleCommand) GetType

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

func (*UpdateShowbackRuleCommand) GetTypeOk

func (o *UpdateShowbackRuleCommand) GetTypeOk() (*EPrometheusType, 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 (*UpdateShowbackRuleCommand) HasByLabel

func (o *UpdateShowbackRuleCommand) HasByLabel() bool

HasByLabel returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasGlobalAlertLimit

func (o *UpdateShowbackRuleCommand) HasGlobalAlertLimit() bool

HasGlobalAlertLimit returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasId

func (o *UpdateShowbackRuleCommand) HasId() bool

HasId returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasKind

func (o *UpdateShowbackRuleCommand) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasLabels

func (o *UpdateShowbackRuleCommand) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasMetricName

func (o *UpdateShowbackRuleCommand) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasName

func (o *UpdateShowbackRuleCommand) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasPrice

func (o *UpdateShowbackRuleCommand) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasProjectAlertLimit

func (o *UpdateShowbackRuleCommand) HasProjectAlertLimit() bool

HasProjectAlertLimit returns a boolean if a field has been set.

func (*UpdateShowbackRuleCommand) HasType

func (o *UpdateShowbackRuleCommand) HasType() bool

HasType returns a boolean if a field has been set.

func (UpdateShowbackRuleCommand) MarshalJSON

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

func (*UpdateShowbackRuleCommand) SetByLabel

func (o *UpdateShowbackRuleCommand) SetByLabel(v string)

SetByLabel gets a reference to the given NullableString and assigns it to the ByLabel field.

func (*UpdateShowbackRuleCommand) SetByLabelNil

func (o *UpdateShowbackRuleCommand) SetByLabelNil()

SetByLabelNil sets the value for ByLabel to be an explicit nil

func (*UpdateShowbackRuleCommand) SetGlobalAlertLimit

func (o *UpdateShowbackRuleCommand) SetGlobalAlertLimit(v int32)

SetGlobalAlertLimit gets a reference to the given NullableInt32 and assigns it to the GlobalAlertLimit field.

func (*UpdateShowbackRuleCommand) SetGlobalAlertLimitNil

func (o *UpdateShowbackRuleCommand) SetGlobalAlertLimitNil()

SetGlobalAlertLimitNil sets the value for GlobalAlertLimit to be an explicit nil

func (*UpdateShowbackRuleCommand) SetId

func (o *UpdateShowbackRuleCommand) SetId(v int32)

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

func (*UpdateShowbackRuleCommand) SetKind

SetKind gets a reference to the given EShowbackType and assigns it to the Kind field.

func (*UpdateShowbackRuleCommand) SetLabels

SetLabels gets a reference to the given []ShowbackLabelCreateDto and assigns it to the Labels field.

func (*UpdateShowbackRuleCommand) SetMetricName

func (o *UpdateShowbackRuleCommand) SetMetricName(v string)

SetMetricName gets a reference to the given NullableString and assigns it to the MetricName field.

func (*UpdateShowbackRuleCommand) SetMetricNameNil

func (o *UpdateShowbackRuleCommand) SetMetricNameNil()

SetMetricNameNil sets the value for MetricName to be an explicit nil

func (*UpdateShowbackRuleCommand) SetName

func (o *UpdateShowbackRuleCommand) SetName(v string)

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

func (*UpdateShowbackRuleCommand) SetNameNil

func (o *UpdateShowbackRuleCommand) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateShowbackRuleCommand) SetPrice

func (o *UpdateShowbackRuleCommand) SetPrice(v float64)

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

func (*UpdateShowbackRuleCommand) SetPriceNil

func (o *UpdateShowbackRuleCommand) SetPriceNil()

SetPriceNil sets the value for Price to be an explicit nil

func (*UpdateShowbackRuleCommand) SetProjectAlertLimit

func (o *UpdateShowbackRuleCommand) SetProjectAlertLimit(v int32)

SetProjectAlertLimit gets a reference to the given NullableInt32 and assigns it to the ProjectAlertLimit field.

func (*UpdateShowbackRuleCommand) SetProjectAlertLimitNil

func (o *UpdateShowbackRuleCommand) SetProjectAlertLimitNil()

SetProjectAlertLimitNil sets the value for ProjectAlertLimit to be an explicit nil

func (*UpdateShowbackRuleCommand) SetType

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

func (UpdateShowbackRuleCommand) ToMap

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

func (*UpdateShowbackRuleCommand) UnsetByLabel

func (o *UpdateShowbackRuleCommand) UnsetByLabel()

UnsetByLabel ensures that no value is present for ByLabel, not even an explicit nil

func (*UpdateShowbackRuleCommand) UnsetGlobalAlertLimit

func (o *UpdateShowbackRuleCommand) UnsetGlobalAlertLimit()

UnsetGlobalAlertLimit ensures that no value is present for GlobalAlertLimit, not even an explicit nil

func (*UpdateShowbackRuleCommand) UnsetMetricName

func (o *UpdateShowbackRuleCommand) UnsetMetricName()

UnsetMetricName ensures that no value is present for MetricName, not even an explicit nil

func (*UpdateShowbackRuleCommand) UnsetName

func (o *UpdateShowbackRuleCommand) UnsetName()

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

func (*UpdateShowbackRuleCommand) UnsetPrice

func (o *UpdateShowbackRuleCommand) UnsetPrice()

UnsetPrice ensures that no value is present for Price, not even an explicit nil

func (*UpdateShowbackRuleCommand) UnsetProjectAlertLimit

func (o *UpdateShowbackRuleCommand) UnsetProjectAlertLimit()

UnsetProjectAlertLimit ensures that no value is present for ProjectAlertLimit, not even an explicit nil

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL