cloudmonitoring

package
v1.0.2 Latest Latest
Warning

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

Go to latest
Published: Jul 21, 2025 License: MIT Imports: 19 Imported by: 2

README

Go API client for cloudmonitoring

Nuri Monitoring service

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

Installation

Install the following dependencies:

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

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

import cloudmonitoring "github.com/GIT_USER_ID/GIT_REPO_ID"

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

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

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

ctx := context.WithValue(context.Background(), cloudmonitoring.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 cloudmonitoring.ContextOperationServerIndices and cloudmonitoring.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://cloudmonitoring.kr-west1.dev2.samsungsdscloud.com/monitoring/event

Class Method HTTP request Description
OpenAPIAccountV1API GetAccountMembers Get /v1/cloudmonitorings/product/v1/accounts/members ListAccountMember
OpenAPIAccountV2API GetAccountProductList Get /v1/cloudmonitorings/product/v2/accounts/products ListAccountResources
OpenAPIAddressBookV2API GetAdressBookMemberList Get /v1/cloudmonitorings/product/v2/addrbooks/{addrbookId}/members ListAddressBookMembers
OpenAPIEventPolicyV2API DeleteEventPolicy Delete /v1/cloudmonitorings/event/v2/event-policies/{eventPolicyId} DeleteEventPolicy
OpenAPIEventPolicyV2API GetEventPolicyDetail Get /v1/cloudmonitorings/event/v2/event-policies/{eventPolicyId} ShowEventPolicy
OpenAPIEventPolicyV2API GetEventPolicyHistories Get /v1/cloudmonitorings/event/v2/event-policies/{eventPolicyId}/histories ListEventPolicyHistories
OpenAPIEventPolicyV2API GetEventPolicyNotification Get /v1/cloudmonitorings/event/v2/event-policies/{eventPolicyId}/notifications ListEventPolicyNotification
OpenAPIEventPolicyV2API GetProductEventPolicyList Get /v1/cloudmonitorings/event/v2/event-policies ListEventPolicies
OpenAPIEventPolicyV2API ModifyEventPolicy Put /v1/cloudmonitorings/event/v2/event-policies/{eventPolicyId} SetEventPolicy
OpenAPIEventPolicyV2API PutEventPolicy Post /v1/cloudmonitorings/event/v2/event-policies CreateEventPolicy
OpenAPIEventV2API GetAccountEventList Get /v1/cloudmonitorings/event/v2/accounts/events ListAccountEvents
OpenAPIEventV2API GetEventDetail Get /v1/cloudmonitorings/event/v2/events/{eventId} ShowResourceEvent
OpenAPIEventV2API GetEventNotificationStates Get /v1/cloudmonitorings/event/v2/events/{eventId}/notification-states ShowEventNotificationStates
OpenAPIEventV2API GetProductEventList Get /v1/cloudmonitorings/event/v2/events ListResourceEvents
OpenAPIMetricDataV2API GetMetricPerfDataList Post /v1/cloudmonitorings/product/v2/metric-data ListMetricPefData
OpenAPIMetricV2API GetMetricList Get /v1/cloudmonitorings/product/v2/metrics ListMetrics
OpenAPIProductTypeV1API GetProductTypeList Get /v1/cloudmonitorings/product/v1/product-types ListService
OpenAPIUserV2API GetAdressBookList Get /v1/cloudmonitorings/product/v2/users/addrbooks ListAddressBooks

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

X-Auth-Token
  • Type: API key
  • API key parameter name: X-Auth-Token
  • Location: HTTP header

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

Example

auth := context.WithValue(
		context.Background(),
		cloudmonitoring.ContextAPIKeys,
		map[string]cloudmonitoring.APIKey{
			"X-Auth-Token": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
X-User-Id
  • Type: API key
  • API key parameter name: X-User-Id
  • Location: HTTP header

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

Example

auth := context.WithValue(
		context.Background(),
		cloudmonitoring.ContextAPIKeys,
		map[string]cloudmonitoring.APIKey{
			"X-User-Id": {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

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

	// ContextSCP takes an Access Key and a Secret Key for signing SCP
	ContextSCP = contextKey("scpCredential")

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	OpenAPIAccountV1API *OpenAPIAccountV1APIService

	OpenAPIAccountV2API *OpenAPIAccountV2APIService

	OpenAPIAddressBookV2API *OpenAPIAddressBookV2APIService

	OpenAPIEventPolicyV2API *OpenAPIEventPolicyV2APIService

	OpenAPIEventV2API *OpenAPIEventV2APIService

	OpenAPIMetricDataV2API *OpenAPIMetricDataV2APIService

	OpenAPIMetricV2API *OpenAPIMetricV2APIService

	OpenAPIProductTypeV1API *OpenAPIProductTypeV1APIService

	OpenAPIUserV2API *OpenAPIUserV2APIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nuri Monitoring service API vNuri In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *scpsdk.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() *scpsdk.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 AccountProductDto

type AccountProductDto struct {
	// 프로젝트 아이디
	AccountId string `json:"accountId"`
	// 상품 삭제 일시
	EndDt *time.Time `json:"endDt,omitempty"`
	// 최종 이벤트 레벨
	LastEventLevel *string `json:"lastEventLevel,omitempty"`
	// 풀 이름
	PoolName *string `json:"poolName,omitempty"`
	// 상품 IP주소
	ProductIpAddress *string `json:"productIpAddress,omitempty"`
	// 상품 이름
	ProductName string `json:"productName"`
	// 상품 리소스 아이디
	ProductResourceId string `json:"productResourceId"`
	// 상품 상태 - 유효한 값 : Running, Down
	ProductState string `json:"productState"`
	// 상품 유형코드
	ProductTypeCode string `json:"productTypeCode"`
	// 상품 유형이름
	ProductTypeName string `json:"productTypeName"`
	// 상품 생성 일시
	StartDt time.Time `json:"startDt"`
}

AccountProductDto 프로젝트의 상품 정보 조회 시 응답을 전달하기 위한 객체

func NewAccountProductDto

func NewAccountProductDto(accountId string, productName string, productResourceId string, productState string, productTypeCode string, productTypeName string, startDt time.Time) *AccountProductDto

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

func NewAccountProductDtoWithDefaults

func NewAccountProductDtoWithDefaults() *AccountProductDto

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

func (*AccountProductDto) GetAccountId

func (o *AccountProductDto) GetAccountId() string

GetAccountId returns the AccountId field value

func (*AccountProductDto) GetAccountIdOk

func (o *AccountProductDto) GetAccountIdOk() (*string, bool)

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

func (*AccountProductDto) GetEndDt

func (o *AccountProductDto) GetEndDt() time.Time

GetEndDt returns the EndDt field value if set, zero value otherwise.

func (*AccountProductDto) GetEndDtOk

func (o *AccountProductDto) GetEndDtOk() (*time.Time, bool)

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

func (*AccountProductDto) GetLastEventLevel

func (o *AccountProductDto) GetLastEventLevel() string

GetLastEventLevel returns the LastEventLevel field value if set, zero value otherwise.

func (*AccountProductDto) GetLastEventLevelOk

func (o *AccountProductDto) GetLastEventLevelOk() (*string, bool)

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

func (*AccountProductDto) GetPoolName

func (o *AccountProductDto) GetPoolName() string

GetPoolName returns the PoolName field value if set, zero value otherwise.

func (*AccountProductDto) GetPoolNameOk

func (o *AccountProductDto) GetPoolNameOk() (*string, bool)

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

func (*AccountProductDto) GetProductIpAddress

func (o *AccountProductDto) GetProductIpAddress() string

GetProductIpAddress returns the ProductIpAddress field value if set, zero value otherwise.

func (*AccountProductDto) GetProductIpAddressOk

func (o *AccountProductDto) GetProductIpAddressOk() (*string, bool)

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

func (*AccountProductDto) GetProductName

func (o *AccountProductDto) GetProductName() string

GetProductName returns the ProductName field value

func (*AccountProductDto) GetProductNameOk

func (o *AccountProductDto) GetProductNameOk() (*string, bool)

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

func (*AccountProductDto) GetProductResourceId

func (o *AccountProductDto) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*AccountProductDto) GetProductResourceIdOk

func (o *AccountProductDto) GetProductResourceIdOk() (*string, bool)

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

func (*AccountProductDto) GetProductState

func (o *AccountProductDto) GetProductState() string

GetProductState returns the ProductState field value

func (*AccountProductDto) GetProductStateOk

func (o *AccountProductDto) GetProductStateOk() (*string, bool)

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

func (*AccountProductDto) GetProductTypeCode

func (o *AccountProductDto) GetProductTypeCode() string

GetProductTypeCode returns the ProductTypeCode field value

func (*AccountProductDto) GetProductTypeCodeOk

func (o *AccountProductDto) GetProductTypeCodeOk() (*string, bool)

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

func (*AccountProductDto) GetProductTypeName

func (o *AccountProductDto) GetProductTypeName() string

GetProductTypeName returns the ProductTypeName field value

func (*AccountProductDto) GetProductTypeNameOk

func (o *AccountProductDto) GetProductTypeNameOk() (*string, bool)

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

func (*AccountProductDto) GetStartDt

func (o *AccountProductDto) GetStartDt() time.Time

GetStartDt returns the StartDt field value

func (*AccountProductDto) GetStartDtOk

func (o *AccountProductDto) GetStartDtOk() (*time.Time, bool)

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

func (*AccountProductDto) HasEndDt

func (o *AccountProductDto) HasEndDt() bool

HasEndDt returns a boolean if a field has been set.

func (*AccountProductDto) HasLastEventLevel

func (o *AccountProductDto) HasLastEventLevel() bool

HasLastEventLevel returns a boolean if a field has been set.

func (*AccountProductDto) HasPoolName

func (o *AccountProductDto) HasPoolName() bool

HasPoolName returns a boolean if a field has been set.

func (*AccountProductDto) HasProductIpAddress

func (o *AccountProductDto) HasProductIpAddress() bool

HasProductIpAddress returns a boolean if a field has been set.

func (AccountProductDto) MarshalJSON

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

func (*AccountProductDto) SetAccountId

func (o *AccountProductDto) SetAccountId(v string)

SetAccountId sets field value

func (*AccountProductDto) SetEndDt

func (o *AccountProductDto) SetEndDt(v time.Time)

SetEndDt gets a reference to the given time.Time and assigns it to the EndDt field.

func (*AccountProductDto) SetLastEventLevel

func (o *AccountProductDto) SetLastEventLevel(v string)

SetLastEventLevel gets a reference to the given string and assigns it to the LastEventLevel field.

func (*AccountProductDto) SetPoolName

func (o *AccountProductDto) SetPoolName(v string)

SetPoolName gets a reference to the given string and assigns it to the PoolName field.

func (*AccountProductDto) SetProductIpAddress

func (o *AccountProductDto) SetProductIpAddress(v string)

SetProductIpAddress gets a reference to the given string and assigns it to the ProductIpAddress field.

func (*AccountProductDto) SetProductName

func (o *AccountProductDto) SetProductName(v string)

SetProductName sets field value

func (*AccountProductDto) SetProductResourceId

func (o *AccountProductDto) SetProductResourceId(v string)

SetProductResourceId sets field value

func (*AccountProductDto) SetProductState

func (o *AccountProductDto) SetProductState(v string)

SetProductState sets field value

func (*AccountProductDto) SetProductTypeCode

func (o *AccountProductDto) SetProductTypeCode(v string)

SetProductTypeCode sets field value

func (*AccountProductDto) SetProductTypeName

func (o *AccountProductDto) SetProductTypeName(v string)

SetProductTypeName sets field value

func (*AccountProductDto) SetStartDt

func (o *AccountProductDto) SetStartDt(v time.Time)

SetStartDt sets field value

func (AccountProductDto) ToMap

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

func (*AccountProductDto) UnmarshalJSON

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

type AddrbookAdditionalInfo

type AddrbookAdditionalInfo struct {
	// 멤버수
	MemberCount        int64    `json:"memberCount"`
	UserAdditionalInfo []Member `json:"userAdditionalInfo,omitempty"`
}

AddrbookAdditionalInfo 알림 수신인 주소록 부가 정보 객체

func NewAddrbookAdditionalInfo

func NewAddrbookAdditionalInfo(memberCount int64) *AddrbookAdditionalInfo

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

func NewAddrbookAdditionalInfoWithDefaults

func NewAddrbookAdditionalInfoWithDefaults() *AddrbookAdditionalInfo

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

func (*AddrbookAdditionalInfo) GetMemberCount

func (o *AddrbookAdditionalInfo) GetMemberCount() int64

GetMemberCount returns the MemberCount field value

func (*AddrbookAdditionalInfo) GetMemberCountOk

func (o *AddrbookAdditionalInfo) GetMemberCountOk() (*int64, bool)

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

func (*AddrbookAdditionalInfo) GetUserAdditionalInfo

func (o *AddrbookAdditionalInfo) GetUserAdditionalInfo() []Member

GetUserAdditionalInfo returns the UserAdditionalInfo field value if set, zero value otherwise.

func (*AddrbookAdditionalInfo) GetUserAdditionalInfoOk

func (o *AddrbookAdditionalInfo) GetUserAdditionalInfoOk() ([]Member, bool)

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

func (*AddrbookAdditionalInfo) HasUserAdditionalInfo

func (o *AddrbookAdditionalInfo) HasUserAdditionalInfo() bool

HasUserAdditionalInfo returns a boolean if a field has been set.

func (AddrbookAdditionalInfo) MarshalJSON

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

func (*AddrbookAdditionalInfo) SetMemberCount

func (o *AddrbookAdditionalInfo) SetMemberCount(v int64)

SetMemberCount sets field value

func (*AddrbookAdditionalInfo) SetUserAdditionalInfo

func (o *AddrbookAdditionalInfo) SetUserAdditionalInfo(v []Member)

SetUserAdditionalInfo gets a reference to the given []Member and assigns it to the UserAdditionalInfo field.

func (AddrbookAdditionalInfo) ToMap

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

func (*AddrbookAdditionalInfo) UnmarshalJSON

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

type AlarmAddrBookDto

type AlarmAddrBookDto struct {
	// 주소록 이름
	AddrBookName string `json:"addrBookName"`
	// 주소록 아이디
	AddrbookId string `json:"addrbookId"`
	// 생성자 아이디
	CreatedBy string `json:"createdBy"`
	// 생성자 이름
	CreatedByName string `json:"createdByName"`
	// 생성 일시
	CreatedDt time.Time `json:"createdDt"`
	// 멤버 수
	MemberCount int32 `json:"memberCount"`
}

AlarmAddrBookDto 주소록 조회 시 응답을 전달하기 위한 객체

func NewAlarmAddrBookDto

func NewAlarmAddrBookDto(addrBookName string, addrbookId string, createdBy string, createdByName string, createdDt time.Time, memberCount int32) *AlarmAddrBookDto

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

func NewAlarmAddrBookDtoWithDefaults

func NewAlarmAddrBookDtoWithDefaults() *AlarmAddrBookDto

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

func (*AlarmAddrBookDto) GetAddrBookName

func (o *AlarmAddrBookDto) GetAddrBookName() string

GetAddrBookName returns the AddrBookName field value

func (*AlarmAddrBookDto) GetAddrBookNameOk

func (o *AlarmAddrBookDto) GetAddrBookNameOk() (*string, bool)

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

func (*AlarmAddrBookDto) GetAddrbookId

func (o *AlarmAddrBookDto) GetAddrbookId() string

GetAddrbookId returns the AddrbookId field value

func (*AlarmAddrBookDto) GetAddrbookIdOk

func (o *AlarmAddrBookDto) GetAddrbookIdOk() (*string, bool)

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

func (*AlarmAddrBookDto) GetCreatedBy

func (o *AlarmAddrBookDto) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value

func (*AlarmAddrBookDto) GetCreatedByName

func (o *AlarmAddrBookDto) GetCreatedByName() string

GetCreatedByName returns the CreatedByName field value

func (*AlarmAddrBookDto) GetCreatedByNameOk

func (o *AlarmAddrBookDto) GetCreatedByNameOk() (*string, bool)

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

func (*AlarmAddrBookDto) GetCreatedByOk

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

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

func (*AlarmAddrBookDto) GetCreatedDt

func (o *AlarmAddrBookDto) GetCreatedDt() time.Time

GetCreatedDt returns the CreatedDt field value

func (*AlarmAddrBookDto) GetCreatedDtOk

func (o *AlarmAddrBookDto) GetCreatedDtOk() (*time.Time, bool)

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

func (*AlarmAddrBookDto) GetMemberCount

func (o *AlarmAddrBookDto) GetMemberCount() int32

GetMemberCount returns the MemberCount field value

func (*AlarmAddrBookDto) GetMemberCountOk

func (o *AlarmAddrBookDto) GetMemberCountOk() (*int32, bool)

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

func (AlarmAddrBookDto) MarshalJSON

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

func (*AlarmAddrBookDto) SetAddrBookName

func (o *AlarmAddrBookDto) SetAddrBookName(v string)

SetAddrBookName sets field value

func (*AlarmAddrBookDto) SetAddrbookId

func (o *AlarmAddrBookDto) SetAddrbookId(v string)

SetAddrbookId sets field value

func (*AlarmAddrBookDto) SetCreatedBy

func (o *AlarmAddrBookDto) SetCreatedBy(v string)

SetCreatedBy sets field value

func (*AlarmAddrBookDto) SetCreatedByName

func (o *AlarmAddrBookDto) SetCreatedByName(v string)

SetCreatedByName sets field value

func (*AlarmAddrBookDto) SetCreatedDt

func (o *AlarmAddrBookDto) SetCreatedDt(v time.Time)

SetCreatedDt sets field value

func (*AlarmAddrBookDto) SetMemberCount

func (o *AlarmAddrBookDto) SetMemberCount(v int32)

SetMemberCount sets field value

func (AlarmAddrBookDto) ToMap

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

func (*AlarmAddrBookDto) UnmarshalJSON

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

type AlarmAddrBookMemberDto

type AlarmAddrBookMemberDto struct {
	// 사용자 이메일
	UserEmail string `json:"userEmail"`
	// 사용자 리소스 아이디
	UserId string `json:"userId"`
	// 사용자 언어
	UserLanguage string `json:"userLanguage"`
	// 사용자 휴대전화번호
	UserMobileTelNo *string `json:"userMobileTelNo,omitempty"`
	// 사용자 이름
	UserName string `json:"userName"`
	// 사용자 타임존
	UserTimezone string `json:"userTimezone"`
}

AlarmAddrBookMemberDto 주소록 멤버 조회 시 응답을 전달하기 위한 객체

func NewAlarmAddrBookMemberDto

func NewAlarmAddrBookMemberDto(userEmail string, userId string, userLanguage string, userName string, userTimezone string) *AlarmAddrBookMemberDto

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

func NewAlarmAddrBookMemberDtoWithDefaults

func NewAlarmAddrBookMemberDtoWithDefaults() *AlarmAddrBookMemberDto

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

func (*AlarmAddrBookMemberDto) GetUserEmail

func (o *AlarmAddrBookMemberDto) GetUserEmail() string

GetUserEmail returns the UserEmail field value

func (*AlarmAddrBookMemberDto) GetUserEmailOk

func (o *AlarmAddrBookMemberDto) GetUserEmailOk() (*string, bool)

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

func (*AlarmAddrBookMemberDto) GetUserId

func (o *AlarmAddrBookMemberDto) GetUserId() string

GetUserId returns the UserId field value

func (*AlarmAddrBookMemberDto) GetUserIdOk

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

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

func (*AlarmAddrBookMemberDto) GetUserLanguage

func (o *AlarmAddrBookMemberDto) GetUserLanguage() string

GetUserLanguage returns the UserLanguage field value

func (*AlarmAddrBookMemberDto) GetUserLanguageOk

func (o *AlarmAddrBookMemberDto) GetUserLanguageOk() (*string, bool)

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

func (*AlarmAddrBookMemberDto) GetUserMobileTelNo

func (o *AlarmAddrBookMemberDto) GetUserMobileTelNo() string

GetUserMobileTelNo returns the UserMobileTelNo field value if set, zero value otherwise.

func (*AlarmAddrBookMemberDto) GetUserMobileTelNoOk

func (o *AlarmAddrBookMemberDto) GetUserMobileTelNoOk() (*string, bool)

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

func (*AlarmAddrBookMemberDto) GetUserName

func (o *AlarmAddrBookMemberDto) GetUserName() string

GetUserName returns the UserName field value

func (*AlarmAddrBookMemberDto) GetUserNameOk

func (o *AlarmAddrBookMemberDto) GetUserNameOk() (*string, bool)

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

func (*AlarmAddrBookMemberDto) GetUserTimezone

func (o *AlarmAddrBookMemberDto) GetUserTimezone() string

GetUserTimezone returns the UserTimezone field value

func (*AlarmAddrBookMemberDto) GetUserTimezoneOk

func (o *AlarmAddrBookMemberDto) GetUserTimezoneOk() (*string, bool)

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

func (*AlarmAddrBookMemberDto) HasUserMobileTelNo

func (o *AlarmAddrBookMemberDto) HasUserMobileTelNo() bool

HasUserMobileTelNo returns a boolean if a field has been set.

func (AlarmAddrBookMemberDto) MarshalJSON

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

func (*AlarmAddrBookMemberDto) SetUserEmail

func (o *AlarmAddrBookMemberDto) SetUserEmail(v string)

SetUserEmail sets field value

func (*AlarmAddrBookMemberDto) SetUserId

func (o *AlarmAddrBookMemberDto) SetUserId(v string)

SetUserId sets field value

func (*AlarmAddrBookMemberDto) SetUserLanguage

func (o *AlarmAddrBookMemberDto) SetUserLanguage(v string)

SetUserLanguage sets field value

func (*AlarmAddrBookMemberDto) SetUserMobileTelNo

func (o *AlarmAddrBookMemberDto) SetUserMobileTelNo(v string)

SetUserMobileTelNo gets a reference to the given string and assigns it to the UserMobileTelNo field.

func (*AlarmAddrBookMemberDto) SetUserName

func (o *AlarmAddrBookMemberDto) SetUserName(v string)

SetUserName sets field value

func (*AlarmAddrBookMemberDto) SetUserTimezone

func (o *AlarmAddrBookMemberDto) SetUserTimezone(v string)

SetUserTimezone sets field value

func (AlarmAddrBookMemberDto) ToMap

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

func (*AlarmAddrBookMemberDto) UnmarshalJSON

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

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 EventDetailResponse

type EventDetailResponse struct {
	// 이벤트 지속 시간 - 단위: 초
	DurationSecond int64 `json:"durationSecond"`
	// 종료일시
	EndDt *time.Time `json:"endDt,omitempty"`
	// 이벤트 아이디
	EventId string `json:"eventId"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지
	EventMessage string `json:"eventMessage"`
	// 이벤트 정책 아이디
	EventPolicyId      *int64              `json:"eventPolicyId,omitempty"`
	EventPolicySummary EventPolicyResponse `json:"eventPolicySummary"`
	// Event State
	EventState string `json:"eventState"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName    *string       `json:"metricName,omitempty"`
	MetricSummary MetricSummary `json:"metricSummary"`
	// 오브젝트 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// 개별항목 유형 이름
	ObjectTypeName *string `json:"objectTypeName,omitempty"`
	// 상품 IP주소
	ProductIpAddress *string `json:"productIpAddress,omitempty"`
	// 상품 이름
	ProductName *string `json:"productName,omitempty"`
	// 상품 리소스 아이디
	ProductResourceId string         `json:"productResourceId"`
	ProductSummary    ProductSummary `json:"productSummary"`
	// 상품 유형 코드
	ProductTypeCode *string `json:"productTypeCode,omitempty"`
	// 시작일시
	StartDt time.Time `json:"startDt"`
}

EventDetailResponse 이벤트 응답 전송 객체

func NewEventDetailResponse

func NewEventDetailResponse(durationSecond int64, eventId string, eventLevel string, eventMessage string, eventPolicySummary EventPolicyResponse, eventState string, metricKey string, metricSummary MetricSummary, productResourceId string, productSummary ProductSummary, startDt time.Time) *EventDetailResponse

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

func NewEventDetailResponseWithDefaults

func NewEventDetailResponseWithDefaults() *EventDetailResponse

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

func (*EventDetailResponse) GetDurationSecond

func (o *EventDetailResponse) GetDurationSecond() int64

GetDurationSecond returns the DurationSecond field value

func (*EventDetailResponse) GetDurationSecondOk

func (o *EventDetailResponse) GetDurationSecondOk() (*int64, bool)

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

func (*EventDetailResponse) GetEndDt

func (o *EventDetailResponse) GetEndDt() time.Time

GetEndDt returns the EndDt field value if set, zero value otherwise.

func (*EventDetailResponse) GetEndDtOk

func (o *EventDetailResponse) GetEndDtOk() (*time.Time, bool)

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

func (*EventDetailResponse) GetEventId

func (o *EventDetailResponse) GetEventId() string

GetEventId returns the EventId field value

func (*EventDetailResponse) GetEventIdOk

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

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

func (*EventDetailResponse) GetEventLevel

func (o *EventDetailResponse) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*EventDetailResponse) GetEventLevelOk

func (o *EventDetailResponse) GetEventLevelOk() (*string, bool)

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

func (*EventDetailResponse) GetEventMessage

func (o *EventDetailResponse) GetEventMessage() string

GetEventMessage returns the EventMessage field value

func (*EventDetailResponse) GetEventMessageOk

func (o *EventDetailResponse) GetEventMessageOk() (*string, bool)

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

func (*EventDetailResponse) GetEventPolicyId

func (o *EventDetailResponse) GetEventPolicyId() int64

GetEventPolicyId returns the EventPolicyId field value if set, zero value otherwise.

func (*EventDetailResponse) GetEventPolicyIdOk

func (o *EventDetailResponse) GetEventPolicyIdOk() (*int64, bool)

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

func (*EventDetailResponse) GetEventPolicySummary

func (o *EventDetailResponse) GetEventPolicySummary() EventPolicyResponse

GetEventPolicySummary returns the EventPolicySummary field value

func (*EventDetailResponse) GetEventPolicySummaryOk

func (o *EventDetailResponse) GetEventPolicySummaryOk() (*EventPolicyResponse, bool)

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

func (*EventDetailResponse) GetEventState

func (o *EventDetailResponse) GetEventState() string

GetEventState returns the EventState field value

func (*EventDetailResponse) GetEventStateOk

func (o *EventDetailResponse) GetEventStateOk() (*string, bool)

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

func (*EventDetailResponse) GetMetricKey

func (o *EventDetailResponse) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*EventDetailResponse) GetMetricKeyOk

func (o *EventDetailResponse) GetMetricKeyOk() (*string, bool)

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

func (*EventDetailResponse) GetMetricName

func (o *EventDetailResponse) GetMetricName() string

GetMetricName returns the MetricName field value if set, zero value otherwise.

func (*EventDetailResponse) GetMetricNameOk

func (o *EventDetailResponse) 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.

func (*EventDetailResponse) GetMetricSummary

func (o *EventDetailResponse) GetMetricSummary() MetricSummary

GetMetricSummary returns the MetricSummary field value

func (*EventDetailResponse) GetMetricSummaryOk

func (o *EventDetailResponse) GetMetricSummaryOk() (*MetricSummary, bool)

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

func (*EventDetailResponse) GetObjectDisplayName

func (o *EventDetailResponse) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*EventDetailResponse) GetObjectDisplayNameOk

func (o *EventDetailResponse) GetObjectDisplayNameOk() (*string, bool)

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

func (*EventDetailResponse) GetObjectName

func (o *EventDetailResponse) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*EventDetailResponse) GetObjectNameOk

func (o *EventDetailResponse) GetObjectNameOk() (*string, bool)

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

func (*EventDetailResponse) GetObjectType

func (o *EventDetailResponse) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*EventDetailResponse) GetObjectTypeName

func (o *EventDetailResponse) GetObjectTypeName() string

GetObjectTypeName returns the ObjectTypeName field value if set, zero value otherwise.

func (*EventDetailResponse) GetObjectTypeNameOk

func (o *EventDetailResponse) GetObjectTypeNameOk() (*string, bool)

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

func (*EventDetailResponse) GetObjectTypeOk

func (o *EventDetailResponse) GetObjectTypeOk() (*string, bool)

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

func (*EventDetailResponse) GetProductIpAddress

func (o *EventDetailResponse) GetProductIpAddress() string

GetProductIpAddress returns the ProductIpAddress field value if set, zero value otherwise.

func (*EventDetailResponse) GetProductIpAddressOk

func (o *EventDetailResponse) GetProductIpAddressOk() (*string, bool)

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

func (*EventDetailResponse) GetProductName

func (o *EventDetailResponse) GetProductName() string

GetProductName returns the ProductName field value if set, zero value otherwise.

func (*EventDetailResponse) GetProductNameOk

func (o *EventDetailResponse) GetProductNameOk() (*string, bool)

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

func (*EventDetailResponse) GetProductResourceId

func (o *EventDetailResponse) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*EventDetailResponse) GetProductResourceIdOk

func (o *EventDetailResponse) GetProductResourceIdOk() (*string, bool)

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

func (*EventDetailResponse) GetProductSummary

func (o *EventDetailResponse) GetProductSummary() ProductSummary

GetProductSummary returns the ProductSummary field value

func (*EventDetailResponse) GetProductSummaryOk

func (o *EventDetailResponse) GetProductSummaryOk() (*ProductSummary, bool)

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

func (*EventDetailResponse) GetProductTypeCode

func (o *EventDetailResponse) GetProductTypeCode() string

GetProductTypeCode returns the ProductTypeCode field value if set, zero value otherwise.

func (*EventDetailResponse) GetProductTypeCodeOk

func (o *EventDetailResponse) GetProductTypeCodeOk() (*string, bool)

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

func (*EventDetailResponse) GetStartDt

func (o *EventDetailResponse) GetStartDt() time.Time

GetStartDt returns the StartDt field value

func (*EventDetailResponse) GetStartDtOk

func (o *EventDetailResponse) GetStartDtOk() (*time.Time, bool)

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

func (*EventDetailResponse) HasEndDt

func (o *EventDetailResponse) HasEndDt() bool

HasEndDt returns a boolean if a field has been set.

func (*EventDetailResponse) HasEventPolicyId

func (o *EventDetailResponse) HasEventPolicyId() bool

HasEventPolicyId returns a boolean if a field has been set.

func (*EventDetailResponse) HasMetricName

func (o *EventDetailResponse) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*EventDetailResponse) HasObjectDisplayName

func (o *EventDetailResponse) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*EventDetailResponse) HasObjectName

func (o *EventDetailResponse) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*EventDetailResponse) HasObjectType

func (o *EventDetailResponse) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*EventDetailResponse) HasObjectTypeName

func (o *EventDetailResponse) HasObjectTypeName() bool

HasObjectTypeName returns a boolean if a field has been set.

func (*EventDetailResponse) HasProductIpAddress

func (o *EventDetailResponse) HasProductIpAddress() bool

HasProductIpAddress returns a boolean if a field has been set.

func (*EventDetailResponse) HasProductName

func (o *EventDetailResponse) HasProductName() bool

HasProductName returns a boolean if a field has been set.

func (*EventDetailResponse) HasProductTypeCode

func (o *EventDetailResponse) HasProductTypeCode() bool

HasProductTypeCode returns a boolean if a field has been set.

func (EventDetailResponse) MarshalJSON

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

func (*EventDetailResponse) SetDurationSecond

func (o *EventDetailResponse) SetDurationSecond(v int64)

SetDurationSecond sets field value

func (*EventDetailResponse) SetEndDt

func (o *EventDetailResponse) SetEndDt(v time.Time)

SetEndDt gets a reference to the given time.Time and assigns it to the EndDt field.

func (*EventDetailResponse) SetEventId

func (o *EventDetailResponse) SetEventId(v string)

SetEventId sets field value

func (*EventDetailResponse) SetEventLevel

func (o *EventDetailResponse) SetEventLevel(v string)

SetEventLevel sets field value

func (*EventDetailResponse) SetEventMessage

func (o *EventDetailResponse) SetEventMessage(v string)

SetEventMessage sets field value

func (*EventDetailResponse) SetEventPolicyId

func (o *EventDetailResponse) SetEventPolicyId(v int64)

SetEventPolicyId gets a reference to the given int64 and assigns it to the EventPolicyId field.

func (*EventDetailResponse) SetEventPolicySummary

func (o *EventDetailResponse) SetEventPolicySummary(v EventPolicyResponse)

SetEventPolicySummary sets field value

func (*EventDetailResponse) SetEventState

func (o *EventDetailResponse) SetEventState(v string)

SetEventState sets field value

func (*EventDetailResponse) SetMetricKey

func (o *EventDetailResponse) SetMetricKey(v string)

SetMetricKey sets field value

func (*EventDetailResponse) SetMetricName

func (o *EventDetailResponse) SetMetricName(v string)

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

func (*EventDetailResponse) SetMetricSummary

func (o *EventDetailResponse) SetMetricSummary(v MetricSummary)

SetMetricSummary sets field value

func (*EventDetailResponse) SetObjectDisplayName

func (o *EventDetailResponse) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*EventDetailResponse) SetObjectName

func (o *EventDetailResponse) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*EventDetailResponse) SetObjectType

func (o *EventDetailResponse) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*EventDetailResponse) SetObjectTypeName

func (o *EventDetailResponse) SetObjectTypeName(v string)

SetObjectTypeName gets a reference to the given string and assigns it to the ObjectTypeName field.

func (*EventDetailResponse) SetProductIpAddress

func (o *EventDetailResponse) SetProductIpAddress(v string)

SetProductIpAddress gets a reference to the given string and assigns it to the ProductIpAddress field.

func (*EventDetailResponse) SetProductName

func (o *EventDetailResponse) SetProductName(v string)

SetProductName gets a reference to the given string and assigns it to the ProductName field.

func (*EventDetailResponse) SetProductResourceId

func (o *EventDetailResponse) SetProductResourceId(v string)

SetProductResourceId sets field value

func (*EventDetailResponse) SetProductSummary

func (o *EventDetailResponse) SetProductSummary(v ProductSummary)

SetProductSummary sets field value

func (*EventDetailResponse) SetProductTypeCode

func (o *EventDetailResponse) SetProductTypeCode(v string)

SetProductTypeCode gets a reference to the given string and assigns it to the ProductTypeCode field.

func (*EventDetailResponse) SetStartDt

func (o *EventDetailResponse) SetStartDt(v time.Time)

SetStartDt sets field value

func (EventDetailResponse) ToMap

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

func (*EventDetailResponse) UnmarshalJSON

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

type EventNotificationResponse

type EventNotificationResponse struct {
	// 이벤트 알림 상태
	NotificationStates []NotificationStatus   `json:"notificationStates"`
	User               map[string]interface{} `json:"user,omitempty"`
	// 사용자 이메일
	UserEmail *string `json:"userEmail,omitempty"`
	// 사용자 아이디
	UserId string `json:"userId"`
	// 사용자 휴대 전화번호
	UserMobileTelNo *string `json:"userMobileTelNo,omitempty"`
	// 사용자 이름
	UserNameNotification string `json:"userNameNotification"`
}

EventNotificationResponse 이벤트 알림 응답 전송 객체

func NewEventNotificationResponse

func NewEventNotificationResponse(notificationStates []NotificationStatus, userId string, userNameNotification string) *EventNotificationResponse

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

func NewEventNotificationResponseWithDefaults

func NewEventNotificationResponseWithDefaults() *EventNotificationResponse

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

func (*EventNotificationResponse) GetNotificationStates

func (o *EventNotificationResponse) GetNotificationStates() []NotificationStatus

GetNotificationStates returns the NotificationStates field value

func (*EventNotificationResponse) GetNotificationStatesOk

func (o *EventNotificationResponse) GetNotificationStatesOk() ([]NotificationStatus, bool)

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

func (*EventNotificationResponse) GetUser

func (o *EventNotificationResponse) GetUser() map[string]interface{}

GetUser returns the User field value if set, zero value otherwise.

func (*EventNotificationResponse) GetUserEmail

func (o *EventNotificationResponse) GetUserEmail() string

GetUserEmail returns the UserEmail field value if set, zero value otherwise.

func (*EventNotificationResponse) GetUserEmailOk

func (o *EventNotificationResponse) GetUserEmailOk() (*string, bool)

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

func (*EventNotificationResponse) GetUserId

func (o *EventNotificationResponse) GetUserId() string

GetUserId returns the UserId field value

func (*EventNotificationResponse) GetUserIdOk

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

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

func (*EventNotificationResponse) GetUserMobileTelNo

func (o *EventNotificationResponse) GetUserMobileTelNo() string

GetUserMobileTelNo returns the UserMobileTelNo field value if set, zero value otherwise.

func (*EventNotificationResponse) GetUserMobileTelNoOk

func (o *EventNotificationResponse) GetUserMobileTelNoOk() (*string, bool)

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

func (*EventNotificationResponse) GetUserNameNotification

func (o *EventNotificationResponse) GetUserNameNotification() string

GetUserNameNotification returns the UserNameNotification field value

func (*EventNotificationResponse) GetUserNameNotificationOk

func (o *EventNotificationResponse) GetUserNameNotificationOk() (*string, bool)

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

func (*EventNotificationResponse) GetUserOk

func (o *EventNotificationResponse) GetUserOk() (map[string]interface{}, bool)

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

func (*EventNotificationResponse) HasUser

func (o *EventNotificationResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*EventNotificationResponse) HasUserEmail

func (o *EventNotificationResponse) HasUserEmail() bool

HasUserEmail returns a boolean if a field has been set.

func (*EventNotificationResponse) HasUserMobileTelNo

func (o *EventNotificationResponse) HasUserMobileTelNo() bool

HasUserMobileTelNo returns a boolean if a field has been set.

func (EventNotificationResponse) MarshalJSON

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

func (*EventNotificationResponse) SetNotificationStates

func (o *EventNotificationResponse) SetNotificationStates(v []NotificationStatus)

SetNotificationStates sets field value

func (*EventNotificationResponse) SetUser

func (o *EventNotificationResponse) SetUser(v map[string]interface{})

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

func (*EventNotificationResponse) SetUserEmail

func (o *EventNotificationResponse) SetUserEmail(v string)

SetUserEmail gets a reference to the given string and assigns it to the UserEmail field.

func (*EventNotificationResponse) SetUserId

func (o *EventNotificationResponse) SetUserId(v string)

SetUserId sets field value

func (*EventNotificationResponse) SetUserMobileTelNo

func (o *EventNotificationResponse) SetUserMobileTelNo(v string)

SetUserMobileTelNo gets a reference to the given string and assigns it to the UserMobileTelNo field.

func (*EventNotificationResponse) SetUserNameNotification

func (o *EventNotificationResponse) SetUserNameNotification(v string)

SetUserNameNotification sets field value

func (EventNotificationResponse) ToMap

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

func (*EventNotificationResponse) UnmarshalJSON

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

type EventPolicyCreateRequest

type EventPolicyCreateRequest struct {
	EventPolicyRequest EventPolicyInfo `json:"eventPolicyRequest"`
	// 이벤트 알림 수신인 정보 - 알림 대상자 정보는 10개까지 지정할 수 있습니다.
	NotificationRecipients []NotificationRecipient `json:"notificationRecipients,omitempty"`
	// Product Resource ID - Product Resource ID can be viewed using @[ListAccountResources].
	ProductResourceId string `json:"productResourceId"`
}

EventPolicyCreateRequest 이벤트 정책 생성 시 요청 전송 객체

func NewEventPolicyCreateRequest

func NewEventPolicyCreateRequest(eventPolicyRequest EventPolicyInfo, productResourceId string) *EventPolicyCreateRequest

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

func NewEventPolicyCreateRequestWithDefaults

func NewEventPolicyCreateRequestWithDefaults() *EventPolicyCreateRequest

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

func (*EventPolicyCreateRequest) GetEventPolicyRequest

func (o *EventPolicyCreateRequest) GetEventPolicyRequest() EventPolicyInfo

GetEventPolicyRequest returns the EventPolicyRequest field value

func (*EventPolicyCreateRequest) GetEventPolicyRequestOk

func (o *EventPolicyCreateRequest) GetEventPolicyRequestOk() (*EventPolicyInfo, bool)

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

func (*EventPolicyCreateRequest) GetNotificationRecipients

func (o *EventPolicyCreateRequest) GetNotificationRecipients() []NotificationRecipient

GetNotificationRecipients returns the NotificationRecipients field value if set, zero value otherwise.

func (*EventPolicyCreateRequest) GetNotificationRecipientsOk

func (o *EventPolicyCreateRequest) GetNotificationRecipientsOk() ([]NotificationRecipient, bool)

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

func (*EventPolicyCreateRequest) GetProductResourceId

func (o *EventPolicyCreateRequest) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*EventPolicyCreateRequest) GetProductResourceIdOk

func (o *EventPolicyCreateRequest) GetProductResourceIdOk() (*string, bool)

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

func (*EventPolicyCreateRequest) HasNotificationRecipients

func (o *EventPolicyCreateRequest) HasNotificationRecipients() bool

HasNotificationRecipients returns a boolean if a field has been set.

func (EventPolicyCreateRequest) MarshalJSON

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

func (*EventPolicyCreateRequest) SetEventPolicyRequest

func (o *EventPolicyCreateRequest) SetEventPolicyRequest(v EventPolicyInfo)

SetEventPolicyRequest sets field value

func (*EventPolicyCreateRequest) SetNotificationRecipients

func (o *EventPolicyCreateRequest) SetNotificationRecipients(v []NotificationRecipient)

SetNotificationRecipients gets a reference to the given []NotificationRecipient and assigns it to the NotificationRecipients field.

func (*EventPolicyCreateRequest) SetProductResourceId

func (o *EventPolicyCreateRequest) SetProductResourceId(v string)

SetProductResourceId sets field value

func (EventPolicyCreateRequest) ToMap

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

func (*EventPolicyCreateRequest) UnmarshalJSON

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

type EventPolicyDetailResponse

type EventPolicyDetailResponse struct {
	AsgYn         *string                `json:"asgYn,omitempty"`
	AttrListStr   *string                `json:"attrListStr,omitempty"`
	CheckAsg      *bool                  `json:"checkAsg,omitempty"`
	CreateBy      map[string]interface{} `json:"createBy,omitempty"`
	CreateById    *string                `json:"createById,omitempty"`
	CreatedBy     *string                `json:"createdBy,omitempty"`
	CreatedByName *string                `json:"createdByName,omitempty"`
	CreatedDt     *time.Time             `json:"createdDt,omitempty"`
	// swagger.event.eventPolicyResponse.disableObject.value
	DisableObject *string `json:"disableObject,omitempty"`
	DisableYn     *string `json:"disableYn,omitempty"`
	// swagger.event.eventResponse.displayEventRule.value
	DisplayEventRule *string `json:"displayEventRule,omitempty"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지 접두사
	EventMessagePrefix *string `json:"eventMessagePrefix,omitempty"`
	// swagger.event.eventPolicyResponse.eventOccurTimeZone.value
	EventOccurTimeZone *string `json:"eventOccurTimeZone,omitempty"`
	// 이벤트 정책 아이디
	EventPolicyId         int64                  `json:"eventPolicyId"`
	EventPolicyStatistics *EventPolicyStatistics `json:"eventPolicyStatistics,omitempty"`
	EventThreshold        EventThreshold         `json:"eventThreshold"`
	// 결함허용 개수 - 설정한 조건에 맞는 값이 몇 번 반복해서 발생하면 이벤트를 발생시킬지 설정하는 값
	FtCount      int64         `json:"ftCount"`
	GroupSummary *GroupSummary `json:"groupSummary,omitempty"`
	// 로그 메트릭 여부
	IsLogMetric string `json:"isLogMetric"`
	// 메트릭 설명
	MetricDescription *string `json:"metricDescription,omitempty"`
	// 메트릭 설명
	MetricDescriptionEn *string `json:"metricDescriptionEn,omitempty"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName    *string       `json:"metricName,omitempty"`
	MetricSummary MetricSummary `json:"metricSummary"`
	// 메트릭 유형
	MetricType *string `json:"metricType,omitempty"`
	// 메트릭 단위
	MetricUnit     *string    `json:"metricUnit,omitempty"`
	ModifiedBy     *string    `json:"modifiedBy,omitempty"`
	ModifiedByName *string    `json:"modifiedByName,omitempty"`
	ModifiedDt     *time.Time `json:"modifiedDt,omitempty"`
	// 오브젝트 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// 개별항목 유형 이름
	ObjectTypeName *string `json:"objectTypeName,omitempty"`
	// 상품 정보 속성
	ProductInfoAttrs []ProductInfoAttr `json:"productInfoAttrs,omitempty"`
	// 상품 이름
	ProductName *string `json:"productName,omitempty"`
	// 상품 리소스 아이디
	ProductResourceId *string `json:"productResourceId,omitempty"`
	// 상품 시퀀스
	ProductSq      *int64         `json:"productSq,omitempty"`
	ProductSummary ProductSummary `json:"productSummary"`
	// 메트릭 대상 유형
	ProductTargetType *string `json:"productTargetType,omitempty"`
	// 메트릭 대상 유형
	ProductTargetTypeEn *string `json:"productTargetTypeEn,omitempty"`
	// 시작일시
	StartDt    *time.Time             `json:"startDt,omitempty"`
	UpdateBy   map[string]interface{} `json:"updateBy,omitempty"`
	UpdateById *string                `json:"updateById,omitempty"`
	// 사용자 이름
	UserNameList []string `json:"userNameList,omitempty"`
	UserNameStr  *string  `json:"userNameStr,omitempty"`
	// swagger.event.eventPolicyResponse.disableObject.value
	UserNames *string `json:"userNames,omitempty"`
}

EventPolicyDetailResponse 이벤트 정책 조회 시 응답 전송 객체

func NewEventPolicyDetailResponse

func NewEventPolicyDetailResponse(eventLevel string, eventPolicyId int64, eventThreshold EventThreshold, ftCount int64, isLogMetric string, metricKey string, metricSummary MetricSummary, productSummary ProductSummary) *EventPolicyDetailResponse

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

func NewEventPolicyDetailResponseWithDefaults

func NewEventPolicyDetailResponseWithDefaults() *EventPolicyDetailResponse

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

func (*EventPolicyDetailResponse) GetAsgYn

func (o *EventPolicyDetailResponse) GetAsgYn() string

GetAsgYn returns the AsgYn field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetAsgYnOk

func (o *EventPolicyDetailResponse) GetAsgYnOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetAttrListStr

func (o *EventPolicyDetailResponse) GetAttrListStr() string

GetAttrListStr returns the AttrListStr field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetAttrListStrOk

func (o *EventPolicyDetailResponse) GetAttrListStrOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetCheckAsg

func (o *EventPolicyDetailResponse) GetCheckAsg() bool

GetCheckAsg returns the CheckAsg field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetCheckAsgOk

func (o *EventPolicyDetailResponse) GetCheckAsgOk() (*bool, bool)

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

func (*EventPolicyDetailResponse) GetCreateBy

func (o *EventPolicyDetailResponse) GetCreateBy() map[string]interface{}

GetCreateBy returns the CreateBy field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetCreateById

func (o *EventPolicyDetailResponse) GetCreateById() string

GetCreateById returns the CreateById field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetCreateByIdOk

func (o *EventPolicyDetailResponse) GetCreateByIdOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetCreateByOk

func (o *EventPolicyDetailResponse) GetCreateByOk() (map[string]interface{}, bool)

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

func (*EventPolicyDetailResponse) GetCreatedBy

func (o *EventPolicyDetailResponse) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetCreatedByName

func (o *EventPolicyDetailResponse) GetCreatedByName() string

GetCreatedByName returns the CreatedByName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetCreatedByNameOk

func (o *EventPolicyDetailResponse) GetCreatedByNameOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetCreatedByOk

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

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

func (*EventPolicyDetailResponse) GetCreatedDt

func (o *EventPolicyDetailResponse) GetCreatedDt() time.Time

GetCreatedDt returns the CreatedDt field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetCreatedDtOk

func (o *EventPolicyDetailResponse) GetCreatedDtOk() (*time.Time, bool)

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

func (*EventPolicyDetailResponse) GetDisableObject

func (o *EventPolicyDetailResponse) GetDisableObject() string

GetDisableObject returns the DisableObject field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetDisableObjectOk

func (o *EventPolicyDetailResponse) GetDisableObjectOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetDisableYn

func (o *EventPolicyDetailResponse) GetDisableYn() string

GetDisableYn returns the DisableYn field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetDisableYnOk

func (o *EventPolicyDetailResponse) GetDisableYnOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetDisplayEventRule

func (o *EventPolicyDetailResponse) GetDisplayEventRule() string

GetDisplayEventRule returns the DisplayEventRule field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetDisplayEventRuleOk

func (o *EventPolicyDetailResponse) GetDisplayEventRuleOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetEventLevel

func (o *EventPolicyDetailResponse) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*EventPolicyDetailResponse) GetEventLevelOk

func (o *EventPolicyDetailResponse) GetEventLevelOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetEventMessagePrefix

func (o *EventPolicyDetailResponse) GetEventMessagePrefix() string

GetEventMessagePrefix returns the EventMessagePrefix field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetEventMessagePrefixOk

func (o *EventPolicyDetailResponse) GetEventMessagePrefixOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetEventOccurTimeZone

func (o *EventPolicyDetailResponse) GetEventOccurTimeZone() string

GetEventOccurTimeZone returns the EventOccurTimeZone field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetEventOccurTimeZoneOk

func (o *EventPolicyDetailResponse) GetEventOccurTimeZoneOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetEventPolicyId

func (o *EventPolicyDetailResponse) GetEventPolicyId() int64

GetEventPolicyId returns the EventPolicyId field value

func (*EventPolicyDetailResponse) GetEventPolicyIdOk

func (o *EventPolicyDetailResponse) GetEventPolicyIdOk() (*int64, bool)

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

func (*EventPolicyDetailResponse) GetEventPolicyStatistics

func (o *EventPolicyDetailResponse) GetEventPolicyStatistics() EventPolicyStatistics

GetEventPolicyStatistics returns the EventPolicyStatistics field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetEventPolicyStatisticsOk

func (o *EventPolicyDetailResponse) GetEventPolicyStatisticsOk() (*EventPolicyStatistics, bool)

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

func (*EventPolicyDetailResponse) GetEventThreshold

func (o *EventPolicyDetailResponse) GetEventThreshold() EventThreshold

GetEventThreshold returns the EventThreshold field value

func (*EventPolicyDetailResponse) GetEventThresholdOk

func (o *EventPolicyDetailResponse) GetEventThresholdOk() (*EventThreshold, bool)

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

func (*EventPolicyDetailResponse) GetFtCount

func (o *EventPolicyDetailResponse) GetFtCount() int64

GetFtCount returns the FtCount field value

func (*EventPolicyDetailResponse) GetFtCountOk

func (o *EventPolicyDetailResponse) GetFtCountOk() (*int64, bool)

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

func (*EventPolicyDetailResponse) GetGroupSummary

func (o *EventPolicyDetailResponse) GetGroupSummary() GroupSummary

GetGroupSummary returns the GroupSummary field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetGroupSummaryOk

func (o *EventPolicyDetailResponse) GetGroupSummaryOk() (*GroupSummary, bool)

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

func (*EventPolicyDetailResponse) GetIsLogMetric

func (o *EventPolicyDetailResponse) GetIsLogMetric() string

GetIsLogMetric returns the IsLogMetric field value

func (*EventPolicyDetailResponse) GetIsLogMetricOk

func (o *EventPolicyDetailResponse) GetIsLogMetricOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetMetricDescription

func (o *EventPolicyDetailResponse) GetMetricDescription() string

GetMetricDescription returns the MetricDescription field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetMetricDescriptionEn

func (o *EventPolicyDetailResponse) GetMetricDescriptionEn() string

GetMetricDescriptionEn returns the MetricDescriptionEn field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetMetricDescriptionEnOk

func (o *EventPolicyDetailResponse) GetMetricDescriptionEnOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetMetricDescriptionOk

func (o *EventPolicyDetailResponse) GetMetricDescriptionOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetMetricKey

func (o *EventPolicyDetailResponse) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*EventPolicyDetailResponse) GetMetricKeyOk

func (o *EventPolicyDetailResponse) GetMetricKeyOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetMetricName

func (o *EventPolicyDetailResponse) GetMetricName() string

GetMetricName returns the MetricName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetMetricNameOk

func (o *EventPolicyDetailResponse) 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.

func (*EventPolicyDetailResponse) GetMetricSummary

func (o *EventPolicyDetailResponse) GetMetricSummary() MetricSummary

GetMetricSummary returns the MetricSummary field value

func (*EventPolicyDetailResponse) GetMetricSummaryOk

func (o *EventPolicyDetailResponse) GetMetricSummaryOk() (*MetricSummary, bool)

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

func (*EventPolicyDetailResponse) GetMetricType

func (o *EventPolicyDetailResponse) GetMetricType() string

GetMetricType returns the MetricType field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetMetricTypeOk

func (o *EventPolicyDetailResponse) GetMetricTypeOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetMetricUnit

func (o *EventPolicyDetailResponse) GetMetricUnit() string

GetMetricUnit returns the MetricUnit field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetMetricUnitOk

func (o *EventPolicyDetailResponse) GetMetricUnitOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetModifiedBy

func (o *EventPolicyDetailResponse) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetModifiedByName

func (o *EventPolicyDetailResponse) GetModifiedByName() string

GetModifiedByName returns the ModifiedByName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetModifiedByNameOk

func (o *EventPolicyDetailResponse) GetModifiedByNameOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetModifiedByOk

func (o *EventPolicyDetailResponse) GetModifiedByOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetModifiedDt

func (o *EventPolicyDetailResponse) GetModifiedDt() time.Time

GetModifiedDt returns the ModifiedDt field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetModifiedDtOk

func (o *EventPolicyDetailResponse) GetModifiedDtOk() (*time.Time, bool)

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

func (*EventPolicyDetailResponse) GetObjectDisplayName

func (o *EventPolicyDetailResponse) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetObjectDisplayNameOk

func (o *EventPolicyDetailResponse) GetObjectDisplayNameOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetObjectName

func (o *EventPolicyDetailResponse) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetObjectNameOk

func (o *EventPolicyDetailResponse) GetObjectNameOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetObjectType

func (o *EventPolicyDetailResponse) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetObjectTypeName

func (o *EventPolicyDetailResponse) GetObjectTypeName() string

GetObjectTypeName returns the ObjectTypeName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetObjectTypeNameOk

func (o *EventPolicyDetailResponse) GetObjectTypeNameOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetObjectTypeOk

func (o *EventPolicyDetailResponse) GetObjectTypeOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetProductInfoAttrs

func (o *EventPolicyDetailResponse) GetProductInfoAttrs() []ProductInfoAttr

GetProductInfoAttrs returns the ProductInfoAttrs field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetProductInfoAttrsOk

func (o *EventPolicyDetailResponse) GetProductInfoAttrsOk() ([]ProductInfoAttr, bool)

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

func (*EventPolicyDetailResponse) GetProductName

func (o *EventPolicyDetailResponse) GetProductName() string

GetProductName returns the ProductName field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetProductNameOk

func (o *EventPolicyDetailResponse) GetProductNameOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetProductResourceId

func (o *EventPolicyDetailResponse) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetProductResourceIdOk

func (o *EventPolicyDetailResponse) GetProductResourceIdOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetProductSq

func (o *EventPolicyDetailResponse) GetProductSq() int64

GetProductSq returns the ProductSq field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetProductSqOk

func (o *EventPolicyDetailResponse) GetProductSqOk() (*int64, bool)

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

func (*EventPolicyDetailResponse) GetProductSummary

func (o *EventPolicyDetailResponse) GetProductSummary() ProductSummary

GetProductSummary returns the ProductSummary field value

func (*EventPolicyDetailResponse) GetProductSummaryOk

func (o *EventPolicyDetailResponse) GetProductSummaryOk() (*ProductSummary, bool)

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

func (*EventPolicyDetailResponse) GetProductTargetType

func (o *EventPolicyDetailResponse) GetProductTargetType() string

GetProductTargetType returns the ProductTargetType field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetProductTargetTypeEn

func (o *EventPolicyDetailResponse) GetProductTargetTypeEn() string

GetProductTargetTypeEn returns the ProductTargetTypeEn field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetProductTargetTypeEnOk

func (o *EventPolicyDetailResponse) GetProductTargetTypeEnOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetProductTargetTypeOk

func (o *EventPolicyDetailResponse) GetProductTargetTypeOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetStartDt

func (o *EventPolicyDetailResponse) GetStartDt() time.Time

GetStartDt returns the StartDt field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetStartDtOk

func (o *EventPolicyDetailResponse) GetStartDtOk() (*time.Time, bool)

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

func (*EventPolicyDetailResponse) GetUpdateBy

func (o *EventPolicyDetailResponse) GetUpdateBy() map[string]interface{}

GetUpdateBy returns the UpdateBy field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetUpdateById

func (o *EventPolicyDetailResponse) GetUpdateById() string

GetUpdateById returns the UpdateById field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetUpdateByIdOk

func (o *EventPolicyDetailResponse) GetUpdateByIdOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetUpdateByOk

func (o *EventPolicyDetailResponse) GetUpdateByOk() (map[string]interface{}, bool)

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

func (*EventPolicyDetailResponse) GetUserNameList

func (o *EventPolicyDetailResponse) GetUserNameList() []string

GetUserNameList returns the UserNameList field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetUserNameListOk

func (o *EventPolicyDetailResponse) GetUserNameListOk() ([]string, bool)

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

func (*EventPolicyDetailResponse) GetUserNameStr

func (o *EventPolicyDetailResponse) GetUserNameStr() string

GetUserNameStr returns the UserNameStr field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetUserNameStrOk

func (o *EventPolicyDetailResponse) GetUserNameStrOk() (*string, bool)

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

func (*EventPolicyDetailResponse) GetUserNames

func (o *EventPolicyDetailResponse) GetUserNames() string

GetUserNames returns the UserNames field value if set, zero value otherwise.

func (*EventPolicyDetailResponse) GetUserNamesOk

func (o *EventPolicyDetailResponse) GetUserNamesOk() (*string, bool)

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

func (*EventPolicyDetailResponse) HasAsgYn

func (o *EventPolicyDetailResponse) HasAsgYn() bool

HasAsgYn returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasAttrListStr

func (o *EventPolicyDetailResponse) HasAttrListStr() bool

HasAttrListStr returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasCheckAsg

func (o *EventPolicyDetailResponse) HasCheckAsg() bool

HasCheckAsg returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasCreateBy

func (o *EventPolicyDetailResponse) HasCreateBy() bool

HasCreateBy returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasCreateById

func (o *EventPolicyDetailResponse) HasCreateById() bool

HasCreateById returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasCreatedBy

func (o *EventPolicyDetailResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasCreatedByName

func (o *EventPolicyDetailResponse) HasCreatedByName() bool

HasCreatedByName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasCreatedDt

func (o *EventPolicyDetailResponse) HasCreatedDt() bool

HasCreatedDt returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasDisableObject

func (o *EventPolicyDetailResponse) HasDisableObject() bool

HasDisableObject returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasDisableYn

func (o *EventPolicyDetailResponse) HasDisableYn() bool

HasDisableYn returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasDisplayEventRule

func (o *EventPolicyDetailResponse) HasDisplayEventRule() bool

HasDisplayEventRule returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasEventMessagePrefix

func (o *EventPolicyDetailResponse) HasEventMessagePrefix() bool

HasEventMessagePrefix returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasEventOccurTimeZone

func (o *EventPolicyDetailResponse) HasEventOccurTimeZone() bool

HasEventOccurTimeZone returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasEventPolicyStatistics

func (o *EventPolicyDetailResponse) HasEventPolicyStatistics() bool

HasEventPolicyStatistics returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasGroupSummary

func (o *EventPolicyDetailResponse) HasGroupSummary() bool

HasGroupSummary returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasMetricDescription

func (o *EventPolicyDetailResponse) HasMetricDescription() bool

HasMetricDescription returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasMetricDescriptionEn

func (o *EventPolicyDetailResponse) HasMetricDescriptionEn() bool

HasMetricDescriptionEn returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasMetricName

func (o *EventPolicyDetailResponse) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasMetricType

func (o *EventPolicyDetailResponse) HasMetricType() bool

HasMetricType returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasMetricUnit

func (o *EventPolicyDetailResponse) HasMetricUnit() bool

HasMetricUnit returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasModifiedBy

func (o *EventPolicyDetailResponse) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasModifiedByName

func (o *EventPolicyDetailResponse) HasModifiedByName() bool

HasModifiedByName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasModifiedDt

func (o *EventPolicyDetailResponse) HasModifiedDt() bool

HasModifiedDt returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasObjectDisplayName

func (o *EventPolicyDetailResponse) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasObjectName

func (o *EventPolicyDetailResponse) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasObjectType

func (o *EventPolicyDetailResponse) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasObjectTypeName

func (o *EventPolicyDetailResponse) HasObjectTypeName() bool

HasObjectTypeName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasProductInfoAttrs

func (o *EventPolicyDetailResponse) HasProductInfoAttrs() bool

HasProductInfoAttrs returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasProductName

func (o *EventPolicyDetailResponse) HasProductName() bool

HasProductName returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasProductResourceId

func (o *EventPolicyDetailResponse) HasProductResourceId() bool

HasProductResourceId returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasProductSq

func (o *EventPolicyDetailResponse) HasProductSq() bool

HasProductSq returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasProductTargetType

func (o *EventPolicyDetailResponse) HasProductTargetType() bool

HasProductTargetType returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasProductTargetTypeEn

func (o *EventPolicyDetailResponse) HasProductTargetTypeEn() bool

HasProductTargetTypeEn returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasStartDt

func (o *EventPolicyDetailResponse) HasStartDt() bool

HasStartDt returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasUpdateBy

func (o *EventPolicyDetailResponse) HasUpdateBy() bool

HasUpdateBy returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasUpdateById

func (o *EventPolicyDetailResponse) HasUpdateById() bool

HasUpdateById returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasUserNameList

func (o *EventPolicyDetailResponse) HasUserNameList() bool

HasUserNameList returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasUserNameStr

func (o *EventPolicyDetailResponse) HasUserNameStr() bool

HasUserNameStr returns a boolean if a field has been set.

func (*EventPolicyDetailResponse) HasUserNames

func (o *EventPolicyDetailResponse) HasUserNames() bool

HasUserNames returns a boolean if a field has been set.

func (EventPolicyDetailResponse) MarshalJSON

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

func (*EventPolicyDetailResponse) SetAsgYn

func (o *EventPolicyDetailResponse) SetAsgYn(v string)

SetAsgYn gets a reference to the given string and assigns it to the AsgYn field.

func (*EventPolicyDetailResponse) SetAttrListStr

func (o *EventPolicyDetailResponse) SetAttrListStr(v string)

SetAttrListStr gets a reference to the given string and assigns it to the AttrListStr field.

func (*EventPolicyDetailResponse) SetCheckAsg

func (o *EventPolicyDetailResponse) SetCheckAsg(v bool)

SetCheckAsg gets a reference to the given bool and assigns it to the CheckAsg field.

func (*EventPolicyDetailResponse) SetCreateBy

func (o *EventPolicyDetailResponse) SetCreateBy(v map[string]interface{})

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

func (*EventPolicyDetailResponse) SetCreateById

func (o *EventPolicyDetailResponse) SetCreateById(v string)

SetCreateById gets a reference to the given string and assigns it to the CreateById field.

func (*EventPolicyDetailResponse) SetCreatedBy

func (o *EventPolicyDetailResponse) SetCreatedBy(v string)

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

func (*EventPolicyDetailResponse) SetCreatedByName

func (o *EventPolicyDetailResponse) SetCreatedByName(v string)

SetCreatedByName gets a reference to the given string and assigns it to the CreatedByName field.

func (*EventPolicyDetailResponse) SetCreatedDt

func (o *EventPolicyDetailResponse) SetCreatedDt(v time.Time)

SetCreatedDt gets a reference to the given time.Time and assigns it to the CreatedDt field.

func (*EventPolicyDetailResponse) SetDisableObject

func (o *EventPolicyDetailResponse) SetDisableObject(v string)

SetDisableObject gets a reference to the given string and assigns it to the DisableObject field.

func (*EventPolicyDetailResponse) SetDisableYn

func (o *EventPolicyDetailResponse) SetDisableYn(v string)

SetDisableYn gets a reference to the given string and assigns it to the DisableYn field.

func (*EventPolicyDetailResponse) SetDisplayEventRule

func (o *EventPolicyDetailResponse) SetDisplayEventRule(v string)

SetDisplayEventRule gets a reference to the given string and assigns it to the DisplayEventRule field.

func (*EventPolicyDetailResponse) SetEventLevel

func (o *EventPolicyDetailResponse) SetEventLevel(v string)

SetEventLevel sets field value

func (*EventPolicyDetailResponse) SetEventMessagePrefix

func (o *EventPolicyDetailResponse) SetEventMessagePrefix(v string)

SetEventMessagePrefix gets a reference to the given string and assigns it to the EventMessagePrefix field.

func (*EventPolicyDetailResponse) SetEventOccurTimeZone

func (o *EventPolicyDetailResponse) SetEventOccurTimeZone(v string)

SetEventOccurTimeZone gets a reference to the given string and assigns it to the EventOccurTimeZone field.

func (*EventPolicyDetailResponse) SetEventPolicyId

func (o *EventPolicyDetailResponse) SetEventPolicyId(v int64)

SetEventPolicyId sets field value

func (*EventPolicyDetailResponse) SetEventPolicyStatistics

func (o *EventPolicyDetailResponse) SetEventPolicyStatistics(v EventPolicyStatistics)

SetEventPolicyStatistics gets a reference to the given EventPolicyStatistics and assigns it to the EventPolicyStatistics field.

func (*EventPolicyDetailResponse) SetEventThreshold

func (o *EventPolicyDetailResponse) SetEventThreshold(v EventThreshold)

SetEventThreshold sets field value

func (*EventPolicyDetailResponse) SetFtCount

func (o *EventPolicyDetailResponse) SetFtCount(v int64)

SetFtCount sets field value

func (*EventPolicyDetailResponse) SetGroupSummary

func (o *EventPolicyDetailResponse) SetGroupSummary(v GroupSummary)

SetGroupSummary gets a reference to the given GroupSummary and assigns it to the GroupSummary field.

func (*EventPolicyDetailResponse) SetIsLogMetric

func (o *EventPolicyDetailResponse) SetIsLogMetric(v string)

SetIsLogMetric sets field value

func (*EventPolicyDetailResponse) SetMetricDescription

func (o *EventPolicyDetailResponse) SetMetricDescription(v string)

SetMetricDescription gets a reference to the given string and assigns it to the MetricDescription field.

func (*EventPolicyDetailResponse) SetMetricDescriptionEn

func (o *EventPolicyDetailResponse) SetMetricDescriptionEn(v string)

SetMetricDescriptionEn gets a reference to the given string and assigns it to the MetricDescriptionEn field.

func (*EventPolicyDetailResponse) SetMetricKey

func (o *EventPolicyDetailResponse) SetMetricKey(v string)

SetMetricKey sets field value

func (*EventPolicyDetailResponse) SetMetricName

func (o *EventPolicyDetailResponse) SetMetricName(v string)

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

func (*EventPolicyDetailResponse) SetMetricSummary

func (o *EventPolicyDetailResponse) SetMetricSummary(v MetricSummary)

SetMetricSummary sets field value

func (*EventPolicyDetailResponse) SetMetricType

func (o *EventPolicyDetailResponse) SetMetricType(v string)

SetMetricType gets a reference to the given string and assigns it to the MetricType field.

func (*EventPolicyDetailResponse) SetMetricUnit

func (o *EventPolicyDetailResponse) SetMetricUnit(v string)

SetMetricUnit gets a reference to the given string and assigns it to the MetricUnit field.

func (*EventPolicyDetailResponse) SetModifiedBy

func (o *EventPolicyDetailResponse) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*EventPolicyDetailResponse) SetModifiedByName

func (o *EventPolicyDetailResponse) SetModifiedByName(v string)

SetModifiedByName gets a reference to the given string and assigns it to the ModifiedByName field.

func (*EventPolicyDetailResponse) SetModifiedDt

func (o *EventPolicyDetailResponse) SetModifiedDt(v time.Time)

SetModifiedDt gets a reference to the given time.Time and assigns it to the ModifiedDt field.

func (*EventPolicyDetailResponse) SetObjectDisplayName

func (o *EventPolicyDetailResponse) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*EventPolicyDetailResponse) SetObjectName

func (o *EventPolicyDetailResponse) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*EventPolicyDetailResponse) SetObjectType

func (o *EventPolicyDetailResponse) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*EventPolicyDetailResponse) SetObjectTypeName

func (o *EventPolicyDetailResponse) SetObjectTypeName(v string)

SetObjectTypeName gets a reference to the given string and assigns it to the ObjectTypeName field.

func (*EventPolicyDetailResponse) SetProductInfoAttrs

func (o *EventPolicyDetailResponse) SetProductInfoAttrs(v []ProductInfoAttr)

SetProductInfoAttrs gets a reference to the given []ProductInfoAttr and assigns it to the ProductInfoAttrs field.

func (*EventPolicyDetailResponse) SetProductName

func (o *EventPolicyDetailResponse) SetProductName(v string)

SetProductName gets a reference to the given string and assigns it to the ProductName field.

func (*EventPolicyDetailResponse) SetProductResourceId

func (o *EventPolicyDetailResponse) SetProductResourceId(v string)

SetProductResourceId gets a reference to the given string and assigns it to the ProductResourceId field.

func (*EventPolicyDetailResponse) SetProductSq

func (o *EventPolicyDetailResponse) SetProductSq(v int64)

SetProductSq gets a reference to the given int64 and assigns it to the ProductSq field.

func (*EventPolicyDetailResponse) SetProductSummary

func (o *EventPolicyDetailResponse) SetProductSummary(v ProductSummary)

SetProductSummary sets field value

func (*EventPolicyDetailResponse) SetProductTargetType

func (o *EventPolicyDetailResponse) SetProductTargetType(v string)

SetProductTargetType gets a reference to the given string and assigns it to the ProductTargetType field.

func (*EventPolicyDetailResponse) SetProductTargetTypeEn

func (o *EventPolicyDetailResponse) SetProductTargetTypeEn(v string)

SetProductTargetTypeEn gets a reference to the given string and assigns it to the ProductTargetTypeEn field.

func (*EventPolicyDetailResponse) SetStartDt

func (o *EventPolicyDetailResponse) SetStartDt(v time.Time)

SetStartDt gets a reference to the given time.Time and assigns it to the StartDt field.

func (*EventPolicyDetailResponse) SetUpdateBy

func (o *EventPolicyDetailResponse) SetUpdateBy(v map[string]interface{})

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

func (*EventPolicyDetailResponse) SetUpdateById

func (o *EventPolicyDetailResponse) SetUpdateById(v string)

SetUpdateById gets a reference to the given string and assigns it to the UpdateById field.

func (*EventPolicyDetailResponse) SetUserNameList

func (o *EventPolicyDetailResponse) SetUserNameList(v []string)

SetUserNameList gets a reference to the given []string and assigns it to the UserNameList field.

func (*EventPolicyDetailResponse) SetUserNameStr

func (o *EventPolicyDetailResponse) SetUserNameStr(v string)

SetUserNameStr gets a reference to the given string and assigns it to the UserNameStr field.

func (*EventPolicyDetailResponse) SetUserNames

func (o *EventPolicyDetailResponse) SetUserNames(v string)

SetUserNames gets a reference to the given string and assigns it to the UserNames field.

func (EventPolicyDetailResponse) ToMap

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

func (*EventPolicyDetailResponse) UnmarshalJSON

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

type EventPolicyHistoryResponse

type EventPolicyHistoryResponse struct {
	CreateBy   map[string]interface{} `json:"createBy,omitempty"`
	CreateById *string                `json:"createById,omitempty"`
	// swagger.event.eventPolicyResponse.disableObject.value
	DisableObject *string `json:"disableObject,omitempty"`
	// swagger.event.eventPolicyResponse.disableObject.value
	DisableYn *string `json:"disableYn,omitempty"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지 접두사
	EventMessagePrefix *string `json:"eventMessagePrefix,omitempty"`
	// swagger.event.eventPolicyResponse.eventOccurTimeZone.value
	EventOccurTimeZone *string `json:"eventOccurTimeZone,omitempty"`
	// 이벤트 정책 이력 아이디
	EventPolicyHistoryId int64 `json:"eventPolicyHistoryId"`
	// 이벤트 정책 이력 유형 - C : 등록, U : 수정, D : 삭제
	EventPolicyHistoryType string `json:"eventPolicyHistoryType"`
	// 이벤트 정책 아이디
	EventPolicyId         *int64                 `json:"eventPolicyId,omitempty"`
	EventPolicyStatistics *EventPolicyStatistics `json:"eventPolicyStatistics,omitempty"`
	EventThreshold        EventThreshold         `json:"eventThreshold"`
	// 결함허용 개수
	FtCount int64 `json:"ftCount"`
	// 메트릭 설명
	MetricDescription *string `json:"metricDescription,omitempty"`
	// 메트릭 설명
	MetricDescriptionEn *string `json:"metricDescriptionEn,omitempty"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName string `json:"metricName"`
	// 메트릭 단위
	MetricUnit                   *string                       `json:"metricUnit,omitempty"`
	ModifiedBy                   *string                       `json:"modifiedBy,omitempty"`
	ModifiedByName               *string                       `json:"modifiedByName,omitempty"`
	ModifiedDt                   *time.Time                    `json:"modifiedDt,omitempty"`
	NotificationRecipientHistory *NotificationRecipientHistory `json:"notificationRecipientHistory,omitempty"`
	// 오브젝트 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// 상품 이름
	ProductName string `json:"productName"`
	// 상품 리소스 아이디
	ProductResourceId string `json:"productResourceId"`
	// 메트릭 대상 유형
	ProductTargetType *string `json:"productTargetType,omitempty"`
	// 메트릭 대상 유형
	ProductTargetTypeEn *string                `json:"productTargetTypeEn,omitempty"`
	UpdateBy            map[string]interface{} `json:"updateBy,omitempty"`
	UpdateById          *string                `json:"updateById,omitempty"`
}

EventPolicyHistoryResponse 이벤트 정책 변경 이력 조회 시 응답 전송 객체

func NewEventPolicyHistoryResponse

func NewEventPolicyHistoryResponse(eventLevel string, eventPolicyHistoryId int64, eventPolicyHistoryType string, eventThreshold EventThreshold, ftCount int64, metricKey string, metricName string, productName string, productResourceId string) *EventPolicyHistoryResponse

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

func NewEventPolicyHistoryResponseWithDefaults

func NewEventPolicyHistoryResponseWithDefaults() *EventPolicyHistoryResponse

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

func (*EventPolicyHistoryResponse) GetCreateBy

func (o *EventPolicyHistoryResponse) GetCreateBy() map[string]interface{}

GetCreateBy returns the CreateBy field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetCreateById

func (o *EventPolicyHistoryResponse) GetCreateById() string

GetCreateById returns the CreateById field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetCreateByIdOk

func (o *EventPolicyHistoryResponse) GetCreateByIdOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetCreateByOk

func (o *EventPolicyHistoryResponse) GetCreateByOk() (map[string]interface{}, bool)

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

func (*EventPolicyHistoryResponse) GetDisableObject

func (o *EventPolicyHistoryResponse) GetDisableObject() string

GetDisableObject returns the DisableObject field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetDisableObjectOk

func (o *EventPolicyHistoryResponse) GetDisableObjectOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetDisableYn

func (o *EventPolicyHistoryResponse) GetDisableYn() string

GetDisableYn returns the DisableYn field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetDisableYnOk

func (o *EventPolicyHistoryResponse) GetDisableYnOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetEventLevel

func (o *EventPolicyHistoryResponse) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*EventPolicyHistoryResponse) GetEventLevelOk

func (o *EventPolicyHistoryResponse) GetEventLevelOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetEventMessagePrefix

func (o *EventPolicyHistoryResponse) GetEventMessagePrefix() string

GetEventMessagePrefix returns the EventMessagePrefix field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetEventMessagePrefixOk

func (o *EventPolicyHistoryResponse) GetEventMessagePrefixOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetEventOccurTimeZone

func (o *EventPolicyHistoryResponse) GetEventOccurTimeZone() string

GetEventOccurTimeZone returns the EventOccurTimeZone field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetEventOccurTimeZoneOk

func (o *EventPolicyHistoryResponse) GetEventOccurTimeZoneOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetEventPolicyHistoryId

func (o *EventPolicyHistoryResponse) GetEventPolicyHistoryId() int64

GetEventPolicyHistoryId returns the EventPolicyHistoryId field value

func (*EventPolicyHistoryResponse) GetEventPolicyHistoryIdOk

func (o *EventPolicyHistoryResponse) GetEventPolicyHistoryIdOk() (*int64, bool)

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

func (*EventPolicyHistoryResponse) GetEventPolicyHistoryType

func (o *EventPolicyHistoryResponse) GetEventPolicyHistoryType() string

GetEventPolicyHistoryType returns the EventPolicyHistoryType field value

func (*EventPolicyHistoryResponse) GetEventPolicyHistoryTypeOk

func (o *EventPolicyHistoryResponse) GetEventPolicyHistoryTypeOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetEventPolicyId

func (o *EventPolicyHistoryResponse) GetEventPolicyId() int64

GetEventPolicyId returns the EventPolicyId field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetEventPolicyIdOk

func (o *EventPolicyHistoryResponse) GetEventPolicyIdOk() (*int64, bool)

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

func (*EventPolicyHistoryResponse) GetEventPolicyStatistics

func (o *EventPolicyHistoryResponse) GetEventPolicyStatistics() EventPolicyStatistics

GetEventPolicyStatistics returns the EventPolicyStatistics field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetEventPolicyStatisticsOk

func (o *EventPolicyHistoryResponse) GetEventPolicyStatisticsOk() (*EventPolicyStatistics, bool)

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

func (*EventPolicyHistoryResponse) GetEventThreshold

func (o *EventPolicyHistoryResponse) GetEventThreshold() EventThreshold

GetEventThreshold returns the EventThreshold field value

func (*EventPolicyHistoryResponse) GetEventThresholdOk

func (o *EventPolicyHistoryResponse) GetEventThresholdOk() (*EventThreshold, bool)

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

func (*EventPolicyHistoryResponse) GetFtCount

func (o *EventPolicyHistoryResponse) GetFtCount() int64

GetFtCount returns the FtCount field value

func (*EventPolicyHistoryResponse) GetFtCountOk

func (o *EventPolicyHistoryResponse) GetFtCountOk() (*int64, bool)

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

func (*EventPolicyHistoryResponse) GetMetricDescription

func (o *EventPolicyHistoryResponse) GetMetricDescription() string

GetMetricDescription returns the MetricDescription field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetMetricDescriptionEn

func (o *EventPolicyHistoryResponse) GetMetricDescriptionEn() string

GetMetricDescriptionEn returns the MetricDescriptionEn field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetMetricDescriptionEnOk

func (o *EventPolicyHistoryResponse) GetMetricDescriptionEnOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetMetricDescriptionOk

func (o *EventPolicyHistoryResponse) GetMetricDescriptionOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetMetricKey

func (o *EventPolicyHistoryResponse) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*EventPolicyHistoryResponse) GetMetricKeyOk

func (o *EventPolicyHistoryResponse) GetMetricKeyOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetMetricName

func (o *EventPolicyHistoryResponse) GetMetricName() string

GetMetricName returns the MetricName field value

func (*EventPolicyHistoryResponse) GetMetricNameOk

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

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

func (*EventPolicyHistoryResponse) GetMetricUnit

func (o *EventPolicyHistoryResponse) GetMetricUnit() string

GetMetricUnit returns the MetricUnit field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetMetricUnitOk

func (o *EventPolicyHistoryResponse) GetMetricUnitOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetModifiedBy

func (o *EventPolicyHistoryResponse) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetModifiedByName

func (o *EventPolicyHistoryResponse) GetModifiedByName() string

GetModifiedByName returns the ModifiedByName field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetModifiedByNameOk

func (o *EventPolicyHistoryResponse) GetModifiedByNameOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetModifiedByOk

func (o *EventPolicyHistoryResponse) GetModifiedByOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetModifiedDt

func (o *EventPolicyHistoryResponse) GetModifiedDt() time.Time

GetModifiedDt returns the ModifiedDt field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetModifiedDtOk

func (o *EventPolicyHistoryResponse) GetModifiedDtOk() (*time.Time, bool)

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

func (*EventPolicyHistoryResponse) GetNotificationRecipientHistory

func (o *EventPolicyHistoryResponse) GetNotificationRecipientHistory() NotificationRecipientHistory

GetNotificationRecipientHistory returns the NotificationRecipientHistory field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetNotificationRecipientHistoryOk

func (o *EventPolicyHistoryResponse) GetNotificationRecipientHistoryOk() (*NotificationRecipientHistory, bool)

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

func (*EventPolicyHistoryResponse) GetObjectDisplayName

func (o *EventPolicyHistoryResponse) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetObjectDisplayNameOk

func (o *EventPolicyHistoryResponse) GetObjectDisplayNameOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetObjectName

func (o *EventPolicyHistoryResponse) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetObjectNameOk

func (o *EventPolicyHistoryResponse) GetObjectNameOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetObjectType

func (o *EventPolicyHistoryResponse) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetObjectTypeOk

func (o *EventPolicyHistoryResponse) GetObjectTypeOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetProductName

func (o *EventPolicyHistoryResponse) GetProductName() string

GetProductName returns the ProductName field value

func (*EventPolicyHistoryResponse) GetProductNameOk

func (o *EventPolicyHistoryResponse) GetProductNameOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetProductResourceId

func (o *EventPolicyHistoryResponse) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*EventPolicyHistoryResponse) GetProductResourceIdOk

func (o *EventPolicyHistoryResponse) GetProductResourceIdOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetProductTargetType

func (o *EventPolicyHistoryResponse) GetProductTargetType() string

GetProductTargetType returns the ProductTargetType field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetProductTargetTypeEn

func (o *EventPolicyHistoryResponse) GetProductTargetTypeEn() string

GetProductTargetTypeEn returns the ProductTargetTypeEn field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetProductTargetTypeEnOk

func (o *EventPolicyHistoryResponse) GetProductTargetTypeEnOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetProductTargetTypeOk

func (o *EventPolicyHistoryResponse) GetProductTargetTypeOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetUpdateBy

func (o *EventPolicyHistoryResponse) GetUpdateBy() map[string]interface{}

GetUpdateBy returns the UpdateBy field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetUpdateById

func (o *EventPolicyHistoryResponse) GetUpdateById() string

GetUpdateById returns the UpdateById field value if set, zero value otherwise.

func (*EventPolicyHistoryResponse) GetUpdateByIdOk

func (o *EventPolicyHistoryResponse) GetUpdateByIdOk() (*string, bool)

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

func (*EventPolicyHistoryResponse) GetUpdateByOk

func (o *EventPolicyHistoryResponse) GetUpdateByOk() (map[string]interface{}, bool)

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

func (*EventPolicyHistoryResponse) HasCreateBy

func (o *EventPolicyHistoryResponse) HasCreateBy() bool

HasCreateBy returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasCreateById

func (o *EventPolicyHistoryResponse) HasCreateById() bool

HasCreateById returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasDisableObject

func (o *EventPolicyHistoryResponse) HasDisableObject() bool

HasDisableObject returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasDisableYn

func (o *EventPolicyHistoryResponse) HasDisableYn() bool

HasDisableYn returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasEventMessagePrefix

func (o *EventPolicyHistoryResponse) HasEventMessagePrefix() bool

HasEventMessagePrefix returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasEventOccurTimeZone

func (o *EventPolicyHistoryResponse) HasEventOccurTimeZone() bool

HasEventOccurTimeZone returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasEventPolicyId

func (o *EventPolicyHistoryResponse) HasEventPolicyId() bool

HasEventPolicyId returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasEventPolicyStatistics

func (o *EventPolicyHistoryResponse) HasEventPolicyStatistics() bool

HasEventPolicyStatistics returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasMetricDescription

func (o *EventPolicyHistoryResponse) HasMetricDescription() bool

HasMetricDescription returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasMetricDescriptionEn

func (o *EventPolicyHistoryResponse) HasMetricDescriptionEn() bool

HasMetricDescriptionEn returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasMetricUnit

func (o *EventPolicyHistoryResponse) HasMetricUnit() bool

HasMetricUnit returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasModifiedBy

func (o *EventPolicyHistoryResponse) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasModifiedByName

func (o *EventPolicyHistoryResponse) HasModifiedByName() bool

HasModifiedByName returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasModifiedDt

func (o *EventPolicyHistoryResponse) HasModifiedDt() bool

HasModifiedDt returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasNotificationRecipientHistory

func (o *EventPolicyHistoryResponse) HasNotificationRecipientHistory() bool

HasNotificationRecipientHistory returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasObjectDisplayName

func (o *EventPolicyHistoryResponse) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasObjectName

func (o *EventPolicyHistoryResponse) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasObjectType

func (o *EventPolicyHistoryResponse) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasProductTargetType

func (o *EventPolicyHistoryResponse) HasProductTargetType() bool

HasProductTargetType returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasProductTargetTypeEn

func (o *EventPolicyHistoryResponse) HasProductTargetTypeEn() bool

HasProductTargetTypeEn returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasUpdateBy

func (o *EventPolicyHistoryResponse) HasUpdateBy() bool

HasUpdateBy returns a boolean if a field has been set.

func (*EventPolicyHistoryResponse) HasUpdateById

func (o *EventPolicyHistoryResponse) HasUpdateById() bool

HasUpdateById returns a boolean if a field has been set.

func (EventPolicyHistoryResponse) MarshalJSON

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

func (*EventPolicyHistoryResponse) SetCreateBy

func (o *EventPolicyHistoryResponse) SetCreateBy(v map[string]interface{})

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

func (*EventPolicyHistoryResponse) SetCreateById

func (o *EventPolicyHistoryResponse) SetCreateById(v string)

SetCreateById gets a reference to the given string and assigns it to the CreateById field.

func (*EventPolicyHistoryResponse) SetDisableObject

func (o *EventPolicyHistoryResponse) SetDisableObject(v string)

SetDisableObject gets a reference to the given string and assigns it to the DisableObject field.

func (*EventPolicyHistoryResponse) SetDisableYn

func (o *EventPolicyHistoryResponse) SetDisableYn(v string)

SetDisableYn gets a reference to the given string and assigns it to the DisableYn field.

func (*EventPolicyHistoryResponse) SetEventLevel

func (o *EventPolicyHistoryResponse) SetEventLevel(v string)

SetEventLevel sets field value

func (*EventPolicyHistoryResponse) SetEventMessagePrefix

func (o *EventPolicyHistoryResponse) SetEventMessagePrefix(v string)

SetEventMessagePrefix gets a reference to the given string and assigns it to the EventMessagePrefix field.

func (*EventPolicyHistoryResponse) SetEventOccurTimeZone

func (o *EventPolicyHistoryResponse) SetEventOccurTimeZone(v string)

SetEventOccurTimeZone gets a reference to the given string and assigns it to the EventOccurTimeZone field.

func (*EventPolicyHistoryResponse) SetEventPolicyHistoryId

func (o *EventPolicyHistoryResponse) SetEventPolicyHistoryId(v int64)

SetEventPolicyHistoryId sets field value

func (*EventPolicyHistoryResponse) SetEventPolicyHistoryType

func (o *EventPolicyHistoryResponse) SetEventPolicyHistoryType(v string)

SetEventPolicyHistoryType sets field value

func (*EventPolicyHistoryResponse) SetEventPolicyId

func (o *EventPolicyHistoryResponse) SetEventPolicyId(v int64)

SetEventPolicyId gets a reference to the given int64 and assigns it to the EventPolicyId field.

func (*EventPolicyHistoryResponse) SetEventPolicyStatistics

func (o *EventPolicyHistoryResponse) SetEventPolicyStatistics(v EventPolicyStatistics)

SetEventPolicyStatistics gets a reference to the given EventPolicyStatistics and assigns it to the EventPolicyStatistics field.

func (*EventPolicyHistoryResponse) SetEventThreshold

func (o *EventPolicyHistoryResponse) SetEventThreshold(v EventThreshold)

SetEventThreshold sets field value

func (*EventPolicyHistoryResponse) SetFtCount

func (o *EventPolicyHistoryResponse) SetFtCount(v int64)

SetFtCount sets field value

func (*EventPolicyHistoryResponse) SetMetricDescription

func (o *EventPolicyHistoryResponse) SetMetricDescription(v string)

SetMetricDescription gets a reference to the given string and assigns it to the MetricDescription field.

func (*EventPolicyHistoryResponse) SetMetricDescriptionEn

func (o *EventPolicyHistoryResponse) SetMetricDescriptionEn(v string)

SetMetricDescriptionEn gets a reference to the given string and assigns it to the MetricDescriptionEn field.

func (*EventPolicyHistoryResponse) SetMetricKey

func (o *EventPolicyHistoryResponse) SetMetricKey(v string)

SetMetricKey sets field value

func (*EventPolicyHistoryResponse) SetMetricName

func (o *EventPolicyHistoryResponse) SetMetricName(v string)

SetMetricName sets field value

func (*EventPolicyHistoryResponse) SetMetricUnit

func (o *EventPolicyHistoryResponse) SetMetricUnit(v string)

SetMetricUnit gets a reference to the given string and assigns it to the MetricUnit field.

func (*EventPolicyHistoryResponse) SetModifiedBy

func (o *EventPolicyHistoryResponse) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*EventPolicyHistoryResponse) SetModifiedByName

func (o *EventPolicyHistoryResponse) SetModifiedByName(v string)

SetModifiedByName gets a reference to the given string and assigns it to the ModifiedByName field.

func (*EventPolicyHistoryResponse) SetModifiedDt

func (o *EventPolicyHistoryResponse) SetModifiedDt(v time.Time)

SetModifiedDt gets a reference to the given time.Time and assigns it to the ModifiedDt field.

func (*EventPolicyHistoryResponse) SetNotificationRecipientHistory

func (o *EventPolicyHistoryResponse) SetNotificationRecipientHistory(v NotificationRecipientHistory)

SetNotificationRecipientHistory gets a reference to the given NotificationRecipientHistory and assigns it to the NotificationRecipientHistory field.

func (*EventPolicyHistoryResponse) SetObjectDisplayName

func (o *EventPolicyHistoryResponse) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*EventPolicyHistoryResponse) SetObjectName

func (o *EventPolicyHistoryResponse) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*EventPolicyHistoryResponse) SetObjectType

func (o *EventPolicyHistoryResponse) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*EventPolicyHistoryResponse) SetProductName

func (o *EventPolicyHistoryResponse) SetProductName(v string)

SetProductName sets field value

func (*EventPolicyHistoryResponse) SetProductResourceId

func (o *EventPolicyHistoryResponse) SetProductResourceId(v string)

SetProductResourceId sets field value

func (*EventPolicyHistoryResponse) SetProductTargetType

func (o *EventPolicyHistoryResponse) SetProductTargetType(v string)

SetProductTargetType gets a reference to the given string and assigns it to the ProductTargetType field.

func (*EventPolicyHistoryResponse) SetProductTargetTypeEn

func (o *EventPolicyHistoryResponse) SetProductTargetTypeEn(v string)

SetProductTargetTypeEn gets a reference to the given string and assigns it to the ProductTargetTypeEn field.

func (*EventPolicyHistoryResponse) SetUpdateBy

func (o *EventPolicyHistoryResponse) SetUpdateBy(v map[string]interface{})

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

func (*EventPolicyHistoryResponse) SetUpdateById

func (o *EventPolicyHistoryResponse) SetUpdateById(v string)

SetUpdateById gets a reference to the given string and assigns it to the UpdateById field.

func (EventPolicyHistoryResponse) ToMap

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

func (*EventPolicyHistoryResponse) UnmarshalJSON

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

type EventPolicyInfo

type EventPolicyInfo struct {
	// swagger.event.eventPolicyResponse.disableYn.value
	DisableYn string `json:"disableYn"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지 접두사
	EventMessagePrefix *string `json:"eventMessagePrefix,omitempty"`
	// swagger.event.eventPolicyResponse.eventOccurTimeZone.value
	EventOccurTimeZone    *string                `json:"eventOccurTimeZone,omitempty"`
	EventPolicyStatistics *EventPolicyStatistics `json:"eventPolicyStatistics,omitempty"`
	EventThreshold        EventThreshold         `json:"eventThreshold"`
	// 결함허용 개수 - 설정한 조건에 맞는 값이 몇 번 반복해서 발생하면 이벤트를 발생시킬지 설정하는 값
	FtCount int64 `json:"ftCount"`
	// 로그 메트릭 여부
	IsLogMetric string `json:"isLogMetric"`
	// 메트릭 키
	MetricKey  string  `json:"metricKey"`
	MetricName *string `json:"metricName,omitempty"`
	// 오브젝트 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// swagger.event.eventPolicyResponse.podObjectDisplayName.value
	PodObjectDisplayName *string `json:"podObjectDisplayName,omitempty"`
	// swagger.event.eventPolicyResponse.podObjectName.value
	PodObjectName *string `json:"podObjectName,omitempty"`
}

EventPolicyInfo 이벤트 정책을 담기 위한 정보 객체

func NewEventPolicyInfo

func NewEventPolicyInfo(disableYn string, eventLevel string, eventThreshold EventThreshold, ftCount int64, isLogMetric string, metricKey string) *EventPolicyInfo

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

func NewEventPolicyInfoWithDefaults

func NewEventPolicyInfoWithDefaults() *EventPolicyInfo

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

func (*EventPolicyInfo) GetDisableYn

func (o *EventPolicyInfo) GetDisableYn() string

GetDisableYn returns the DisableYn field value

func (*EventPolicyInfo) GetDisableYnOk

func (o *EventPolicyInfo) GetDisableYnOk() (*string, bool)

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

func (*EventPolicyInfo) GetEventLevel

func (o *EventPolicyInfo) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*EventPolicyInfo) GetEventLevelOk

func (o *EventPolicyInfo) GetEventLevelOk() (*string, bool)

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

func (*EventPolicyInfo) GetEventMessagePrefix

func (o *EventPolicyInfo) GetEventMessagePrefix() string

GetEventMessagePrefix returns the EventMessagePrefix field value if set, zero value otherwise.

func (*EventPolicyInfo) GetEventMessagePrefixOk

func (o *EventPolicyInfo) GetEventMessagePrefixOk() (*string, bool)

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

func (*EventPolicyInfo) GetEventOccurTimeZone

func (o *EventPolicyInfo) GetEventOccurTimeZone() string

GetEventOccurTimeZone returns the EventOccurTimeZone field value if set, zero value otherwise.

func (*EventPolicyInfo) GetEventOccurTimeZoneOk

func (o *EventPolicyInfo) GetEventOccurTimeZoneOk() (*string, bool)

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

func (*EventPolicyInfo) GetEventPolicyStatistics

func (o *EventPolicyInfo) GetEventPolicyStatistics() EventPolicyStatistics

GetEventPolicyStatistics returns the EventPolicyStatistics field value if set, zero value otherwise.

func (*EventPolicyInfo) GetEventPolicyStatisticsOk

func (o *EventPolicyInfo) GetEventPolicyStatisticsOk() (*EventPolicyStatistics, bool)

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

func (*EventPolicyInfo) GetEventThreshold

func (o *EventPolicyInfo) GetEventThreshold() EventThreshold

GetEventThreshold returns the EventThreshold field value

func (*EventPolicyInfo) GetEventThresholdOk

func (o *EventPolicyInfo) GetEventThresholdOk() (*EventThreshold, bool)

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

func (*EventPolicyInfo) GetFtCount

func (o *EventPolicyInfo) GetFtCount() int64

GetFtCount returns the FtCount field value

func (*EventPolicyInfo) GetFtCountOk

func (o *EventPolicyInfo) GetFtCountOk() (*int64, bool)

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

func (*EventPolicyInfo) GetIsLogMetric

func (o *EventPolicyInfo) GetIsLogMetric() string

GetIsLogMetric returns the IsLogMetric field value

func (*EventPolicyInfo) GetIsLogMetricOk

func (o *EventPolicyInfo) GetIsLogMetricOk() (*string, bool)

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

func (*EventPolicyInfo) GetMetricKey

func (o *EventPolicyInfo) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*EventPolicyInfo) GetMetricKeyOk

func (o *EventPolicyInfo) GetMetricKeyOk() (*string, bool)

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

func (*EventPolicyInfo) GetMetricName

func (o *EventPolicyInfo) GetMetricName() string

GetMetricName returns the MetricName field value if set, zero value otherwise.

func (*EventPolicyInfo) GetMetricNameOk

func (o *EventPolicyInfo) 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.

func (*EventPolicyInfo) GetObjectDisplayName

func (o *EventPolicyInfo) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*EventPolicyInfo) GetObjectDisplayNameOk

func (o *EventPolicyInfo) GetObjectDisplayNameOk() (*string, bool)

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

func (*EventPolicyInfo) GetObjectName

func (o *EventPolicyInfo) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*EventPolicyInfo) GetObjectNameOk

func (o *EventPolicyInfo) GetObjectNameOk() (*string, bool)

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

func (*EventPolicyInfo) GetObjectType

func (o *EventPolicyInfo) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*EventPolicyInfo) GetObjectTypeOk

func (o *EventPolicyInfo) GetObjectTypeOk() (*string, bool)

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

func (*EventPolicyInfo) GetPodObjectDisplayName

func (o *EventPolicyInfo) GetPodObjectDisplayName() string

GetPodObjectDisplayName returns the PodObjectDisplayName field value if set, zero value otherwise.

func (*EventPolicyInfo) GetPodObjectDisplayNameOk

func (o *EventPolicyInfo) GetPodObjectDisplayNameOk() (*string, bool)

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

func (*EventPolicyInfo) GetPodObjectName

func (o *EventPolicyInfo) GetPodObjectName() string

GetPodObjectName returns the PodObjectName field value if set, zero value otherwise.

func (*EventPolicyInfo) GetPodObjectNameOk

func (o *EventPolicyInfo) GetPodObjectNameOk() (*string, bool)

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

func (*EventPolicyInfo) HasEventMessagePrefix

func (o *EventPolicyInfo) HasEventMessagePrefix() bool

HasEventMessagePrefix returns a boolean if a field has been set.

func (*EventPolicyInfo) HasEventOccurTimeZone

func (o *EventPolicyInfo) HasEventOccurTimeZone() bool

HasEventOccurTimeZone returns a boolean if a field has been set.

func (*EventPolicyInfo) HasEventPolicyStatistics

func (o *EventPolicyInfo) HasEventPolicyStatistics() bool

HasEventPolicyStatistics returns a boolean if a field has been set.

func (*EventPolicyInfo) HasMetricName

func (o *EventPolicyInfo) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*EventPolicyInfo) HasObjectDisplayName

func (o *EventPolicyInfo) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*EventPolicyInfo) HasObjectName

func (o *EventPolicyInfo) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*EventPolicyInfo) HasObjectType

func (o *EventPolicyInfo) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*EventPolicyInfo) HasPodObjectDisplayName

func (o *EventPolicyInfo) HasPodObjectDisplayName() bool

HasPodObjectDisplayName returns a boolean if a field has been set.

func (*EventPolicyInfo) HasPodObjectName

func (o *EventPolicyInfo) HasPodObjectName() bool

HasPodObjectName returns a boolean if a field has been set.

func (EventPolicyInfo) MarshalJSON

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

func (*EventPolicyInfo) SetDisableYn

func (o *EventPolicyInfo) SetDisableYn(v string)

SetDisableYn sets field value

func (*EventPolicyInfo) SetEventLevel

func (o *EventPolicyInfo) SetEventLevel(v string)

SetEventLevel sets field value

func (*EventPolicyInfo) SetEventMessagePrefix

func (o *EventPolicyInfo) SetEventMessagePrefix(v string)

SetEventMessagePrefix gets a reference to the given string and assigns it to the EventMessagePrefix field.

func (*EventPolicyInfo) SetEventOccurTimeZone

func (o *EventPolicyInfo) SetEventOccurTimeZone(v string)

SetEventOccurTimeZone gets a reference to the given string and assigns it to the EventOccurTimeZone field.

func (*EventPolicyInfo) SetEventPolicyStatistics

func (o *EventPolicyInfo) SetEventPolicyStatistics(v EventPolicyStatistics)

SetEventPolicyStatistics gets a reference to the given EventPolicyStatistics and assigns it to the EventPolicyStatistics field.

func (*EventPolicyInfo) SetEventThreshold

func (o *EventPolicyInfo) SetEventThreshold(v EventThreshold)

SetEventThreshold sets field value

func (*EventPolicyInfo) SetFtCount

func (o *EventPolicyInfo) SetFtCount(v int64)

SetFtCount sets field value

func (*EventPolicyInfo) SetIsLogMetric

func (o *EventPolicyInfo) SetIsLogMetric(v string)

SetIsLogMetric sets field value

func (*EventPolicyInfo) SetMetricKey

func (o *EventPolicyInfo) SetMetricKey(v string)

SetMetricKey sets field value

func (*EventPolicyInfo) SetMetricName

func (o *EventPolicyInfo) SetMetricName(v string)

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

func (*EventPolicyInfo) SetObjectDisplayName

func (o *EventPolicyInfo) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*EventPolicyInfo) SetObjectName

func (o *EventPolicyInfo) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*EventPolicyInfo) SetObjectType

func (o *EventPolicyInfo) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*EventPolicyInfo) SetPodObjectDisplayName

func (o *EventPolicyInfo) SetPodObjectDisplayName(v string)

SetPodObjectDisplayName gets a reference to the given string and assigns it to the PodObjectDisplayName field.

func (*EventPolicyInfo) SetPodObjectName

func (o *EventPolicyInfo) SetPodObjectName(v string)

SetPodObjectName gets a reference to the given string and assigns it to the PodObjectName field.

func (EventPolicyInfo) ToMap

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

func (*EventPolicyInfo) UnmarshalJSON

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

type EventPolicyInfoEditable

type EventPolicyInfoEditable struct {
	// swagger.event.eventPolicyResponse.disableYn.value
	DisableYn string `json:"disableYn"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지 접두사
	EventMessagePrefix *string `json:"eventMessagePrefix,omitempty"`
	// swagger.event.eventPolicyResponse.eventOccurTimeZone.value
	EventOccurTimeZone    *string                `json:"eventOccurTimeZone,omitempty"`
	EventPolicyStatistics *EventPolicyStatistics `json:"eventPolicyStatistics,omitempty"`
	EventThreshold        EventThreshold         `json:"eventThreshold"`
	// 결함허용 개수 - 설정한 조건에 맞는 값이 몇 번 반복해서 발생하면 이벤트를 발생시킬지 설정하는 값
	FtCount int64 `json:"ftCount"`
	// 오브젝트 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// swagger.event.eventPolicyResponse.podObjectName.value
	PodObjectDisplayName *string `json:"podObjectDisplayName,omitempty"`
	// swagger.event.eventPolicyResponse.podObjectName.value
	PodObjectName *string `json:"podObjectName,omitempty"`
}

EventPolicyInfoEditable 이벤트 정책 중 수정 가능한 정보

func NewEventPolicyInfoEditable

func NewEventPolicyInfoEditable(disableYn string, eventLevel string, eventThreshold EventThreshold, ftCount int64) *EventPolicyInfoEditable

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

func NewEventPolicyInfoEditableWithDefaults

func NewEventPolicyInfoEditableWithDefaults() *EventPolicyInfoEditable

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

func (*EventPolicyInfoEditable) GetDisableYn

func (o *EventPolicyInfoEditable) GetDisableYn() string

GetDisableYn returns the DisableYn field value

func (*EventPolicyInfoEditable) GetDisableYnOk

func (o *EventPolicyInfoEditable) GetDisableYnOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetEventLevel

func (o *EventPolicyInfoEditable) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*EventPolicyInfoEditable) GetEventLevelOk

func (o *EventPolicyInfoEditable) GetEventLevelOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetEventMessagePrefix

func (o *EventPolicyInfoEditable) GetEventMessagePrefix() string

GetEventMessagePrefix returns the EventMessagePrefix field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetEventMessagePrefixOk

func (o *EventPolicyInfoEditable) GetEventMessagePrefixOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetEventOccurTimeZone

func (o *EventPolicyInfoEditable) GetEventOccurTimeZone() string

GetEventOccurTimeZone returns the EventOccurTimeZone field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetEventOccurTimeZoneOk

func (o *EventPolicyInfoEditable) GetEventOccurTimeZoneOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetEventPolicyStatistics

func (o *EventPolicyInfoEditable) GetEventPolicyStatistics() EventPolicyStatistics

GetEventPolicyStatistics returns the EventPolicyStatistics field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetEventPolicyStatisticsOk

func (o *EventPolicyInfoEditable) GetEventPolicyStatisticsOk() (*EventPolicyStatistics, bool)

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

func (*EventPolicyInfoEditable) GetEventThreshold

func (o *EventPolicyInfoEditable) GetEventThreshold() EventThreshold

GetEventThreshold returns the EventThreshold field value

func (*EventPolicyInfoEditable) GetEventThresholdOk

func (o *EventPolicyInfoEditable) GetEventThresholdOk() (*EventThreshold, bool)

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

func (*EventPolicyInfoEditable) GetFtCount

func (o *EventPolicyInfoEditable) GetFtCount() int64

GetFtCount returns the FtCount field value

func (*EventPolicyInfoEditable) GetFtCountOk

func (o *EventPolicyInfoEditable) GetFtCountOk() (*int64, bool)

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

func (*EventPolicyInfoEditable) GetObjectDisplayName

func (o *EventPolicyInfoEditable) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetObjectDisplayNameOk

func (o *EventPolicyInfoEditable) GetObjectDisplayNameOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetObjectName

func (o *EventPolicyInfoEditable) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetObjectNameOk

func (o *EventPolicyInfoEditable) GetObjectNameOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetObjectType

func (o *EventPolicyInfoEditable) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetObjectTypeOk

func (o *EventPolicyInfoEditable) GetObjectTypeOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetPodObjectDisplayName

func (o *EventPolicyInfoEditable) GetPodObjectDisplayName() string

GetPodObjectDisplayName returns the PodObjectDisplayName field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetPodObjectDisplayNameOk

func (o *EventPolicyInfoEditable) GetPodObjectDisplayNameOk() (*string, bool)

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

func (*EventPolicyInfoEditable) GetPodObjectName

func (o *EventPolicyInfoEditable) GetPodObjectName() string

GetPodObjectName returns the PodObjectName field value if set, zero value otherwise.

func (*EventPolicyInfoEditable) GetPodObjectNameOk

func (o *EventPolicyInfoEditable) GetPodObjectNameOk() (*string, bool)

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

func (*EventPolicyInfoEditable) HasEventMessagePrefix

func (o *EventPolicyInfoEditable) HasEventMessagePrefix() bool

HasEventMessagePrefix returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasEventOccurTimeZone

func (o *EventPolicyInfoEditable) HasEventOccurTimeZone() bool

HasEventOccurTimeZone returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasEventPolicyStatistics

func (o *EventPolicyInfoEditable) HasEventPolicyStatistics() bool

HasEventPolicyStatistics returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasObjectDisplayName

func (o *EventPolicyInfoEditable) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasObjectName

func (o *EventPolicyInfoEditable) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasObjectType

func (o *EventPolicyInfoEditable) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasPodObjectDisplayName

func (o *EventPolicyInfoEditable) HasPodObjectDisplayName() bool

HasPodObjectDisplayName returns a boolean if a field has been set.

func (*EventPolicyInfoEditable) HasPodObjectName

func (o *EventPolicyInfoEditable) HasPodObjectName() bool

HasPodObjectName returns a boolean if a field has been set.

func (EventPolicyInfoEditable) MarshalJSON

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

func (*EventPolicyInfoEditable) SetDisableYn

func (o *EventPolicyInfoEditable) SetDisableYn(v string)

SetDisableYn sets field value

func (*EventPolicyInfoEditable) SetEventLevel

func (o *EventPolicyInfoEditable) SetEventLevel(v string)

SetEventLevel sets field value

func (*EventPolicyInfoEditable) SetEventMessagePrefix

func (o *EventPolicyInfoEditable) SetEventMessagePrefix(v string)

SetEventMessagePrefix gets a reference to the given string and assigns it to the EventMessagePrefix field.

func (*EventPolicyInfoEditable) SetEventOccurTimeZone

func (o *EventPolicyInfoEditable) SetEventOccurTimeZone(v string)

SetEventOccurTimeZone gets a reference to the given string and assigns it to the EventOccurTimeZone field.

func (*EventPolicyInfoEditable) SetEventPolicyStatistics

func (o *EventPolicyInfoEditable) SetEventPolicyStatistics(v EventPolicyStatistics)

SetEventPolicyStatistics gets a reference to the given EventPolicyStatistics and assigns it to the EventPolicyStatistics field.

func (*EventPolicyInfoEditable) SetEventThreshold

func (o *EventPolicyInfoEditable) SetEventThreshold(v EventThreshold)

SetEventThreshold sets field value

func (*EventPolicyInfoEditable) SetFtCount

func (o *EventPolicyInfoEditable) SetFtCount(v int64)

SetFtCount sets field value

func (*EventPolicyInfoEditable) SetObjectDisplayName

func (o *EventPolicyInfoEditable) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*EventPolicyInfoEditable) SetObjectName

func (o *EventPolicyInfoEditable) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*EventPolicyInfoEditable) SetObjectType

func (o *EventPolicyInfoEditable) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*EventPolicyInfoEditable) SetPodObjectDisplayName

func (o *EventPolicyInfoEditable) SetPodObjectDisplayName(v string)

SetPodObjectDisplayName gets a reference to the given string and assigns it to the PodObjectDisplayName field.

func (*EventPolicyInfoEditable) SetPodObjectName

func (o *EventPolicyInfoEditable) SetPodObjectName(v string)

SetPodObjectName gets a reference to the given string and assigns it to the PodObjectName field.

func (EventPolicyInfoEditable) ToMap

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

func (*EventPolicyInfoEditable) UnmarshalJSON

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

type EventPolicyResponse

type EventPolicyResponse struct {
	CheckAsg       *bool                  `json:"checkAsg,omitempty"`
	CreateBy       map[string]interface{} `json:"createBy,omitempty"`
	CreateById     *string                `json:"createById,omitempty"`
	CreatedBy      *string                `json:"createdBy,omitempty"`
	CreatedByName  *string                `json:"createdByName,omitempty"`
	ModifiedBy     *string                `json:"modifiedBy,omitempty"`
	ModifiedByName *string                `json:"modifiedByName,omitempty"`
	CreatedDt      *time.Time             `json:"createdDt,omitempty"`
	ModifiedDt     *time.Time             `json:"modifiedDt,omitempty"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지 접두사
	EventMessagePrefix *string `json:"eventMessagePrefix,omitempty"`
	// swagger.event.eventPolicyResponse.eventOccurTimeZone.value
	EventOccurTimeZone *string `json:"eventOccurTimeZone,omitempty"`
	// 이벤트 정책 아이디
	EventPolicyId         int64                  `json:"eventPolicyId"`
	EventPolicyStatistics *EventPolicyStatistics `json:"eventPolicyStatistics,omitempty"`
	EventThreshold        EventThreshold         `json:"eventThreshold"`
	// 결함허용 개수 - 설정한 조건에 맞는 값이 몇 번 반복해서 발생하면 이벤트를 발생시킬지 설정하는 값
	FtCount int64 `json:"ftCount"`
	// 로그 메트릭 여부
	IsLogMetric string `json:"isLogMetric"`
	// 메트릭 설명
	MetricDescription *string `json:"metricDescription,omitempty"`
	// 메트릭 설명
	MetricDescriptionEn *string `json:"metricDescriptionEn,omitempty"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName string `json:"metricName"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 상품 이름
	ProductName string `json:"productName"`
	// 상품 리소스 아이디
	ProductResourceId string `json:"productResourceId"`
	// 상품 시퀀스
	ProductSq int64 `json:"productSq"`
	// 메트릭 대상 유형
	ProductTargetType *string `json:"productTargetType,omitempty"`
	// 메트릭 대상 유형
	ProductTargetTypeEn *string                `json:"productTargetTypeEn,omitempty"`
	UpdateBy            map[string]interface{} `json:"updateBy,omitempty"`
	UpdateById          *string                `json:"updateById,omitempty"`
}

EventPolicyResponse 이벤트 정책 조회 시 응답 전송 객체

func NewEventPolicyResponse

func NewEventPolicyResponse(eventLevel string, eventPolicyId int64, eventThreshold EventThreshold, ftCount int64, isLogMetric string, metricKey string, metricName string, productName string, productResourceId string, productSq int64) *EventPolicyResponse

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

func NewEventPolicyResponseWithDefaults

func NewEventPolicyResponseWithDefaults() *EventPolicyResponse

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

func (*EventPolicyResponse) GetCheckAsg

func (o *EventPolicyResponse) GetCheckAsg() bool

GetCheckAsg returns the CheckAsg field value if set, zero value otherwise.

func (*EventPolicyResponse) GetCheckAsgOk

func (o *EventPolicyResponse) GetCheckAsgOk() (*bool, bool)

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

func (*EventPolicyResponse) GetCreateBy

func (o *EventPolicyResponse) GetCreateBy() map[string]interface{}

GetCreateBy returns the CreateBy field value if set, zero value otherwise.

func (*EventPolicyResponse) GetCreateById

func (o *EventPolicyResponse) GetCreateById() string

GetCreateById returns the CreateById field value if set, zero value otherwise.

func (*EventPolicyResponse) GetCreateByIdOk

func (o *EventPolicyResponse) GetCreateByIdOk() (*string, bool)

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

func (*EventPolicyResponse) GetCreateByOk

func (o *EventPolicyResponse) GetCreateByOk() (map[string]interface{}, bool)

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

func (*EventPolicyResponse) GetEventLevel

func (o *EventPolicyResponse) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*EventPolicyResponse) GetEventLevelOk

func (o *EventPolicyResponse) GetEventLevelOk() (*string, bool)

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

func (*EventPolicyResponse) GetEventMessagePrefix

func (o *EventPolicyResponse) GetEventMessagePrefix() string

GetEventMessagePrefix returns the EventMessagePrefix field value if set, zero value otherwise.

func (*EventPolicyResponse) GetEventMessagePrefixOk

func (o *EventPolicyResponse) GetEventMessagePrefixOk() (*string, bool)

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

func (*EventPolicyResponse) GetEventOccurTimeZone

func (o *EventPolicyResponse) GetEventOccurTimeZone() string

GetEventOccurTimeZone returns the EventOccurTimeZone field value if set, zero value otherwise.

func (*EventPolicyResponse) GetEventOccurTimeZoneOk

func (o *EventPolicyResponse) GetEventOccurTimeZoneOk() (*string, bool)

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

func (*EventPolicyResponse) GetEventPolicyId

func (o *EventPolicyResponse) GetEventPolicyId() int64

GetEventPolicyId returns the EventPolicyId field value

func (*EventPolicyResponse) GetEventPolicyIdOk

func (o *EventPolicyResponse) GetEventPolicyIdOk() (*int64, bool)

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

func (*EventPolicyResponse) GetEventPolicyStatistics

func (o *EventPolicyResponse) GetEventPolicyStatistics() EventPolicyStatistics

GetEventPolicyStatistics returns the EventPolicyStatistics field value if set, zero value otherwise.

func (*EventPolicyResponse) GetEventPolicyStatisticsOk

func (o *EventPolicyResponse) GetEventPolicyStatisticsOk() (*EventPolicyStatistics, bool)

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

func (*EventPolicyResponse) GetEventThreshold

func (o *EventPolicyResponse) GetEventThreshold() EventThreshold

GetEventThreshold returns the EventThreshold field value

func (*EventPolicyResponse) GetEventThresholdOk

func (o *EventPolicyResponse) GetEventThresholdOk() (*EventThreshold, bool)

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

func (*EventPolicyResponse) GetFtCount

func (o *EventPolicyResponse) GetFtCount() int64

GetFtCount returns the FtCount field value

func (*EventPolicyResponse) GetFtCountOk

func (o *EventPolicyResponse) GetFtCountOk() (*int64, bool)

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

func (*EventPolicyResponse) GetIsLogMetric

func (o *EventPolicyResponse) GetIsLogMetric() string

GetIsLogMetric returns the IsLogMetric field value

func (*EventPolicyResponse) GetIsLogMetricOk

func (o *EventPolicyResponse) GetIsLogMetricOk() (*string, bool)

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

func (*EventPolicyResponse) GetMetricDescription

func (o *EventPolicyResponse) GetMetricDescription() string

GetMetricDescription returns the MetricDescription field value if set, zero value otherwise.

func (*EventPolicyResponse) GetMetricDescriptionEn

func (o *EventPolicyResponse) GetMetricDescriptionEn() string

GetMetricDescriptionEn returns the MetricDescriptionEn field value if set, zero value otherwise.

func (*EventPolicyResponse) GetMetricDescriptionEnOk

func (o *EventPolicyResponse) GetMetricDescriptionEnOk() (*string, bool)

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

func (*EventPolicyResponse) GetMetricDescriptionOk

func (o *EventPolicyResponse) GetMetricDescriptionOk() (*string, bool)

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

func (*EventPolicyResponse) GetMetricKey

func (o *EventPolicyResponse) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*EventPolicyResponse) GetMetricKeyOk

func (o *EventPolicyResponse) GetMetricKeyOk() (*string, bool)

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

func (*EventPolicyResponse) GetMetricName

func (o *EventPolicyResponse) GetMetricName() string

GetMetricName returns the MetricName field value

func (*EventPolicyResponse) GetMetricNameOk

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

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

func (*EventPolicyResponse) GetObjectName

func (o *EventPolicyResponse) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*EventPolicyResponse) GetObjectNameOk

func (o *EventPolicyResponse) GetObjectNameOk() (*string, bool)

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

func (*EventPolicyResponse) GetProductName

func (o *EventPolicyResponse) GetProductName() string

GetProductName returns the ProductName field value

func (*EventPolicyResponse) GetProductNameOk

func (o *EventPolicyResponse) GetProductNameOk() (*string, bool)

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

func (*EventPolicyResponse) GetProductResourceId

func (o *EventPolicyResponse) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*EventPolicyResponse) GetProductResourceIdOk

func (o *EventPolicyResponse) GetProductResourceIdOk() (*string, bool)

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

func (*EventPolicyResponse) GetProductSq

func (o *EventPolicyResponse) GetProductSq() int64

GetProductSq returns the ProductSq field value

func (*EventPolicyResponse) GetProductSqOk

func (o *EventPolicyResponse) GetProductSqOk() (*int64, bool)

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

func (*EventPolicyResponse) GetProductTargetType

func (o *EventPolicyResponse) GetProductTargetType() string

GetProductTargetType returns the ProductTargetType field value if set, zero value otherwise.

func (*EventPolicyResponse) GetProductTargetTypeEn

func (o *EventPolicyResponse) GetProductTargetTypeEn() string

GetProductTargetTypeEn returns the ProductTargetTypeEn field value if set, zero value otherwise.

func (*EventPolicyResponse) GetProductTargetTypeEnOk

func (o *EventPolicyResponse) GetProductTargetTypeEnOk() (*string, bool)

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

func (*EventPolicyResponse) GetProductTargetTypeOk

func (o *EventPolicyResponse) GetProductTargetTypeOk() (*string, bool)

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

func (*EventPolicyResponse) GetUpdateBy

func (o *EventPolicyResponse) GetUpdateBy() map[string]interface{}

GetUpdateBy returns the UpdateBy field value if set, zero value otherwise.

func (*EventPolicyResponse) GetUpdateById

func (o *EventPolicyResponse) GetUpdateById() string

GetUpdateById returns the UpdateById field value if set, zero value otherwise.

func (*EventPolicyResponse) GetUpdateByIdOk

func (o *EventPolicyResponse) GetUpdateByIdOk() (*string, bool)

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

func (*EventPolicyResponse) GetUpdateByOk

func (o *EventPolicyResponse) GetUpdateByOk() (map[string]interface{}, bool)

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

func (*EventPolicyResponse) HasCheckAsg

func (o *EventPolicyResponse) HasCheckAsg() bool

HasCheckAsg returns a boolean if a field has been set.

func (*EventPolicyResponse) HasCreateBy

func (o *EventPolicyResponse) HasCreateBy() bool

HasCreateBy returns a boolean if a field has been set.

func (*EventPolicyResponse) HasCreateById

func (o *EventPolicyResponse) HasCreateById() bool

HasCreateById returns a boolean if a field has been set.

func (*EventPolicyResponse) HasEventMessagePrefix

func (o *EventPolicyResponse) HasEventMessagePrefix() bool

HasEventMessagePrefix returns a boolean if a field has been set.

func (*EventPolicyResponse) HasEventOccurTimeZone

func (o *EventPolicyResponse) HasEventOccurTimeZone() bool

HasEventOccurTimeZone returns a boolean if a field has been set.

func (*EventPolicyResponse) HasEventPolicyStatistics

func (o *EventPolicyResponse) HasEventPolicyStatistics() bool

HasEventPolicyStatistics returns a boolean if a field has been set.

func (*EventPolicyResponse) HasMetricDescription

func (o *EventPolicyResponse) HasMetricDescription() bool

HasMetricDescription returns a boolean if a field has been set.

func (*EventPolicyResponse) HasMetricDescriptionEn

func (o *EventPolicyResponse) HasMetricDescriptionEn() bool

HasMetricDescriptionEn returns a boolean if a field has been set.

func (*EventPolicyResponse) HasObjectName

func (o *EventPolicyResponse) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*EventPolicyResponse) HasProductTargetType

func (o *EventPolicyResponse) HasProductTargetType() bool

HasProductTargetType returns a boolean if a field has been set.

func (*EventPolicyResponse) HasProductTargetTypeEn

func (o *EventPolicyResponse) HasProductTargetTypeEn() bool

HasProductTargetTypeEn returns a boolean if a field has been set.

func (*EventPolicyResponse) HasUpdateBy

func (o *EventPolicyResponse) HasUpdateBy() bool

HasUpdateBy returns a boolean if a field has been set.

func (*EventPolicyResponse) HasUpdateById

func (o *EventPolicyResponse) HasUpdateById() bool

HasUpdateById returns a boolean if a field has been set.

func (EventPolicyResponse) MarshalJSON

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

func (*EventPolicyResponse) SetCheckAsg

func (o *EventPolicyResponse) SetCheckAsg(v bool)

SetCheckAsg gets a reference to the given bool and assigns it to the CheckAsg field.

func (*EventPolicyResponse) SetCreateBy

func (o *EventPolicyResponse) SetCreateBy(v map[string]interface{})

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

func (*EventPolicyResponse) SetCreateById

func (o *EventPolicyResponse) SetCreateById(v string)

SetCreateById gets a reference to the given string and assigns it to the CreateById field.

func (*EventPolicyResponse) SetEventLevel

func (o *EventPolicyResponse) SetEventLevel(v string)

SetEventLevel sets field value

func (*EventPolicyResponse) SetEventMessagePrefix

func (o *EventPolicyResponse) SetEventMessagePrefix(v string)

SetEventMessagePrefix gets a reference to the given string and assigns it to the EventMessagePrefix field.

func (*EventPolicyResponse) SetEventOccurTimeZone

func (o *EventPolicyResponse) SetEventOccurTimeZone(v string)

SetEventOccurTimeZone gets a reference to the given string and assigns it to the EventOccurTimeZone field.

func (*EventPolicyResponse) SetEventPolicyId

func (o *EventPolicyResponse) SetEventPolicyId(v int64)

SetEventPolicyId sets field value

func (*EventPolicyResponse) SetEventPolicyStatistics

func (o *EventPolicyResponse) SetEventPolicyStatistics(v EventPolicyStatistics)

SetEventPolicyStatistics gets a reference to the given EventPolicyStatistics and assigns it to the EventPolicyStatistics field.

func (*EventPolicyResponse) SetEventThreshold

func (o *EventPolicyResponse) SetEventThreshold(v EventThreshold)

SetEventThreshold sets field value

func (*EventPolicyResponse) SetFtCount

func (o *EventPolicyResponse) SetFtCount(v int64)

SetFtCount sets field value

func (*EventPolicyResponse) SetIsLogMetric

func (o *EventPolicyResponse) SetIsLogMetric(v string)

SetIsLogMetric sets field value

func (*EventPolicyResponse) SetMetricDescription

func (o *EventPolicyResponse) SetMetricDescription(v string)

SetMetricDescription gets a reference to the given string and assigns it to the MetricDescription field.

func (*EventPolicyResponse) SetMetricDescriptionEn

func (o *EventPolicyResponse) SetMetricDescriptionEn(v string)

SetMetricDescriptionEn gets a reference to the given string and assigns it to the MetricDescriptionEn field.

func (*EventPolicyResponse) SetMetricKey

func (o *EventPolicyResponse) SetMetricKey(v string)

SetMetricKey sets field value

func (*EventPolicyResponse) SetMetricName

func (o *EventPolicyResponse) SetMetricName(v string)

SetMetricName sets field value

func (*EventPolicyResponse) SetObjectName

func (o *EventPolicyResponse) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*EventPolicyResponse) SetProductName

func (o *EventPolicyResponse) SetProductName(v string)

SetProductName sets field value

func (*EventPolicyResponse) SetProductResourceId

func (o *EventPolicyResponse) SetProductResourceId(v string)

SetProductResourceId sets field value

func (*EventPolicyResponse) SetProductSq

func (o *EventPolicyResponse) SetProductSq(v int64)

SetProductSq sets field value

func (*EventPolicyResponse) SetProductTargetType

func (o *EventPolicyResponse) SetProductTargetType(v string)

SetProductTargetType gets a reference to the given string and assigns it to the ProductTargetType field.

func (*EventPolicyResponse) SetProductTargetTypeEn

func (o *EventPolicyResponse) SetProductTargetTypeEn(v string)

SetProductTargetTypeEn gets a reference to the given string and assigns it to the ProductTargetTypeEn field.

func (*EventPolicyResponse) SetUpdateBy

func (o *EventPolicyResponse) SetUpdateBy(v map[string]interface{})

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

func (*EventPolicyResponse) SetUpdateById

func (o *EventPolicyResponse) SetUpdateById(v string)

SetUpdateById gets a reference to the given string and assigns it to the UpdateById field.

func (EventPolicyResponse) ToMap

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

func (*EventPolicyResponse) UnmarshalJSON

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

type EventPolicyStatistics

type EventPolicyStatistics struct {
	// 이벤트 정책 통계 기간 - 단위: 분
	EventPolicyStatisticsPeriod int64 `json:"eventPolicyStatisticsPeriod"`
	// 이벤트 정책 통계 유형
	EventPolicyStatisticsType string `json:"eventPolicyStatisticsType"`
}

EventPolicyStatistics 이벤트 정책 통계 정보 객체

func NewEventPolicyStatistics

func NewEventPolicyStatistics(eventPolicyStatisticsPeriod int64, eventPolicyStatisticsType string) *EventPolicyStatistics

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

func NewEventPolicyStatisticsWithDefaults

func NewEventPolicyStatisticsWithDefaults() *EventPolicyStatistics

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

func (*EventPolicyStatistics) GetEventPolicyStatisticsPeriod

func (o *EventPolicyStatistics) GetEventPolicyStatisticsPeriod() int64

GetEventPolicyStatisticsPeriod returns the EventPolicyStatisticsPeriod field value

func (*EventPolicyStatistics) GetEventPolicyStatisticsPeriodOk

func (o *EventPolicyStatistics) GetEventPolicyStatisticsPeriodOk() (*int64, bool)

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

func (*EventPolicyStatistics) GetEventPolicyStatisticsType

func (o *EventPolicyStatistics) GetEventPolicyStatisticsType() string

GetEventPolicyStatisticsType returns the EventPolicyStatisticsType field value

func (*EventPolicyStatistics) GetEventPolicyStatisticsTypeOk

func (o *EventPolicyStatistics) GetEventPolicyStatisticsTypeOk() (*string, bool)

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

func (EventPolicyStatistics) MarshalJSON

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

func (*EventPolicyStatistics) SetEventPolicyStatisticsPeriod

func (o *EventPolicyStatistics) SetEventPolicyStatisticsPeriod(v int64)

SetEventPolicyStatisticsPeriod sets field value

func (*EventPolicyStatistics) SetEventPolicyStatisticsType

func (o *EventPolicyStatistics) SetEventPolicyStatisticsType(v string)

SetEventPolicyStatisticsType sets field value

func (EventPolicyStatistics) ToMap

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

func (*EventPolicyStatistics) UnmarshalJSON

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

type EventPolicyUpdateRequest

type EventPolicyUpdateRequest struct {
	EventPolicyRequest EventPolicyInfoEditable `json:"eventPolicyRequest"`
	// 이벤트 알림 수신인 정보
	NotificationRecipients []NotificationRecipient `json:"notificationRecipients,omitempty"`
}

EventPolicyUpdateRequest 이벤트 정책 수정 시 요청 전송 객체

func NewEventPolicyUpdateRequest

func NewEventPolicyUpdateRequest(eventPolicyRequest EventPolicyInfoEditable) *EventPolicyUpdateRequest

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

func NewEventPolicyUpdateRequestWithDefaults

func NewEventPolicyUpdateRequestWithDefaults() *EventPolicyUpdateRequest

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

func (*EventPolicyUpdateRequest) GetEventPolicyRequest

func (o *EventPolicyUpdateRequest) GetEventPolicyRequest() EventPolicyInfoEditable

GetEventPolicyRequest returns the EventPolicyRequest field value

func (*EventPolicyUpdateRequest) GetEventPolicyRequestOk

func (o *EventPolicyUpdateRequest) GetEventPolicyRequestOk() (*EventPolicyInfoEditable, bool)

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

func (*EventPolicyUpdateRequest) GetNotificationRecipients

func (o *EventPolicyUpdateRequest) GetNotificationRecipients() []NotificationRecipient

GetNotificationRecipients returns the NotificationRecipients field value if set, zero value otherwise.

func (*EventPolicyUpdateRequest) GetNotificationRecipientsOk

func (o *EventPolicyUpdateRequest) GetNotificationRecipientsOk() ([]NotificationRecipient, bool)

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

func (*EventPolicyUpdateRequest) HasNotificationRecipients

func (o *EventPolicyUpdateRequest) HasNotificationRecipients() bool

HasNotificationRecipients returns a boolean if a field has been set.

func (EventPolicyUpdateRequest) MarshalJSON

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

func (*EventPolicyUpdateRequest) SetEventPolicyRequest

func (o *EventPolicyUpdateRequest) SetEventPolicyRequest(v EventPolicyInfoEditable)

SetEventPolicyRequest sets field value

func (*EventPolicyUpdateRequest) SetNotificationRecipients

func (o *EventPolicyUpdateRequest) SetNotificationRecipients(v []NotificationRecipient)

SetNotificationRecipients gets a reference to the given []NotificationRecipient and assigns it to the NotificationRecipients field.

func (EventPolicyUpdateRequest) ToMap

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

func (*EventPolicyUpdateRequest) UnmarshalJSON

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

type EventThreshold

type EventThreshold struct {
	// 메트릭 함수 - 유효한 값: [delta] - 이벤트 발생 여부를 판단하기 위해 성능항목의 현재 값을 사용할지, 이전 값과 현재 값의 차이를 사용할지를 지정합니다. - 이전 값과 현재 값의 차이를 사용하고자 할 경우에만 delta로 지정합니다.
	MetricFunction  *string          `json:"metricFunction,omitempty"`
	RangeThreshold  *RangeThreshold  `json:"rangeThreshold,omitempty"`
	SingleThreshold *SingleThreshold `json:"singleThreshold,omitempty"`
	// 임계치 유형 - 임계치를 범위로 지정할 경우에는 \"RANGE_VALUE\"를, 임계치를 단일값으로 지정할 경우에는 \"SINGLE_VALUE\" 지정해야 합니다.
	ThresholdType string `json:"thresholdType"`
}

EventThreshold 이벤트 임계치 객체

func NewEventThreshold

func NewEventThreshold(thresholdType string) *EventThreshold

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

func NewEventThresholdWithDefaults

func NewEventThresholdWithDefaults() *EventThreshold

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

func (*EventThreshold) GetMetricFunction

func (o *EventThreshold) GetMetricFunction() string

GetMetricFunction returns the MetricFunction field value if set, zero value otherwise.

func (*EventThreshold) GetMetricFunctionOk

func (o *EventThreshold) GetMetricFunctionOk() (*string, bool)

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

func (*EventThreshold) GetRangeThreshold

func (o *EventThreshold) GetRangeThreshold() RangeThreshold

GetRangeThreshold returns the RangeThreshold field value if set, zero value otherwise.

func (*EventThreshold) GetRangeThresholdOk

func (o *EventThreshold) GetRangeThresholdOk() (*RangeThreshold, bool)

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

func (*EventThreshold) GetSingleThreshold

func (o *EventThreshold) GetSingleThreshold() SingleThreshold

GetSingleThreshold returns the SingleThreshold field value if set, zero value otherwise.

func (*EventThreshold) GetSingleThresholdOk

func (o *EventThreshold) GetSingleThresholdOk() (*SingleThreshold, bool)

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

func (*EventThreshold) GetThresholdType

func (o *EventThreshold) GetThresholdType() string

GetThresholdType returns the ThresholdType field value

func (*EventThreshold) GetThresholdTypeOk

func (o *EventThreshold) GetThresholdTypeOk() (*string, bool)

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

func (*EventThreshold) HasMetricFunction

func (o *EventThreshold) HasMetricFunction() bool

HasMetricFunction returns a boolean if a field has been set.

func (*EventThreshold) HasRangeThreshold

func (o *EventThreshold) HasRangeThreshold() bool

HasRangeThreshold returns a boolean if a field has been set.

func (*EventThreshold) HasSingleThreshold

func (o *EventThreshold) HasSingleThreshold() bool

HasSingleThreshold returns a boolean if a field has been set.

func (EventThreshold) MarshalJSON

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

func (*EventThreshold) SetMetricFunction

func (o *EventThreshold) SetMetricFunction(v string)

SetMetricFunction gets a reference to the given string and assigns it to the MetricFunction field.

func (*EventThreshold) SetRangeThreshold

func (o *EventThreshold) SetRangeThreshold(v RangeThreshold)

SetRangeThreshold gets a reference to the given RangeThreshold and assigns it to the RangeThreshold field.

func (*EventThreshold) SetSingleThreshold

func (o *EventThreshold) SetSingleThreshold(v SingleThreshold)

SetSingleThreshold gets a reference to the given SingleThreshold and assigns it to the SingleThreshold field.

func (*EventThreshold) SetThresholdType

func (o *EventThreshold) SetThresholdType(v string)

SetThresholdType sets field value

func (EventThreshold) ToMap

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

func (*EventThreshold) UnmarshalJSON

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GroupSummary

type GroupSummary struct {
	GroupName       *string       `json:"groupName,omitempty"`
	GroupResourceId *string       `json:"groupResourceId,omitempty"`
	GroupSq         *int64        `json:"groupSq,omitempty"`
	ProductList     []ProductList `json:"productList,omitempty"`
	ProductTypeCode *string       `json:"productTypeCode,omitempty"`
	ProductTypeName *string       `json:"productTypeName,omitempty"`
}

GroupSummary 그룹 요약 객체

func NewGroupSummary

func NewGroupSummary() *GroupSummary

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

func NewGroupSummaryWithDefaults

func NewGroupSummaryWithDefaults() *GroupSummary

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

func (*GroupSummary) GetGroupName

func (o *GroupSummary) GetGroupName() string

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

func (*GroupSummary) GetGroupNameOk

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

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

func (*GroupSummary) GetGroupResourceId

func (o *GroupSummary) GetGroupResourceId() string

GetGroupResourceId returns the GroupResourceId field value if set, zero value otherwise.

func (*GroupSummary) GetGroupResourceIdOk

func (o *GroupSummary) GetGroupResourceIdOk() (*string, bool)

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

func (*GroupSummary) GetGroupSq

func (o *GroupSummary) GetGroupSq() int64

GetGroupSq returns the GroupSq field value if set, zero value otherwise.

func (*GroupSummary) GetGroupSqOk

func (o *GroupSummary) GetGroupSqOk() (*int64, bool)

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

func (*GroupSummary) GetProductList

func (o *GroupSummary) GetProductList() []ProductList

GetProductList returns the ProductList field value if set, zero value otherwise.

func (*GroupSummary) GetProductListOk

func (o *GroupSummary) GetProductListOk() ([]ProductList, bool)

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

func (*GroupSummary) GetProductTypeCode

func (o *GroupSummary) GetProductTypeCode() string

GetProductTypeCode returns the ProductTypeCode field value if set, zero value otherwise.

func (*GroupSummary) GetProductTypeCodeOk

func (o *GroupSummary) GetProductTypeCodeOk() (*string, bool)

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

func (*GroupSummary) GetProductTypeName

func (o *GroupSummary) GetProductTypeName() string

GetProductTypeName returns the ProductTypeName field value if set, zero value otherwise.

func (*GroupSummary) GetProductTypeNameOk

func (o *GroupSummary) GetProductTypeNameOk() (*string, bool)

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

func (*GroupSummary) HasGroupName

func (o *GroupSummary) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*GroupSummary) HasGroupResourceId

func (o *GroupSummary) HasGroupResourceId() bool

HasGroupResourceId returns a boolean if a field has been set.

func (*GroupSummary) HasGroupSq

func (o *GroupSummary) HasGroupSq() bool

HasGroupSq returns a boolean if a field has been set.

func (*GroupSummary) HasProductList

func (o *GroupSummary) HasProductList() bool

HasProductList returns a boolean if a field has been set.

func (*GroupSummary) HasProductTypeCode

func (o *GroupSummary) HasProductTypeCode() bool

HasProductTypeCode returns a boolean if a field has been set.

func (*GroupSummary) HasProductTypeName

func (o *GroupSummary) HasProductTypeName() bool

HasProductTypeName returns a boolean if a field has been set.

func (GroupSummary) MarshalJSON

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

func (*GroupSummary) SetGroupName

func (o *GroupSummary) SetGroupName(v string)

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

func (*GroupSummary) SetGroupResourceId

func (o *GroupSummary) SetGroupResourceId(v string)

SetGroupResourceId gets a reference to the given string and assigns it to the GroupResourceId field.

func (*GroupSummary) SetGroupSq

func (o *GroupSummary) SetGroupSq(v int64)

SetGroupSq gets a reference to the given int64 and assigns it to the GroupSq field.

func (*GroupSummary) SetProductList

func (o *GroupSummary) SetProductList(v []ProductList)

SetProductList gets a reference to the given []ProductList and assigns it to the ProductList field.

func (*GroupSummary) SetProductTypeCode

func (o *GroupSummary) SetProductTypeCode(v string)

SetProductTypeCode gets a reference to the given string and assigns it to the ProductTypeCode field.

func (*GroupSummary) SetProductTypeName

func (o *GroupSummary) SetProductTypeName(v string)

SetProductTypeName gets a reference to the given string and assigns it to the ProductTypeName field.

func (GroupSummary) ToMap

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

type ListResponseMetricStatisticsDataDtoOpenAPIV2

type ListResponseMetricStatisticsDataDtoOpenAPIV2 struct {
	Contents   []MetricStatisticsDataDtoOpenAPIV2 `json:"contents,omitempty"`
	TotalCount *int64                             `json:"totalCount,omitempty"`
}

ListResponseMetricStatisticsDataDtoOpenAPIV2 struct for ListResponseMetricStatisticsDataDtoOpenAPIV2

func NewListResponseMetricStatisticsDataDtoOpenAPIV2

func NewListResponseMetricStatisticsDataDtoOpenAPIV2() *ListResponseMetricStatisticsDataDtoOpenAPIV2

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

func NewListResponseMetricStatisticsDataDtoOpenAPIV2WithDefaults

func NewListResponseMetricStatisticsDataDtoOpenAPIV2WithDefaults() *ListResponseMetricStatisticsDataDtoOpenAPIV2

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

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) GetContents

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

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) GetContentsOk

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

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) GetTotalCount

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

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) GetTotalCountOk

func (o *ListResponseMetricStatisticsDataDtoOpenAPIV2) GetTotalCountOk() (*int64, 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 (*ListResponseMetricStatisticsDataDtoOpenAPIV2) HasContents

HasContents returns a boolean if a field has been set.

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) HasTotalCount

HasTotalCount returns a boolean if a field has been set.

func (ListResponseMetricStatisticsDataDtoOpenAPIV2) MarshalJSON

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) SetContents

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

func (*ListResponseMetricStatisticsDataDtoOpenAPIV2) SetTotalCount

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

func (ListResponseMetricStatisticsDataDtoOpenAPIV2) ToMap

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

type MappedNullable

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

type Member

type Member struct {
	AccountId          *string `json:"account_id,omitempty"`
	CompanyName        *string `json:"company_name,omitempty"`
	DstOffset          *string `json:"dst_offset,omitempty"`
	Email              *string `json:"email,omitempty"`
	Id                 *string `json:"id,omitempty"`
	LastLoginAt        *string `json:"last_login_at,omitempty"`
	MemberCreatedAt    *string `json:"member_created_at,omitempty"`
	PasswordReuseCount *int32  `json:"password_reuse_count,omitempty"`
	Timezone           *string `json:"timezone,omitempty"`
	TzId               *string `json:"tz_id,omitempty"`
	UserName           *string `json:"user_name,omitempty"`
	UtcOffset          *string `json:"utc_offset,omitempty"`
}

Member struct for Member

func NewMember

func NewMember() *Member

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

func NewMemberWithDefaults

func NewMemberWithDefaults() *Member

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

func (*Member) GetAccountId

func (o *Member) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*Member) GetAccountIdOk

func (o *Member) GetAccountIdOk() (*string, bool)

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

func (*Member) GetCompanyName

func (o *Member) GetCompanyName() string

GetCompanyName returns the CompanyName field value if set, zero value otherwise.

func (*Member) GetCompanyNameOk

func (o *Member) GetCompanyNameOk() (*string, bool)

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

func (*Member) GetDstOffset

func (o *Member) GetDstOffset() string

GetDstOffset returns the DstOffset field value if set, zero value otherwise.

func (*Member) GetDstOffsetOk

func (o *Member) GetDstOffsetOk() (*string, bool)

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

func (*Member) GetEmail

func (o *Member) GetEmail() string

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

func (*Member) GetEmailOk

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

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

func (*Member) GetId

func (o *Member) GetId() string

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

func (*Member) GetIdOk

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

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

func (*Member) GetLastLoginAt

func (o *Member) GetLastLoginAt() string

GetLastLoginAt returns the LastLoginAt field value if set, zero value otherwise.

func (*Member) GetLastLoginAtOk

func (o *Member) GetLastLoginAtOk() (*string, bool)

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

func (*Member) GetMemberCreatedAt

func (o *Member) GetMemberCreatedAt() string

GetMemberCreatedAt returns the MemberCreatedAt field value if set, zero value otherwise.

func (*Member) GetMemberCreatedAtOk

func (o *Member) GetMemberCreatedAtOk() (*string, bool)

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

func (*Member) GetPasswordReuseCount

func (o *Member) GetPasswordReuseCount() int32

GetPasswordReuseCount returns the PasswordReuseCount field value if set, zero value otherwise.

func (*Member) GetPasswordReuseCountOk

func (o *Member) GetPasswordReuseCountOk() (*int32, bool)

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

func (*Member) GetTimezone

func (o *Member) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*Member) GetTimezoneOk

func (o *Member) GetTimezoneOk() (*string, bool)

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

func (*Member) GetTzId

func (o *Member) GetTzId() string

GetTzId returns the TzId field value if set, zero value otherwise.

func (*Member) GetTzIdOk

func (o *Member) GetTzIdOk() (*string, bool)

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

func (*Member) GetUserName

func (o *Member) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*Member) GetUserNameOk

func (o *Member) GetUserNameOk() (*string, bool)

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

func (*Member) GetUtcOffset

func (o *Member) GetUtcOffset() string

GetUtcOffset returns the UtcOffset field value if set, zero value otherwise.

func (*Member) GetUtcOffsetOk

func (o *Member) GetUtcOffsetOk() (*string, bool)

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

func (*Member) HasAccountId

func (o *Member) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*Member) HasCompanyName

func (o *Member) HasCompanyName() bool

HasCompanyName returns a boolean if a field has been set.

func (*Member) HasDstOffset

func (o *Member) HasDstOffset() bool

HasDstOffset returns a boolean if a field has been set.

func (*Member) HasEmail

func (o *Member) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Member) HasId

func (o *Member) HasId() bool

HasId returns a boolean if a field has been set.

func (*Member) HasLastLoginAt

func (o *Member) HasLastLoginAt() bool

HasLastLoginAt returns a boolean if a field has been set.

func (*Member) HasMemberCreatedAt

func (o *Member) HasMemberCreatedAt() bool

HasMemberCreatedAt returns a boolean if a field has been set.

func (*Member) HasPasswordReuseCount

func (o *Member) HasPasswordReuseCount() bool

HasPasswordReuseCount returns a boolean if a field has been set.

func (*Member) HasTimezone

func (o *Member) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*Member) HasTzId

func (o *Member) HasTzId() bool

HasTzId returns a boolean if a field has been set.

func (*Member) HasUserName

func (o *Member) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (*Member) HasUtcOffset

func (o *Member) HasUtcOffset() bool

HasUtcOffset returns a boolean if a field has been set.

func (Member) MarshalJSON

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

func (*Member) SetAccountId

func (o *Member) SetAccountId(v string)

SetAccountId gets a reference to the given string and assigns it to the AccountId field.

func (*Member) SetCompanyName

func (o *Member) SetCompanyName(v string)

SetCompanyName gets a reference to the given string and assigns it to the CompanyName field.

func (*Member) SetDstOffset

func (o *Member) SetDstOffset(v string)

SetDstOffset gets a reference to the given string and assigns it to the DstOffset field.

func (*Member) SetEmail

func (o *Member) SetEmail(v string)

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

func (*Member) SetId

func (o *Member) SetId(v string)

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

func (*Member) SetLastLoginAt

func (o *Member) SetLastLoginAt(v string)

SetLastLoginAt gets a reference to the given string and assigns it to the LastLoginAt field.

func (*Member) SetMemberCreatedAt

func (o *Member) SetMemberCreatedAt(v string)

SetMemberCreatedAt gets a reference to the given string and assigns it to the MemberCreatedAt field.

func (*Member) SetPasswordReuseCount

func (o *Member) SetPasswordReuseCount(v int32)

SetPasswordReuseCount gets a reference to the given int32 and assigns it to the PasswordReuseCount field.

func (*Member) SetTimezone

func (o *Member) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*Member) SetTzId

func (o *Member) SetTzId(v string)

SetTzId gets a reference to the given string and assigns it to the TzId field.

func (*Member) SetUserName

func (o *Member) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*Member) SetUtcOffset

func (o *Member) SetUtcOffset(v string)

SetUtcOffset gets a reference to the given string and assigns it to the UtcOffset field.

func (Member) ToMap

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

type MetricDataConditionOpenAPIV2

type MetricDataConditionOpenAPIV2 struct {
	// 메트릭
	MetricKey string `json:"metricKey"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// 상품 리소스 아이디 목록 - 상품 리소스 아이디는 50개까지 지정할 수 있습니다.
	ProductResourceInfos []ProductResourceInfo `json:"productResourceInfos"`
	// 통계 집계 주기 (단위: 분)
	StatisticsPeriod *int32 `json:"statisticsPeriod,omitempty"`
	// 통계 유형 - 유효한 값 : MIN, MAX, AVG, SUM
	StatisticsTypeList []string `json:"statisticsTypeList,omitempty"`
}

MetricDataConditionOpenAPIV2 메트릭 데이터 조건 객체 - 조건은 200개까지 지정할 수 있습니다.

func NewMetricDataConditionOpenAPIV2

func NewMetricDataConditionOpenAPIV2(metricKey string, productResourceInfos []ProductResourceInfo) *MetricDataConditionOpenAPIV2

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

func NewMetricDataConditionOpenAPIV2WithDefaults

func NewMetricDataConditionOpenAPIV2WithDefaults() *MetricDataConditionOpenAPIV2

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

func (*MetricDataConditionOpenAPIV2) GetMetricKey

func (o *MetricDataConditionOpenAPIV2) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*MetricDataConditionOpenAPIV2) GetMetricKeyOk

func (o *MetricDataConditionOpenAPIV2) GetMetricKeyOk() (*string, bool)

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

func (*MetricDataConditionOpenAPIV2) GetObjectType

func (o *MetricDataConditionOpenAPIV2) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*MetricDataConditionOpenAPIV2) GetObjectTypeOk

func (o *MetricDataConditionOpenAPIV2) GetObjectTypeOk() (*string, bool)

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

func (*MetricDataConditionOpenAPIV2) GetProductResourceInfos

func (o *MetricDataConditionOpenAPIV2) GetProductResourceInfos() []ProductResourceInfo

GetProductResourceInfos returns the ProductResourceInfos field value

func (*MetricDataConditionOpenAPIV2) GetProductResourceInfosOk

func (o *MetricDataConditionOpenAPIV2) GetProductResourceInfosOk() ([]ProductResourceInfo, bool)

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

func (*MetricDataConditionOpenAPIV2) GetStatisticsPeriod

func (o *MetricDataConditionOpenAPIV2) GetStatisticsPeriod() int32

GetStatisticsPeriod returns the StatisticsPeriod field value if set, zero value otherwise.

func (*MetricDataConditionOpenAPIV2) GetStatisticsPeriodOk

func (o *MetricDataConditionOpenAPIV2) GetStatisticsPeriodOk() (*int32, bool)

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

func (*MetricDataConditionOpenAPIV2) GetStatisticsTypeList

func (o *MetricDataConditionOpenAPIV2) GetStatisticsTypeList() []string

GetStatisticsTypeList returns the StatisticsTypeList field value if set, zero value otherwise.

func (*MetricDataConditionOpenAPIV2) GetStatisticsTypeListOk

func (o *MetricDataConditionOpenAPIV2) GetStatisticsTypeListOk() ([]string, bool)

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

func (*MetricDataConditionOpenAPIV2) HasObjectType

func (o *MetricDataConditionOpenAPIV2) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*MetricDataConditionOpenAPIV2) HasStatisticsPeriod

func (o *MetricDataConditionOpenAPIV2) HasStatisticsPeriod() bool

HasStatisticsPeriod returns a boolean if a field has been set.

func (*MetricDataConditionOpenAPIV2) HasStatisticsTypeList

func (o *MetricDataConditionOpenAPIV2) HasStatisticsTypeList() bool

HasStatisticsTypeList returns a boolean if a field has been set.

func (MetricDataConditionOpenAPIV2) MarshalJSON

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

func (*MetricDataConditionOpenAPIV2) SetMetricKey

func (o *MetricDataConditionOpenAPIV2) SetMetricKey(v string)

SetMetricKey sets field value

func (*MetricDataConditionOpenAPIV2) SetObjectType

func (o *MetricDataConditionOpenAPIV2) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*MetricDataConditionOpenAPIV2) SetProductResourceInfos

func (o *MetricDataConditionOpenAPIV2) SetProductResourceInfos(v []ProductResourceInfo)

SetProductResourceInfos sets field value

func (*MetricDataConditionOpenAPIV2) SetStatisticsPeriod

func (o *MetricDataConditionOpenAPIV2) SetStatisticsPeriod(v int32)

SetStatisticsPeriod gets a reference to the given int32 and assigns it to the StatisticsPeriod field.

func (*MetricDataConditionOpenAPIV2) SetStatisticsTypeList

func (o *MetricDataConditionOpenAPIV2) SetStatisticsTypeList(v []string)

SetStatisticsTypeList gets a reference to the given []string and assigns it to the StatisticsTypeList field.

func (MetricDataConditionOpenAPIV2) ToMap

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

func (*MetricDataConditionOpenAPIV2) UnmarshalJSON

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

type MetricDataSearchCriteriaOpenAPIV2

type MetricDataSearchCriteriaOpenAPIV2 struct {
	// 유효하지 않은 값 제외 여부
	IgnoreInvalid *string `json:"ignoreInvalid,omitempty"`
	// 메트릭 데이터 조건
	MetricDataConditions []MetricDataConditionOpenAPIV2 `json:"metricDataConditions"`
	// 조회 종료 일시
	QueryEndDt string `json:"queryEndDt"`
	// 조회 시작 일시
	QueryStartDt string `json:"queryStartDt"`
}

MetricDataSearchCriteriaOpenAPIV2 메트릭 성능 데이터 조회 시 요청을 전달하기 위한 객체

func NewMetricDataSearchCriteriaOpenAPIV2

func NewMetricDataSearchCriteriaOpenAPIV2(metricDataConditions []MetricDataConditionOpenAPIV2, queryEndDt string, queryStartDt string) *MetricDataSearchCriteriaOpenAPIV2

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

func NewMetricDataSearchCriteriaOpenAPIV2WithDefaults

func NewMetricDataSearchCriteriaOpenAPIV2WithDefaults() *MetricDataSearchCriteriaOpenAPIV2

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

func (*MetricDataSearchCriteriaOpenAPIV2) GetIgnoreInvalid

func (o *MetricDataSearchCriteriaOpenAPIV2) GetIgnoreInvalid() string

GetIgnoreInvalid returns the IgnoreInvalid field value if set, zero value otherwise.

func (*MetricDataSearchCriteriaOpenAPIV2) GetIgnoreInvalidOk

func (o *MetricDataSearchCriteriaOpenAPIV2) GetIgnoreInvalidOk() (*string, bool)

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

func (*MetricDataSearchCriteriaOpenAPIV2) GetMetricDataConditions

func (o *MetricDataSearchCriteriaOpenAPIV2) GetMetricDataConditions() []MetricDataConditionOpenAPIV2

GetMetricDataConditions returns the MetricDataConditions field value

func (*MetricDataSearchCriteriaOpenAPIV2) GetMetricDataConditionsOk

func (o *MetricDataSearchCriteriaOpenAPIV2) GetMetricDataConditionsOk() ([]MetricDataConditionOpenAPIV2, bool)

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

func (*MetricDataSearchCriteriaOpenAPIV2) GetQueryEndDt

func (o *MetricDataSearchCriteriaOpenAPIV2) GetQueryEndDt() string

GetQueryEndDt returns the QueryEndDt field value

func (*MetricDataSearchCriteriaOpenAPIV2) GetQueryEndDtOk

func (o *MetricDataSearchCriteriaOpenAPIV2) GetQueryEndDtOk() (*string, bool)

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

func (*MetricDataSearchCriteriaOpenAPIV2) GetQueryStartDt

func (o *MetricDataSearchCriteriaOpenAPIV2) GetQueryStartDt() string

GetQueryStartDt returns the QueryStartDt field value

func (*MetricDataSearchCriteriaOpenAPIV2) GetQueryStartDtOk

func (o *MetricDataSearchCriteriaOpenAPIV2) GetQueryStartDtOk() (*string, bool)

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

func (*MetricDataSearchCriteriaOpenAPIV2) HasIgnoreInvalid

func (o *MetricDataSearchCriteriaOpenAPIV2) HasIgnoreInvalid() bool

HasIgnoreInvalid returns a boolean if a field has been set.

func (MetricDataSearchCriteriaOpenAPIV2) MarshalJSON

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

func (*MetricDataSearchCriteriaOpenAPIV2) SetIgnoreInvalid

func (o *MetricDataSearchCriteriaOpenAPIV2) SetIgnoreInvalid(v string)

SetIgnoreInvalid gets a reference to the given string and assigns it to the IgnoreInvalid field.

func (*MetricDataSearchCriteriaOpenAPIV2) SetMetricDataConditions

func (o *MetricDataSearchCriteriaOpenAPIV2) SetMetricDataConditions(v []MetricDataConditionOpenAPIV2)

SetMetricDataConditions sets field value

func (*MetricDataSearchCriteriaOpenAPIV2) SetQueryEndDt

func (o *MetricDataSearchCriteriaOpenAPIV2) SetQueryEndDt(v string)

SetQueryEndDt sets field value

func (*MetricDataSearchCriteriaOpenAPIV2) SetQueryStartDt

func (o *MetricDataSearchCriteriaOpenAPIV2) SetQueryStartDt(v string)

SetQueryStartDt sets field value

func (MetricDataSearchCriteriaOpenAPIV2) ToMap

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

func (*MetricDataSearchCriteriaOpenAPIV2) UnmarshalJSON

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

type MetricInfoDto

type MetricInfoDto struct {
	// swagger.product.MetricInfoDto.disableObject.value
	DisableObject *string `json:"disableObject,omitempty"`
	DisplayUnit   *string `json:"displayUnit,omitempty"`
	// 메트릭 단위 (고정)
	FixedUnit *string `json:"fixedUnit,omitempty"`
	// 로그 메트릭 여부
	IsLogMetric string `json:"isLogMetric"`
	// 개별항목 성능 존재 여부
	IsObjectExist string `json:"isObjectExist"`
	// 메트릭 설명
	MetricDescription *string `json:"metricDescription,omitempty"`
	// 메트릭 설명
	MetricDescriptionEn *string `json:"metricDescriptionEn,omitempty"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName string `json:"metricName"`
	// 메트릭 순서
	MetricOrder *int32 `json:"metricOrder,omitempty"`
	// swagger.product.MetricInfoDto.metricSetKey.value
	MetricSetKey string `json:"metricSetKey"`
	// 메트릭 세트 이름
	MetricSetName string `json:"metricSetName"`
	// 메트릭 유형
	MetricType string `json:"metricType"`
	// 메트릭 단위
	MetricUnit *string `json:"metricUnit,omitempty"`
	// 오브젝트 키 이름
	ObjectKeyName string `json:"objectKeyName"`
	// swagger.product.MetricInfoDto.disableObject.value
	ObjectType *string `json:"objectType,omitempty"`
	// swagger.product.MetricInfoDto.disableObject.value
	ObjectTypeNameEng *string `json:"objectTypeNameEng,omitempty"`
	// swagger.product.MetricInfoDto.disableObject.value
	ObjectTypeNameLoc *string `json:"objectTypeNameLoc,omitempty"`
	// swagger.product.MetricInfoDto.perfTitle.value
	PerfTitle string `json:"perfTitle"`
	// 메트릭 대상 유형
	ProductTargetType *string `json:"productTargetType,omitempty"`
	// 메트릭 대상 유형
	ProductTargetTypeEn *string `json:"productTargetTypeEn,omitempty"`
	// 상품 유형 코드
	ProductTypeCode string `json:"productTypeCode"`
	// 상품 유형 이름
	ProductTypeName string `json:"productTypeName"`
}

MetricInfoDto 메트릭 정보 조회 시 응답 전달하기 위한 객체

func NewMetricInfoDto

func NewMetricInfoDto(isLogMetric string, isObjectExist string, metricKey string, metricName string, metricSetKey string, metricSetName string, metricType string, objectKeyName string, perfTitle string, productTypeCode string, productTypeName string) *MetricInfoDto

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

func NewMetricInfoDtoWithDefaults

func NewMetricInfoDtoWithDefaults() *MetricInfoDto

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

func (*MetricInfoDto) GetDisableObject

func (o *MetricInfoDto) GetDisableObject() string

GetDisableObject returns the DisableObject field value if set, zero value otherwise.

func (*MetricInfoDto) GetDisableObjectOk

func (o *MetricInfoDto) GetDisableObjectOk() (*string, bool)

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

func (*MetricInfoDto) GetDisplayUnit

func (o *MetricInfoDto) GetDisplayUnit() string

GetDisplayUnit returns the DisplayUnit field value if set, zero value otherwise.

func (*MetricInfoDto) GetDisplayUnitOk

func (o *MetricInfoDto) GetDisplayUnitOk() (*string, bool)

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

func (*MetricInfoDto) GetFixedUnit

func (o *MetricInfoDto) GetFixedUnit() string

GetFixedUnit returns the FixedUnit field value if set, zero value otherwise.

func (*MetricInfoDto) GetFixedUnitOk

func (o *MetricInfoDto) GetFixedUnitOk() (*string, bool)

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

func (*MetricInfoDto) GetIsLogMetric

func (o *MetricInfoDto) GetIsLogMetric() string

GetIsLogMetric returns the IsLogMetric field value

func (*MetricInfoDto) GetIsLogMetricOk

func (o *MetricInfoDto) GetIsLogMetricOk() (*string, bool)

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

func (*MetricInfoDto) GetIsObjectExist

func (o *MetricInfoDto) GetIsObjectExist() string

GetIsObjectExist returns the IsObjectExist field value

func (*MetricInfoDto) GetIsObjectExistOk

func (o *MetricInfoDto) GetIsObjectExistOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricDescription

func (o *MetricInfoDto) GetMetricDescription() string

GetMetricDescription returns the MetricDescription field value if set, zero value otherwise.

func (*MetricInfoDto) GetMetricDescriptionEn

func (o *MetricInfoDto) GetMetricDescriptionEn() string

GetMetricDescriptionEn returns the MetricDescriptionEn field value if set, zero value otherwise.

func (*MetricInfoDto) GetMetricDescriptionEnOk

func (o *MetricInfoDto) GetMetricDescriptionEnOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricDescriptionOk

func (o *MetricInfoDto) GetMetricDescriptionOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricKey

func (o *MetricInfoDto) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*MetricInfoDto) GetMetricKeyOk

func (o *MetricInfoDto) GetMetricKeyOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricName

func (o *MetricInfoDto) GetMetricName() string

GetMetricName returns the MetricName field value

func (*MetricInfoDto) GetMetricNameOk

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

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

func (*MetricInfoDto) GetMetricOrder

func (o *MetricInfoDto) GetMetricOrder() int32

GetMetricOrder returns the MetricOrder field value if set, zero value otherwise.

func (*MetricInfoDto) GetMetricOrderOk

func (o *MetricInfoDto) GetMetricOrderOk() (*int32, bool)

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

func (*MetricInfoDto) GetMetricSetKey

func (o *MetricInfoDto) GetMetricSetKey() string

GetMetricSetKey returns the MetricSetKey field value

func (*MetricInfoDto) GetMetricSetKeyOk

func (o *MetricInfoDto) GetMetricSetKeyOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricSetName

func (o *MetricInfoDto) GetMetricSetName() string

GetMetricSetName returns the MetricSetName field value

func (*MetricInfoDto) GetMetricSetNameOk

func (o *MetricInfoDto) GetMetricSetNameOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricType

func (o *MetricInfoDto) GetMetricType() string

GetMetricType returns the MetricType field value

func (*MetricInfoDto) GetMetricTypeOk

func (o *MetricInfoDto) GetMetricTypeOk() (*string, bool)

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

func (*MetricInfoDto) GetMetricUnit

func (o *MetricInfoDto) GetMetricUnit() string

GetMetricUnit returns the MetricUnit field value if set, zero value otherwise.

func (*MetricInfoDto) GetMetricUnitOk

func (o *MetricInfoDto) GetMetricUnitOk() (*string, bool)

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

func (*MetricInfoDto) GetObjectKeyName

func (o *MetricInfoDto) GetObjectKeyName() string

GetObjectKeyName returns the ObjectKeyName field value

func (*MetricInfoDto) GetObjectKeyNameOk

func (o *MetricInfoDto) GetObjectKeyNameOk() (*string, bool)

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

func (*MetricInfoDto) GetObjectType

func (o *MetricInfoDto) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*MetricInfoDto) GetObjectTypeNameEng

func (o *MetricInfoDto) GetObjectTypeNameEng() string

GetObjectTypeNameEng returns the ObjectTypeNameEng field value if set, zero value otherwise.

func (*MetricInfoDto) GetObjectTypeNameEngOk

func (o *MetricInfoDto) GetObjectTypeNameEngOk() (*string, bool)

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

func (*MetricInfoDto) GetObjectTypeNameLoc

func (o *MetricInfoDto) GetObjectTypeNameLoc() string

GetObjectTypeNameLoc returns the ObjectTypeNameLoc field value if set, zero value otherwise.

func (*MetricInfoDto) GetObjectTypeNameLocOk

func (o *MetricInfoDto) GetObjectTypeNameLocOk() (*string, bool)

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

func (*MetricInfoDto) GetObjectTypeOk

func (o *MetricInfoDto) GetObjectTypeOk() (*string, bool)

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

func (*MetricInfoDto) GetPerfTitle

func (o *MetricInfoDto) GetPerfTitle() string

GetPerfTitle returns the PerfTitle field value

func (*MetricInfoDto) GetPerfTitleOk

func (o *MetricInfoDto) GetPerfTitleOk() (*string, bool)

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

func (*MetricInfoDto) GetProductTargetType

func (o *MetricInfoDto) GetProductTargetType() string

GetProductTargetType returns the ProductTargetType field value if set, zero value otherwise.

func (*MetricInfoDto) GetProductTargetTypeEn

func (o *MetricInfoDto) GetProductTargetTypeEn() string

GetProductTargetTypeEn returns the ProductTargetTypeEn field value if set, zero value otherwise.

func (*MetricInfoDto) GetProductTargetTypeEnOk

func (o *MetricInfoDto) GetProductTargetTypeEnOk() (*string, bool)

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

func (*MetricInfoDto) GetProductTargetTypeOk

func (o *MetricInfoDto) GetProductTargetTypeOk() (*string, bool)

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

func (*MetricInfoDto) GetProductTypeCode

func (o *MetricInfoDto) GetProductTypeCode() string

GetProductTypeCode returns the ProductTypeCode field value

func (*MetricInfoDto) GetProductTypeCodeOk

func (o *MetricInfoDto) GetProductTypeCodeOk() (*string, bool)

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

func (*MetricInfoDto) GetProductTypeName

func (o *MetricInfoDto) GetProductTypeName() string

GetProductTypeName returns the ProductTypeName field value

func (*MetricInfoDto) GetProductTypeNameOk

func (o *MetricInfoDto) GetProductTypeNameOk() (*string, bool)

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

func (*MetricInfoDto) HasDisableObject

func (o *MetricInfoDto) HasDisableObject() bool

HasDisableObject returns a boolean if a field has been set.

func (*MetricInfoDto) HasDisplayUnit

func (o *MetricInfoDto) HasDisplayUnit() bool

HasDisplayUnit returns a boolean if a field has been set.

func (*MetricInfoDto) HasFixedUnit

func (o *MetricInfoDto) HasFixedUnit() bool

HasFixedUnit returns a boolean if a field has been set.

func (*MetricInfoDto) HasMetricDescription

func (o *MetricInfoDto) HasMetricDescription() bool

HasMetricDescription returns a boolean if a field has been set.

func (*MetricInfoDto) HasMetricDescriptionEn

func (o *MetricInfoDto) HasMetricDescriptionEn() bool

HasMetricDescriptionEn returns a boolean if a field has been set.

func (*MetricInfoDto) HasMetricOrder

func (o *MetricInfoDto) HasMetricOrder() bool

HasMetricOrder returns a boolean if a field has been set.

func (*MetricInfoDto) HasMetricUnit

func (o *MetricInfoDto) HasMetricUnit() bool

HasMetricUnit returns a boolean if a field has been set.

func (*MetricInfoDto) HasObjectType

func (o *MetricInfoDto) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*MetricInfoDto) HasObjectTypeNameEng

func (o *MetricInfoDto) HasObjectTypeNameEng() bool

HasObjectTypeNameEng returns a boolean if a field has been set.

func (*MetricInfoDto) HasObjectTypeNameLoc

func (o *MetricInfoDto) HasObjectTypeNameLoc() bool

HasObjectTypeNameLoc returns a boolean if a field has been set.

func (*MetricInfoDto) HasProductTargetType

func (o *MetricInfoDto) HasProductTargetType() bool

HasProductTargetType returns a boolean if a field has been set.

func (*MetricInfoDto) HasProductTargetTypeEn

func (o *MetricInfoDto) HasProductTargetTypeEn() bool

HasProductTargetTypeEn returns a boolean if a field has been set.

func (MetricInfoDto) MarshalJSON

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

func (*MetricInfoDto) SetDisableObject

func (o *MetricInfoDto) SetDisableObject(v string)

SetDisableObject gets a reference to the given string and assigns it to the DisableObject field.

func (*MetricInfoDto) SetDisplayUnit

func (o *MetricInfoDto) SetDisplayUnit(v string)

SetDisplayUnit gets a reference to the given string and assigns it to the DisplayUnit field.

func (*MetricInfoDto) SetFixedUnit

func (o *MetricInfoDto) SetFixedUnit(v string)

SetFixedUnit gets a reference to the given string and assigns it to the FixedUnit field.

func (*MetricInfoDto) SetIsLogMetric

func (o *MetricInfoDto) SetIsLogMetric(v string)

SetIsLogMetric sets field value

func (*MetricInfoDto) SetIsObjectExist

func (o *MetricInfoDto) SetIsObjectExist(v string)

SetIsObjectExist sets field value

func (*MetricInfoDto) SetMetricDescription

func (o *MetricInfoDto) SetMetricDescription(v string)

SetMetricDescription gets a reference to the given string and assigns it to the MetricDescription field.

func (*MetricInfoDto) SetMetricDescriptionEn

func (o *MetricInfoDto) SetMetricDescriptionEn(v string)

SetMetricDescriptionEn gets a reference to the given string and assigns it to the MetricDescriptionEn field.

func (*MetricInfoDto) SetMetricKey

func (o *MetricInfoDto) SetMetricKey(v string)

SetMetricKey sets field value

func (*MetricInfoDto) SetMetricName

func (o *MetricInfoDto) SetMetricName(v string)

SetMetricName sets field value

func (*MetricInfoDto) SetMetricOrder

func (o *MetricInfoDto) SetMetricOrder(v int32)

SetMetricOrder gets a reference to the given int32 and assigns it to the MetricOrder field.

func (*MetricInfoDto) SetMetricSetKey

func (o *MetricInfoDto) SetMetricSetKey(v string)

SetMetricSetKey sets field value

func (*MetricInfoDto) SetMetricSetName

func (o *MetricInfoDto) SetMetricSetName(v string)

SetMetricSetName sets field value

func (*MetricInfoDto) SetMetricType

func (o *MetricInfoDto) SetMetricType(v string)

SetMetricType sets field value

func (*MetricInfoDto) SetMetricUnit

func (o *MetricInfoDto) SetMetricUnit(v string)

SetMetricUnit gets a reference to the given string and assigns it to the MetricUnit field.

func (*MetricInfoDto) SetObjectKeyName

func (o *MetricInfoDto) SetObjectKeyName(v string)

SetObjectKeyName sets field value

func (*MetricInfoDto) SetObjectType

func (o *MetricInfoDto) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*MetricInfoDto) SetObjectTypeNameEng

func (o *MetricInfoDto) SetObjectTypeNameEng(v string)

SetObjectTypeNameEng gets a reference to the given string and assigns it to the ObjectTypeNameEng field.

func (*MetricInfoDto) SetObjectTypeNameLoc

func (o *MetricInfoDto) SetObjectTypeNameLoc(v string)

SetObjectTypeNameLoc gets a reference to the given string and assigns it to the ObjectTypeNameLoc field.

func (*MetricInfoDto) SetPerfTitle

func (o *MetricInfoDto) SetPerfTitle(v string)

SetPerfTitle sets field value

func (*MetricInfoDto) SetProductTargetType

func (o *MetricInfoDto) SetProductTargetType(v string)

SetProductTargetType gets a reference to the given string and assigns it to the ProductTargetType field.

func (*MetricInfoDto) SetProductTargetTypeEn

func (o *MetricInfoDto) SetProductTargetTypeEn(v string)

SetProductTargetTypeEn gets a reference to the given string and assigns it to the ProductTargetTypeEn field.

func (*MetricInfoDto) SetProductTypeCode

func (o *MetricInfoDto) SetProductTypeCode(v string)

SetProductTypeCode sets field value

func (*MetricInfoDto) SetProductTypeName

func (o *MetricInfoDto) SetProductTypeName(v string)

SetProductTypeName sets field value

func (MetricInfoDto) ToMap

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

func (*MetricInfoDto) UnmarshalJSON

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

type MetricStatisticsDataDtoOpenAPIV2

type MetricStatisticsDataDtoOpenAPIV2 struct {
	// 메트릭 키
	MetricKey *string `json:"metricKey,omitempty"`
	// 메트릭 이름
	MetricName *string `json:"metricName,omitempty"`
	// 메트릭 유형
	MetricType *string `json:"metricType,omitempty"`
	// 메트릭 단위
	MetricUnit *string `json:"metricUnit,omitempty"`
	// 개별항목 출력 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 개별항목 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// 성능 데이터
	PerfData []map[string]interface{} `json:"perfData,omitempty"`
	// 상품의 이름
	ProductName *string `json:"productName,omitempty"`
	// 상품 리소스 아이디
	ProductResourceId *string `json:"productResourceId,omitempty"`
	// 통계 집계 주기 (단위: 분)
	StatisticsPeriod int32 `json:"statisticsPeriod"`
	// 통계 유형
	StatisticsType string `json:"statisticsType"`
}

MetricStatisticsDataDtoOpenAPIV2 통계 성능 조회 시 응답을 전달하기 위한 객체

func NewMetricStatisticsDataDtoOpenAPIV2

func NewMetricStatisticsDataDtoOpenAPIV2(statisticsPeriod int32, statisticsType string) *MetricStatisticsDataDtoOpenAPIV2

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

func NewMetricStatisticsDataDtoOpenAPIV2WithDefaults

func NewMetricStatisticsDataDtoOpenAPIV2WithDefaults() *MetricStatisticsDataDtoOpenAPIV2

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricKey

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricKey() string

GetMetricKey returns the MetricKey field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricKeyOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricKeyOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricName

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricName() string

GetMetricName returns the MetricName field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricNameOk

func (o *MetricStatisticsDataDtoOpenAPIV2) 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.

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricType

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricType() string

GetMetricType returns the MetricType field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricTypeOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricTypeOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricUnit

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricUnit() string

GetMetricUnit returns the MetricUnit field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetMetricUnitOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetMetricUnitOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetObjectDisplayName

func (o *MetricStatisticsDataDtoOpenAPIV2) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetObjectDisplayNameOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetObjectDisplayNameOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetObjectName

func (o *MetricStatisticsDataDtoOpenAPIV2) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetObjectNameOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetObjectNameOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetObjectType

func (o *MetricStatisticsDataDtoOpenAPIV2) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetObjectTypeOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetObjectTypeOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetPerfData

func (o *MetricStatisticsDataDtoOpenAPIV2) GetPerfData() []map[string]interface{}

GetPerfData returns the PerfData field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetPerfDataOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetPerfDataOk() ([]map[string]interface{}, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetProductName

func (o *MetricStatisticsDataDtoOpenAPIV2) GetProductName() string

GetProductName returns the ProductName field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetProductNameOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetProductNameOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetProductResourceId

func (o *MetricStatisticsDataDtoOpenAPIV2) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value if set, zero value otherwise.

func (*MetricStatisticsDataDtoOpenAPIV2) GetProductResourceIdOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetProductResourceIdOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetStatisticsPeriod

func (o *MetricStatisticsDataDtoOpenAPIV2) GetStatisticsPeriod() int32

GetStatisticsPeriod returns the StatisticsPeriod field value

func (*MetricStatisticsDataDtoOpenAPIV2) GetStatisticsPeriodOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetStatisticsPeriodOk() (*int32, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) GetStatisticsType

func (o *MetricStatisticsDataDtoOpenAPIV2) GetStatisticsType() string

GetStatisticsType returns the StatisticsType field value

func (*MetricStatisticsDataDtoOpenAPIV2) GetStatisticsTypeOk

func (o *MetricStatisticsDataDtoOpenAPIV2) GetStatisticsTypeOk() (*string, bool)

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

func (*MetricStatisticsDataDtoOpenAPIV2) HasMetricKey

func (o *MetricStatisticsDataDtoOpenAPIV2) HasMetricKey() bool

HasMetricKey returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasMetricName

func (o *MetricStatisticsDataDtoOpenAPIV2) HasMetricName() bool

HasMetricName returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasMetricType

func (o *MetricStatisticsDataDtoOpenAPIV2) HasMetricType() bool

HasMetricType returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasMetricUnit

func (o *MetricStatisticsDataDtoOpenAPIV2) HasMetricUnit() bool

HasMetricUnit returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasObjectDisplayName

func (o *MetricStatisticsDataDtoOpenAPIV2) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasObjectName

func (o *MetricStatisticsDataDtoOpenAPIV2) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasObjectType

func (o *MetricStatisticsDataDtoOpenAPIV2) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasPerfData

func (o *MetricStatisticsDataDtoOpenAPIV2) HasPerfData() bool

HasPerfData returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasProductName

func (o *MetricStatisticsDataDtoOpenAPIV2) HasProductName() bool

HasProductName returns a boolean if a field has been set.

func (*MetricStatisticsDataDtoOpenAPIV2) HasProductResourceId

func (o *MetricStatisticsDataDtoOpenAPIV2) HasProductResourceId() bool

HasProductResourceId returns a boolean if a field has been set.

func (MetricStatisticsDataDtoOpenAPIV2) MarshalJSON

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

func (*MetricStatisticsDataDtoOpenAPIV2) SetMetricKey

func (o *MetricStatisticsDataDtoOpenAPIV2) SetMetricKey(v string)

SetMetricKey gets a reference to the given string and assigns it to the MetricKey field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetMetricName

func (o *MetricStatisticsDataDtoOpenAPIV2) SetMetricName(v string)

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

func (*MetricStatisticsDataDtoOpenAPIV2) SetMetricType

func (o *MetricStatisticsDataDtoOpenAPIV2) SetMetricType(v string)

SetMetricType gets a reference to the given string and assigns it to the MetricType field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetMetricUnit

func (o *MetricStatisticsDataDtoOpenAPIV2) SetMetricUnit(v string)

SetMetricUnit gets a reference to the given string and assigns it to the MetricUnit field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetObjectDisplayName

func (o *MetricStatisticsDataDtoOpenAPIV2) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetObjectName

func (o *MetricStatisticsDataDtoOpenAPIV2) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetObjectType

func (o *MetricStatisticsDataDtoOpenAPIV2) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetPerfData

func (o *MetricStatisticsDataDtoOpenAPIV2) SetPerfData(v []map[string]interface{})

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

func (*MetricStatisticsDataDtoOpenAPIV2) SetProductName

func (o *MetricStatisticsDataDtoOpenAPIV2) SetProductName(v string)

SetProductName gets a reference to the given string and assigns it to the ProductName field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetProductResourceId

func (o *MetricStatisticsDataDtoOpenAPIV2) SetProductResourceId(v string)

SetProductResourceId gets a reference to the given string and assigns it to the ProductResourceId field.

func (*MetricStatisticsDataDtoOpenAPIV2) SetStatisticsPeriod

func (o *MetricStatisticsDataDtoOpenAPIV2) SetStatisticsPeriod(v int32)

SetStatisticsPeriod sets field value

func (*MetricStatisticsDataDtoOpenAPIV2) SetStatisticsType

func (o *MetricStatisticsDataDtoOpenAPIV2) SetStatisticsType(v string)

SetStatisticsType sets field value

func (MetricStatisticsDataDtoOpenAPIV2) ToMap

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

func (*MetricStatisticsDataDtoOpenAPIV2) UnmarshalJSON

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

type MetricSummary

type MetricSummary struct {
	// 로그 메트릭 여부
	IsLogMetric string `json:"isLogMetric"`
	// 오브젝트 존재여부
	IsObjectExist string `json:"isObjectExist"`
	// 메트릭 설명
	MetricDescription *string `json:"metricDescription,omitempty"`
	// 메트릭 설명
	MetricDescriptionEn *string `json:"metricDescriptionEn,omitempty"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName string `json:"metricName"`
	// 메트릭 셋 키
	MetricSetKey string `json:"metricSetKey"`
	// 메트릭 셋 이름
	MetricSetName string `json:"metricSetName"`
	// 메트릭 유형
	MetricType string `json:"metricType"`
	// 메트릭 단위
	MetricUnit string `json:"metricUnit"`
	// 메트릭 대상 유형
	ProductTargetType *string `json:"productTargetType,omitempty"`
	// 메트릭 대상 유형
	ProductTargetTypeEn *string `json:"productTargetTypeEn,omitempty"`
}

MetricSummary 메트릭 요약 객체

func NewMetricSummary

func NewMetricSummary(isLogMetric string, isObjectExist string, metricKey string, metricName string, metricSetKey string, metricSetName string, metricType string, metricUnit string) *MetricSummary

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

func NewMetricSummaryWithDefaults

func NewMetricSummaryWithDefaults() *MetricSummary

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

func (*MetricSummary) GetIsLogMetric

func (o *MetricSummary) GetIsLogMetric() string

GetIsLogMetric returns the IsLogMetric field value

func (*MetricSummary) GetIsLogMetricOk

func (o *MetricSummary) GetIsLogMetricOk() (*string, bool)

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

func (*MetricSummary) GetIsObjectExist

func (o *MetricSummary) GetIsObjectExist() string

GetIsObjectExist returns the IsObjectExist field value

func (*MetricSummary) GetIsObjectExistOk

func (o *MetricSummary) GetIsObjectExistOk() (*string, bool)

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

func (*MetricSummary) GetMetricDescription

func (o *MetricSummary) GetMetricDescription() string

GetMetricDescription returns the MetricDescription field value if set, zero value otherwise.

func (*MetricSummary) GetMetricDescriptionEn

func (o *MetricSummary) GetMetricDescriptionEn() string

GetMetricDescriptionEn returns the MetricDescriptionEn field value if set, zero value otherwise.

func (*MetricSummary) GetMetricDescriptionEnOk

func (o *MetricSummary) GetMetricDescriptionEnOk() (*string, bool)

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

func (*MetricSummary) GetMetricDescriptionOk

func (o *MetricSummary) GetMetricDescriptionOk() (*string, bool)

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

func (*MetricSummary) GetMetricKey

func (o *MetricSummary) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*MetricSummary) GetMetricKeyOk

func (o *MetricSummary) GetMetricKeyOk() (*string, bool)

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

func (*MetricSummary) GetMetricName

func (o *MetricSummary) GetMetricName() string

GetMetricName returns the MetricName field value

func (*MetricSummary) GetMetricNameOk

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

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

func (*MetricSummary) GetMetricSetKey

func (o *MetricSummary) GetMetricSetKey() string

GetMetricSetKey returns the MetricSetKey field value

func (*MetricSummary) GetMetricSetKeyOk

func (o *MetricSummary) GetMetricSetKeyOk() (*string, bool)

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

func (*MetricSummary) GetMetricSetName

func (o *MetricSummary) GetMetricSetName() string

GetMetricSetName returns the MetricSetName field value

func (*MetricSummary) GetMetricSetNameOk

func (o *MetricSummary) GetMetricSetNameOk() (*string, bool)

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

func (*MetricSummary) GetMetricType

func (o *MetricSummary) GetMetricType() string

GetMetricType returns the MetricType field value

func (*MetricSummary) GetMetricTypeOk

func (o *MetricSummary) GetMetricTypeOk() (*string, bool)

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

func (*MetricSummary) GetMetricUnit

func (o *MetricSummary) GetMetricUnit() string

GetMetricUnit returns the MetricUnit field value

func (*MetricSummary) GetMetricUnitOk

func (o *MetricSummary) GetMetricUnitOk() (*string, bool)

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

func (*MetricSummary) GetProductTargetType

func (o *MetricSummary) GetProductTargetType() string

GetProductTargetType returns the ProductTargetType field value if set, zero value otherwise.

func (*MetricSummary) GetProductTargetTypeEn

func (o *MetricSummary) GetProductTargetTypeEn() string

GetProductTargetTypeEn returns the ProductTargetTypeEn field value if set, zero value otherwise.

func (*MetricSummary) GetProductTargetTypeEnOk

func (o *MetricSummary) GetProductTargetTypeEnOk() (*string, bool)

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

func (*MetricSummary) GetProductTargetTypeOk

func (o *MetricSummary) GetProductTargetTypeOk() (*string, bool)

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

func (*MetricSummary) HasMetricDescription

func (o *MetricSummary) HasMetricDescription() bool

HasMetricDescription returns a boolean if a field has been set.

func (*MetricSummary) HasMetricDescriptionEn

func (o *MetricSummary) HasMetricDescriptionEn() bool

HasMetricDescriptionEn returns a boolean if a field has been set.

func (*MetricSummary) HasProductTargetType

func (o *MetricSummary) HasProductTargetType() bool

HasProductTargetType returns a boolean if a field has been set.

func (*MetricSummary) HasProductTargetTypeEn

func (o *MetricSummary) HasProductTargetTypeEn() bool

HasProductTargetTypeEn returns a boolean if a field has been set.

func (MetricSummary) MarshalJSON

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

func (*MetricSummary) SetIsLogMetric

func (o *MetricSummary) SetIsLogMetric(v string)

SetIsLogMetric sets field value

func (*MetricSummary) SetIsObjectExist

func (o *MetricSummary) SetIsObjectExist(v string)

SetIsObjectExist sets field value

func (*MetricSummary) SetMetricDescription

func (o *MetricSummary) SetMetricDescription(v string)

SetMetricDescription gets a reference to the given string and assigns it to the MetricDescription field.

func (*MetricSummary) SetMetricDescriptionEn

func (o *MetricSummary) SetMetricDescriptionEn(v string)

SetMetricDescriptionEn gets a reference to the given string and assigns it to the MetricDescriptionEn field.

func (*MetricSummary) SetMetricKey

func (o *MetricSummary) SetMetricKey(v string)

SetMetricKey sets field value

func (*MetricSummary) SetMetricName

func (o *MetricSummary) SetMetricName(v string)

SetMetricName sets field value

func (*MetricSummary) SetMetricSetKey

func (o *MetricSummary) SetMetricSetKey(v string)

SetMetricSetKey sets field value

func (*MetricSummary) SetMetricSetName

func (o *MetricSummary) SetMetricSetName(v string)

SetMetricSetName sets field value

func (*MetricSummary) SetMetricType

func (o *MetricSummary) SetMetricType(v string)

SetMetricType sets field value

func (*MetricSummary) SetMetricUnit

func (o *MetricSummary) SetMetricUnit(v string)

SetMetricUnit sets field value

func (*MetricSummary) SetProductTargetType

func (o *MetricSummary) SetProductTargetType(v string)

SetProductTargetType gets a reference to the given string and assigns it to the ProductTargetType field.

func (*MetricSummary) SetProductTargetTypeEn

func (o *MetricSummary) SetProductTargetTypeEn(v string)

SetProductTargetTypeEn gets a reference to the given string and assigns it to the ProductTargetTypeEn field.

func (MetricSummary) ToMap

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

func (*MetricSummary) UnmarshalJSON

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

type NotificationMethod

type NotificationMethod struct {
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 전송 메소드 - 허용 값: MESSENGER, SMS, MAIL
	SendMethod []string `json:"sendMethod"`
}

NotificationMethod 이벤트 레벨별 알림 방법 정보 객체

func NewNotificationMethod

func NewNotificationMethod(eventLevel string, sendMethod []string) *NotificationMethod

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

func NewNotificationMethodWithDefaults

func NewNotificationMethodWithDefaults() *NotificationMethod

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

func (*NotificationMethod) GetEventLevel

func (o *NotificationMethod) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*NotificationMethod) GetEventLevelOk

func (o *NotificationMethod) GetEventLevelOk() (*string, bool)

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

func (*NotificationMethod) GetSendMethod

func (o *NotificationMethod) GetSendMethod() []string

GetSendMethod returns the SendMethod field value

func (*NotificationMethod) GetSendMethodOk

func (o *NotificationMethod) GetSendMethodOk() ([]string, bool)

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

func (NotificationMethod) MarshalJSON

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

func (*NotificationMethod) SetEventLevel

func (o *NotificationMethod) SetEventLevel(v string)

SetEventLevel sets field value

func (*NotificationMethod) SetSendMethod

func (o *NotificationMethod) SetSendMethod(v []string)

SetSendMethod sets field value

func (NotificationMethod) ToMap

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

func (*NotificationMethod) UnmarshalJSON

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

type NotificationRecipient

type NotificationRecipient struct {
	// 알림 메소드
	NotificationMethods []NotificationMethod `json:"notificationMethods"`
	// 수신인 키 - 수신인 키는 @[프로젝트 멤버 조회] 또는 @[사용자의 주소록 목록 조회]를 이용하여 조회합니다.
	RecipientKey string `json:"recipientKey"`
	// 수신인 유형 - USER : 사용자, ADDRBOOK : 주소록
	RecipientType string `json:"recipientType"`
}

NotificationRecipient 이벤트 알림 수신인 정보 객체

func NewNotificationRecipient

func NewNotificationRecipient(notificationMethods []NotificationMethod, recipientKey string, recipientType string) *NotificationRecipient

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

func NewNotificationRecipientWithDefaults

func NewNotificationRecipientWithDefaults() *NotificationRecipient

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

func (*NotificationRecipient) GetNotificationMethods

func (o *NotificationRecipient) GetNotificationMethods() []NotificationMethod

GetNotificationMethods returns the NotificationMethods field value

func (*NotificationRecipient) GetNotificationMethodsOk

func (o *NotificationRecipient) GetNotificationMethodsOk() ([]NotificationMethod, bool)

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

func (*NotificationRecipient) GetRecipientKey

func (o *NotificationRecipient) GetRecipientKey() string

GetRecipientKey returns the RecipientKey field value

func (*NotificationRecipient) GetRecipientKeyOk

func (o *NotificationRecipient) GetRecipientKeyOk() (*string, bool)

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

func (*NotificationRecipient) GetRecipientType

func (o *NotificationRecipient) GetRecipientType() string

GetRecipientType returns the RecipientType field value

func (*NotificationRecipient) GetRecipientTypeOk

func (o *NotificationRecipient) GetRecipientTypeOk() (*string, bool)

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

func (NotificationRecipient) MarshalJSON

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

func (*NotificationRecipient) SetNotificationMethods

func (o *NotificationRecipient) SetNotificationMethods(v []NotificationMethod)

SetNotificationMethods sets field value

func (*NotificationRecipient) SetRecipientKey

func (o *NotificationRecipient) SetRecipientKey(v string)

SetRecipientKey sets field value

func (*NotificationRecipient) SetRecipientType

func (o *NotificationRecipient) SetRecipientType(v string)

SetRecipientType sets field value

func (NotificationRecipient) ToMap

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

func (*NotificationRecipient) UnmarshalJSON

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

type NotificationRecipientHistory

type NotificationRecipientHistory struct {
	// 주소록 아이디
	AddrbookIds []int64 `json:"addrbookIds,omitempty"`
	// 사용자 아이디
	UserIds []string `json:"userIds,omitempty"`
	// 사용자 이름
	UserNames []string `json:"userNames,omitempty"`
}

NotificationRecipientHistory 이벤트 알림 수신인 이력 정보 객체

func NewNotificationRecipientHistory

func NewNotificationRecipientHistory() *NotificationRecipientHistory

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

func NewNotificationRecipientHistoryWithDefaults

func NewNotificationRecipientHistoryWithDefaults() *NotificationRecipientHistory

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

func (*NotificationRecipientHistory) GetAddrbookIds

func (o *NotificationRecipientHistory) GetAddrbookIds() []int64

GetAddrbookIds returns the AddrbookIds field value if set, zero value otherwise.

func (*NotificationRecipientHistory) GetAddrbookIdsOk

func (o *NotificationRecipientHistory) GetAddrbookIdsOk() ([]int64, bool)

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

func (*NotificationRecipientHistory) GetUserIds

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

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

func (*NotificationRecipientHistory) GetUserIdsOk

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

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

func (*NotificationRecipientHistory) GetUserNames

func (o *NotificationRecipientHistory) GetUserNames() []string

GetUserNames returns the UserNames field value if set, zero value otherwise.

func (*NotificationRecipientHistory) GetUserNamesOk

func (o *NotificationRecipientHistory) GetUserNamesOk() ([]string, bool)

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

func (*NotificationRecipientHistory) HasAddrbookIds

func (o *NotificationRecipientHistory) HasAddrbookIds() bool

HasAddrbookIds returns a boolean if a field has been set.

func (*NotificationRecipientHistory) HasUserIds

func (o *NotificationRecipientHistory) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (*NotificationRecipientHistory) HasUserNames

func (o *NotificationRecipientHistory) HasUserNames() bool

HasUserNames returns a boolean if a field has been set.

func (NotificationRecipientHistory) MarshalJSON

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

func (*NotificationRecipientHistory) SetAddrbookIds

func (o *NotificationRecipientHistory) SetAddrbookIds(v []int64)

SetAddrbookIds gets a reference to the given []int64 and assigns it to the AddrbookIds field.

func (*NotificationRecipientHistory) SetUserIds

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

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

func (*NotificationRecipientHistory) SetUserNames

func (o *NotificationRecipientHistory) SetUserNames(v []string)

SetUserNames gets a reference to the given []string and assigns it to the UserNames field.

func (NotificationRecipientHistory) ToMap

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

type NotificationResponse

type NotificationResponse struct {
	AddrbookAdditionalInfo *AddrbookAdditionalInfo `json:"addrbookAdditionalInfo,omitempty"`
	// 알림 메소드 정보
	NotificationMethods []NotificationMethod `json:"notificationMethods"`
	// 수신인 키 - 수신인 키는 @[프로젝트 멤버 조회] 또는 @[사용자의 주소록 목록 조회]를 이용하여 조회합니다.
	RecipientKey string `json:"recipientKey"`
	// 수신인 이름
	RecipientName string `json:"recipientName"`
	// 수신인 유형 - USER : 사용자, ADDRBOOK : 주소록
	RecipientType      string  `json:"recipientType"`
	UserAdditionalInfo *Member `json:"userAdditionalInfo,omitempty"`
}

NotificationResponse 이벤트 알림 정보 응답 전송 객체

func NewNotificationResponse

func NewNotificationResponse(notificationMethods []NotificationMethod, recipientKey string, recipientName string, recipientType string) *NotificationResponse

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

func NewNotificationResponseWithDefaults

func NewNotificationResponseWithDefaults() *NotificationResponse

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

func (*NotificationResponse) GetAddrbookAdditionalInfo

func (o *NotificationResponse) GetAddrbookAdditionalInfo() AddrbookAdditionalInfo

GetAddrbookAdditionalInfo returns the AddrbookAdditionalInfo field value if set, zero value otherwise.

func (*NotificationResponse) GetAddrbookAdditionalInfoOk

func (o *NotificationResponse) GetAddrbookAdditionalInfoOk() (*AddrbookAdditionalInfo, bool)

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

func (*NotificationResponse) GetNotificationMethods

func (o *NotificationResponse) GetNotificationMethods() []NotificationMethod

GetNotificationMethods returns the NotificationMethods field value

func (*NotificationResponse) GetNotificationMethodsOk

func (o *NotificationResponse) GetNotificationMethodsOk() ([]NotificationMethod, bool)

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

func (*NotificationResponse) GetRecipientKey

func (o *NotificationResponse) GetRecipientKey() string

GetRecipientKey returns the RecipientKey field value

func (*NotificationResponse) GetRecipientKeyOk

func (o *NotificationResponse) GetRecipientKeyOk() (*string, bool)

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

func (*NotificationResponse) GetRecipientName

func (o *NotificationResponse) GetRecipientName() string

GetRecipientName returns the RecipientName field value

func (*NotificationResponse) GetRecipientNameOk

func (o *NotificationResponse) GetRecipientNameOk() (*string, bool)

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

func (*NotificationResponse) GetRecipientType

func (o *NotificationResponse) GetRecipientType() string

GetRecipientType returns the RecipientType field value

func (*NotificationResponse) GetRecipientTypeOk

func (o *NotificationResponse) GetRecipientTypeOk() (*string, bool)

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

func (*NotificationResponse) GetUserAdditionalInfo

func (o *NotificationResponse) GetUserAdditionalInfo() Member

GetUserAdditionalInfo returns the UserAdditionalInfo field value if set, zero value otherwise.

func (*NotificationResponse) GetUserAdditionalInfoOk

func (o *NotificationResponse) GetUserAdditionalInfoOk() (*Member, bool)

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

func (*NotificationResponse) HasAddrbookAdditionalInfo

func (o *NotificationResponse) HasAddrbookAdditionalInfo() bool

HasAddrbookAdditionalInfo returns a boolean if a field has been set.

func (*NotificationResponse) HasUserAdditionalInfo

func (o *NotificationResponse) HasUserAdditionalInfo() bool

HasUserAdditionalInfo returns a boolean if a field has been set.

func (NotificationResponse) MarshalJSON

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

func (*NotificationResponse) SetAddrbookAdditionalInfo

func (o *NotificationResponse) SetAddrbookAdditionalInfo(v AddrbookAdditionalInfo)

SetAddrbookAdditionalInfo gets a reference to the given AddrbookAdditionalInfo and assigns it to the AddrbookAdditionalInfo field.

func (*NotificationResponse) SetNotificationMethods

func (o *NotificationResponse) SetNotificationMethods(v []NotificationMethod)

SetNotificationMethods sets field value

func (*NotificationResponse) SetRecipientKey

func (o *NotificationResponse) SetRecipientKey(v string)

SetRecipientKey sets field value

func (*NotificationResponse) SetRecipientName

func (o *NotificationResponse) SetRecipientName(v string)

SetRecipientName sets field value

func (*NotificationResponse) SetRecipientType

func (o *NotificationResponse) SetRecipientType(v string)

SetRecipientType sets field value

func (*NotificationResponse) SetUserAdditionalInfo

func (o *NotificationResponse) SetUserAdditionalInfo(v Member)

SetUserAdditionalInfo gets a reference to the given Member and assigns it to the UserAdditionalInfo field.

func (NotificationResponse) ToMap

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

func (*NotificationResponse) UnmarshalJSON

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

type NotificationStatus

type NotificationStatus struct {
	// swagger.event.notificationStatus.errorMsg.value
	ErrorMsg *string `json:"errorMsg,omitempty"`
	// 전송일시
	SendDt *time.Time `json:"sendDt,omitempty"`
	// 전송 메소드
	SendMethod *string `json:"sendMethod,omitempty"`
	// 전송 결과 - SUCCESS : 전송 성공 - FAIL : 전송을 시도했으나 전송 실패 - NOT SEND : 전송 메소드 미설정으로 전송 안함 - FILTERED : 알림 필터링 설정으로 전송 안함 - NO PERMISSION : 권한이 없어 전송 안함
	SendResult *string `json:"sendResult,omitempty"`
}

NotificationStatus 이벤트 알림 상태 전송 객체

func NewNotificationStatus

func NewNotificationStatus() *NotificationStatus

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

func NewNotificationStatusWithDefaults

func NewNotificationStatusWithDefaults() *NotificationStatus

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

func (*NotificationStatus) GetErrorMsg

func (o *NotificationStatus) GetErrorMsg() string

GetErrorMsg returns the ErrorMsg field value if set, zero value otherwise.

func (*NotificationStatus) GetErrorMsgOk

func (o *NotificationStatus) GetErrorMsgOk() (*string, bool)

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

func (*NotificationStatus) GetSendDt

func (o *NotificationStatus) GetSendDt() time.Time

GetSendDt returns the SendDt field value if set, zero value otherwise.

func (*NotificationStatus) GetSendDtOk

func (o *NotificationStatus) GetSendDtOk() (*time.Time, bool)

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

func (*NotificationStatus) GetSendMethod

func (o *NotificationStatus) GetSendMethod() string

GetSendMethod returns the SendMethod field value if set, zero value otherwise.

func (*NotificationStatus) GetSendMethodOk

func (o *NotificationStatus) GetSendMethodOk() (*string, bool)

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

func (*NotificationStatus) GetSendResult

func (o *NotificationStatus) GetSendResult() string

GetSendResult returns the SendResult field value if set, zero value otherwise.

func (*NotificationStatus) GetSendResultOk

func (o *NotificationStatus) GetSendResultOk() (*string, bool)

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

func (*NotificationStatus) HasErrorMsg

func (o *NotificationStatus) HasErrorMsg() bool

HasErrorMsg returns a boolean if a field has been set.

func (*NotificationStatus) HasSendDt

func (o *NotificationStatus) HasSendDt() bool

HasSendDt returns a boolean if a field has been set.

func (*NotificationStatus) HasSendMethod

func (o *NotificationStatus) HasSendMethod() bool

HasSendMethod returns a boolean if a field has been set.

func (*NotificationStatus) HasSendResult

func (o *NotificationStatus) HasSendResult() bool

HasSendResult returns a boolean if a field has been set.

func (NotificationStatus) MarshalJSON

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

func (*NotificationStatus) SetErrorMsg

func (o *NotificationStatus) SetErrorMsg(v string)

SetErrorMsg gets a reference to the given string and assigns it to the ErrorMsg field.

func (*NotificationStatus) SetSendDt

func (o *NotificationStatus) SetSendDt(v time.Time)

SetSendDt gets a reference to the given time.Time and assigns it to the SendDt field.

func (*NotificationStatus) SetSendMethod

func (o *NotificationStatus) SetSendMethod(v string)

SetSendMethod gets a reference to the given string and assigns it to the SendMethod field.

func (*NotificationStatus) SetSendResult

func (o *NotificationStatus) SetSendResult(v string)

SetSendResult gets a reference to the given string and assigns it to the SendResult field.

func (NotificationStatus) ToMap

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

type NullableAccountProductDto

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

func NewNullableAccountProductDto

func NewNullableAccountProductDto(val *AccountProductDto) *NullableAccountProductDto

func (NullableAccountProductDto) Get

func (NullableAccountProductDto) IsSet

func (v NullableAccountProductDto) IsSet() bool

func (NullableAccountProductDto) MarshalJSON

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

func (*NullableAccountProductDto) Set

func (*NullableAccountProductDto) UnmarshalJSON

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

func (*NullableAccountProductDto) Unset

func (v *NullableAccountProductDto) Unset()

type NullableAddrbookAdditionalInfo

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

func (NullableAddrbookAdditionalInfo) Get

func (NullableAddrbookAdditionalInfo) IsSet

func (NullableAddrbookAdditionalInfo) MarshalJSON

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

func (*NullableAddrbookAdditionalInfo) Set

func (*NullableAddrbookAdditionalInfo) UnmarshalJSON

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

func (*NullableAddrbookAdditionalInfo) Unset

func (v *NullableAddrbookAdditionalInfo) Unset()

type NullableAlarmAddrBookDto

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

func NewNullableAlarmAddrBookDto

func NewNullableAlarmAddrBookDto(val *AlarmAddrBookDto) *NullableAlarmAddrBookDto

func (NullableAlarmAddrBookDto) Get

func (NullableAlarmAddrBookDto) IsSet

func (v NullableAlarmAddrBookDto) IsSet() bool

func (NullableAlarmAddrBookDto) MarshalJSON

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

func (*NullableAlarmAddrBookDto) Set

func (*NullableAlarmAddrBookDto) UnmarshalJSON

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

func (*NullableAlarmAddrBookDto) Unset

func (v *NullableAlarmAddrBookDto) Unset()

type NullableAlarmAddrBookMemberDto

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

func (NullableAlarmAddrBookMemberDto) Get

func (NullableAlarmAddrBookMemberDto) IsSet

func (NullableAlarmAddrBookMemberDto) MarshalJSON

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

func (*NullableAlarmAddrBookMemberDto) Set

func (*NullableAlarmAddrBookMemberDto) UnmarshalJSON

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

func (*NullableAlarmAddrBookMemberDto) Unset

func (v *NullableAlarmAddrBookMemberDto) 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 NullableEventDetailResponse

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

func NewNullableEventDetailResponse

func NewNullableEventDetailResponse(val *EventDetailResponse) *NullableEventDetailResponse

func (NullableEventDetailResponse) Get

func (NullableEventDetailResponse) IsSet

func (NullableEventDetailResponse) MarshalJSON

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

func (*NullableEventDetailResponse) Set

func (*NullableEventDetailResponse) UnmarshalJSON

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

func (*NullableEventDetailResponse) Unset

func (v *NullableEventDetailResponse) Unset()

type NullableEventNotificationResponse

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

func (NullableEventNotificationResponse) Get

func (NullableEventNotificationResponse) IsSet

func (NullableEventNotificationResponse) MarshalJSON

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

func (*NullableEventNotificationResponse) Set

func (*NullableEventNotificationResponse) UnmarshalJSON

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

func (*NullableEventNotificationResponse) Unset

type NullableEventPolicyCreateRequest

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

func (NullableEventPolicyCreateRequest) Get

func (NullableEventPolicyCreateRequest) IsSet

func (NullableEventPolicyCreateRequest) MarshalJSON

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

func (*NullableEventPolicyCreateRequest) Set

func (*NullableEventPolicyCreateRequest) UnmarshalJSON

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

func (*NullableEventPolicyCreateRequest) Unset

type NullableEventPolicyDetailResponse

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

func (NullableEventPolicyDetailResponse) Get

func (NullableEventPolicyDetailResponse) IsSet

func (NullableEventPolicyDetailResponse) MarshalJSON

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

func (*NullableEventPolicyDetailResponse) Set

func (*NullableEventPolicyDetailResponse) UnmarshalJSON

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

func (*NullableEventPolicyDetailResponse) Unset

type NullableEventPolicyHistoryResponse

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

func (NullableEventPolicyHistoryResponse) Get

func (NullableEventPolicyHistoryResponse) IsSet

func (NullableEventPolicyHistoryResponse) MarshalJSON

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

func (*NullableEventPolicyHistoryResponse) Set

func (*NullableEventPolicyHistoryResponse) UnmarshalJSON

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

func (*NullableEventPolicyHistoryResponse) Unset

type NullableEventPolicyInfo

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

func NewNullableEventPolicyInfo

func NewNullableEventPolicyInfo(val *EventPolicyInfo) *NullableEventPolicyInfo

func (NullableEventPolicyInfo) Get

func (NullableEventPolicyInfo) IsSet

func (v NullableEventPolicyInfo) IsSet() bool

func (NullableEventPolicyInfo) MarshalJSON

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

func (*NullableEventPolicyInfo) Set

func (*NullableEventPolicyInfo) UnmarshalJSON

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

func (*NullableEventPolicyInfo) Unset

func (v *NullableEventPolicyInfo) Unset()

type NullableEventPolicyInfoEditable

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

func (NullableEventPolicyInfoEditable) Get

func (NullableEventPolicyInfoEditable) IsSet

func (NullableEventPolicyInfoEditable) MarshalJSON

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

func (*NullableEventPolicyInfoEditable) Set

func (*NullableEventPolicyInfoEditable) UnmarshalJSON

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

func (*NullableEventPolicyInfoEditable) Unset

type NullableEventPolicyResponse

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

func NewNullableEventPolicyResponse

func NewNullableEventPolicyResponse(val *EventPolicyResponse) *NullableEventPolicyResponse

func (NullableEventPolicyResponse) Get

func (NullableEventPolicyResponse) IsSet

func (NullableEventPolicyResponse) MarshalJSON

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

func (*NullableEventPolicyResponse) Set

func (*NullableEventPolicyResponse) UnmarshalJSON

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

func (*NullableEventPolicyResponse) Unset

func (v *NullableEventPolicyResponse) Unset()

type NullableEventPolicyStatistics

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

func (NullableEventPolicyStatistics) Get

func (NullableEventPolicyStatistics) IsSet

func (NullableEventPolicyStatistics) MarshalJSON

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

func (*NullableEventPolicyStatistics) Set

func (*NullableEventPolicyStatistics) UnmarshalJSON

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

func (*NullableEventPolicyStatistics) Unset

func (v *NullableEventPolicyStatistics) Unset()

type NullableEventPolicyUpdateRequest

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

func (NullableEventPolicyUpdateRequest) Get

func (NullableEventPolicyUpdateRequest) IsSet

func (NullableEventPolicyUpdateRequest) MarshalJSON

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

func (*NullableEventPolicyUpdateRequest) Set

func (*NullableEventPolicyUpdateRequest) UnmarshalJSON

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

func (*NullableEventPolicyUpdateRequest) Unset

type NullableEventThreshold

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

func NewNullableEventThreshold

func NewNullableEventThreshold(val *EventThreshold) *NullableEventThreshold

func (NullableEventThreshold) Get

func (NullableEventThreshold) IsSet

func (v NullableEventThreshold) IsSet() bool

func (NullableEventThreshold) MarshalJSON

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

func (*NullableEventThreshold) Set

func (*NullableEventThreshold) UnmarshalJSON

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

func (*NullableEventThreshold) Unset

func (v *NullableEventThreshold) 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 NullableGroupSummary

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

func NewNullableGroupSummary

func NewNullableGroupSummary(val *GroupSummary) *NullableGroupSummary

func (NullableGroupSummary) Get

func (NullableGroupSummary) IsSet

func (v NullableGroupSummary) IsSet() bool

func (NullableGroupSummary) MarshalJSON

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

func (*NullableGroupSummary) Set

func (v *NullableGroupSummary) Set(val *GroupSummary)

func (*NullableGroupSummary) UnmarshalJSON

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

func (*NullableGroupSummary) Unset

func (v *NullableGroupSummary) 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 NullableListResponseMetricStatisticsDataDtoOpenAPIV2

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

func (NullableListResponseMetricStatisticsDataDtoOpenAPIV2) Get

func (NullableListResponseMetricStatisticsDataDtoOpenAPIV2) IsSet

func (NullableListResponseMetricStatisticsDataDtoOpenAPIV2) MarshalJSON

func (*NullableListResponseMetricStatisticsDataDtoOpenAPIV2) Set

func (*NullableListResponseMetricStatisticsDataDtoOpenAPIV2) UnmarshalJSON

func (*NullableListResponseMetricStatisticsDataDtoOpenAPIV2) Unset

type NullableMember

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

func NewNullableMember

func NewNullableMember(val *Member) *NullableMember

func (NullableMember) Get

func (v NullableMember) Get() *Member

func (NullableMember) IsSet

func (v NullableMember) IsSet() bool

func (NullableMember) MarshalJSON

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

func (*NullableMember) Set

func (v *NullableMember) Set(val *Member)

func (*NullableMember) UnmarshalJSON

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

func (*NullableMember) Unset

func (v *NullableMember) Unset()

type NullableMetricDataConditionOpenAPIV2

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

func (NullableMetricDataConditionOpenAPIV2) Get

func (NullableMetricDataConditionOpenAPIV2) IsSet

func (NullableMetricDataConditionOpenAPIV2) MarshalJSON

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

func (*NullableMetricDataConditionOpenAPIV2) Set

func (*NullableMetricDataConditionOpenAPIV2) UnmarshalJSON

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

func (*NullableMetricDataConditionOpenAPIV2) Unset

type NullableMetricDataSearchCriteriaOpenAPIV2

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

func (NullableMetricDataSearchCriteriaOpenAPIV2) Get

func (NullableMetricDataSearchCriteriaOpenAPIV2) IsSet

func (NullableMetricDataSearchCriteriaOpenAPIV2) MarshalJSON

func (*NullableMetricDataSearchCriteriaOpenAPIV2) Set

func (*NullableMetricDataSearchCriteriaOpenAPIV2) UnmarshalJSON

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

func (*NullableMetricDataSearchCriteriaOpenAPIV2) Unset

type NullableMetricInfoDto

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

func NewNullableMetricInfoDto

func NewNullableMetricInfoDto(val *MetricInfoDto) *NullableMetricInfoDto

func (NullableMetricInfoDto) Get

func (NullableMetricInfoDto) IsSet

func (v NullableMetricInfoDto) IsSet() bool

func (NullableMetricInfoDto) MarshalJSON

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

func (*NullableMetricInfoDto) Set

func (v *NullableMetricInfoDto) Set(val *MetricInfoDto)

func (*NullableMetricInfoDto) UnmarshalJSON

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

func (*NullableMetricInfoDto) Unset

func (v *NullableMetricInfoDto) Unset()

type NullableMetricStatisticsDataDtoOpenAPIV2

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

func (NullableMetricStatisticsDataDtoOpenAPIV2) Get

func (NullableMetricStatisticsDataDtoOpenAPIV2) IsSet

func (NullableMetricStatisticsDataDtoOpenAPIV2) MarshalJSON

func (*NullableMetricStatisticsDataDtoOpenAPIV2) Set

func (*NullableMetricStatisticsDataDtoOpenAPIV2) UnmarshalJSON

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

func (*NullableMetricStatisticsDataDtoOpenAPIV2) Unset

type NullableMetricSummary

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

func NewNullableMetricSummary

func NewNullableMetricSummary(val *MetricSummary) *NullableMetricSummary

func (NullableMetricSummary) Get

func (NullableMetricSummary) IsSet

func (v NullableMetricSummary) IsSet() bool

func (NullableMetricSummary) MarshalJSON

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

func (*NullableMetricSummary) Set

func (v *NullableMetricSummary) Set(val *MetricSummary)

func (*NullableMetricSummary) UnmarshalJSON

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

func (*NullableMetricSummary) Unset

func (v *NullableMetricSummary) Unset()

type NullableNotificationMethod

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

func NewNullableNotificationMethod

func NewNullableNotificationMethod(val *NotificationMethod) *NullableNotificationMethod

func (NullableNotificationMethod) Get

func (NullableNotificationMethod) IsSet

func (v NullableNotificationMethod) IsSet() bool

func (NullableNotificationMethod) MarshalJSON

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

func (*NullableNotificationMethod) Set

func (*NullableNotificationMethod) UnmarshalJSON

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

func (*NullableNotificationMethod) Unset

func (v *NullableNotificationMethod) Unset()

type NullableNotificationRecipient

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

func (NullableNotificationRecipient) Get

func (NullableNotificationRecipient) IsSet

func (NullableNotificationRecipient) MarshalJSON

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

func (*NullableNotificationRecipient) Set

func (*NullableNotificationRecipient) UnmarshalJSON

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

func (*NullableNotificationRecipient) Unset

func (v *NullableNotificationRecipient) Unset()

type NullableNotificationRecipientHistory

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

func (NullableNotificationRecipientHistory) Get

func (NullableNotificationRecipientHistory) IsSet

func (NullableNotificationRecipientHistory) MarshalJSON

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

func (*NullableNotificationRecipientHistory) Set

func (*NullableNotificationRecipientHistory) UnmarshalJSON

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

func (*NullableNotificationRecipientHistory) Unset

type NullableNotificationResponse

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

func NewNullableNotificationResponse

func NewNullableNotificationResponse(val *NotificationResponse) *NullableNotificationResponse

func (NullableNotificationResponse) Get

func (NullableNotificationResponse) IsSet

func (NullableNotificationResponse) MarshalJSON

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

func (*NullableNotificationResponse) Set

func (*NullableNotificationResponse) UnmarshalJSON

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

func (*NullableNotificationResponse) Unset

func (v *NullableNotificationResponse) Unset()

type NullableNotificationStatus

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

func NewNullableNotificationStatus

func NewNullableNotificationStatus(val *NotificationStatus) *NullableNotificationStatus

func (NullableNotificationStatus) Get

func (NullableNotificationStatus) IsSet

func (v NullableNotificationStatus) IsSet() bool

func (NullableNotificationStatus) MarshalJSON

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

func (*NullableNotificationStatus) Set

func (*NullableNotificationStatus) UnmarshalJSON

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

func (*NullableNotificationStatus) Unset

func (v *NullableNotificationStatus) Unset()

type NullableOpenApiEventResponse

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

func NewNullableOpenApiEventResponse

func NewNullableOpenApiEventResponse(val *OpenApiEventResponse) *NullableOpenApiEventResponse

func (NullableOpenApiEventResponse) Get

func (NullableOpenApiEventResponse) IsSet

func (NullableOpenApiEventResponse) MarshalJSON

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

func (*NullableOpenApiEventResponse) Set

func (*NullableOpenApiEventResponse) UnmarshalJSON

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

func (*NullableOpenApiEventResponse) Unset

func (v *NullableOpenApiEventResponse) Unset()

type NullablePageResponseAccountProductDto

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

func (NullablePageResponseAccountProductDto) Get

func (NullablePageResponseAccountProductDto) IsSet

func (NullablePageResponseAccountProductDto) MarshalJSON

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

func (*NullablePageResponseAccountProductDto) Set

func (*NullablePageResponseAccountProductDto) UnmarshalJSON

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

func (*NullablePageResponseAccountProductDto) Unset

type NullablePageResponseAlarmAddrBookDto

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

func (NullablePageResponseAlarmAddrBookDto) Get

func (NullablePageResponseAlarmAddrBookDto) IsSet

func (NullablePageResponseAlarmAddrBookDto) MarshalJSON

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

func (*NullablePageResponseAlarmAddrBookDto) Set

func (*NullablePageResponseAlarmAddrBookDto) UnmarshalJSON

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

func (*NullablePageResponseAlarmAddrBookDto) Unset

type NullablePageResponseAlarmAddrBookMemberDto

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

func (NullablePageResponseAlarmAddrBookMemberDto) Get

func (NullablePageResponseAlarmAddrBookMemberDto) IsSet

func (NullablePageResponseAlarmAddrBookMemberDto) MarshalJSON

func (*NullablePageResponseAlarmAddrBookMemberDto) Set

func (*NullablePageResponseAlarmAddrBookMemberDto) UnmarshalJSON

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

func (*NullablePageResponseAlarmAddrBookMemberDto) Unset

type NullablePageResponseEventNotificationResponse

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

func (NullablePageResponseEventNotificationResponse) Get

func (NullablePageResponseEventNotificationResponse) IsSet

func (NullablePageResponseEventNotificationResponse) MarshalJSON

func (*NullablePageResponseEventNotificationResponse) Set

func (*NullablePageResponseEventNotificationResponse) UnmarshalJSON

func (*NullablePageResponseEventNotificationResponse) Unset

type NullablePageResponseEventPolicyHistoryResponse

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

func (NullablePageResponseEventPolicyHistoryResponse) Get

func (NullablePageResponseEventPolicyHistoryResponse) IsSet

func (NullablePageResponseEventPolicyHistoryResponse) MarshalJSON

func (*NullablePageResponseEventPolicyHistoryResponse) Set

func (*NullablePageResponseEventPolicyHistoryResponse) UnmarshalJSON

func (*NullablePageResponseEventPolicyHistoryResponse) Unset

type NullablePageResponseEventPolicyResponse

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

func (NullablePageResponseEventPolicyResponse) Get

func (NullablePageResponseEventPolicyResponse) IsSet

func (NullablePageResponseEventPolicyResponse) MarshalJSON

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

func (*NullablePageResponseEventPolicyResponse) Set

func (*NullablePageResponseEventPolicyResponse) UnmarshalJSON

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

func (*NullablePageResponseEventPolicyResponse) Unset

type NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI

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

func (NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI) Get

func (NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI) IsSet

func (NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI) MarshalJSON

func (*NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI) Set

func (*NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI) UnmarshalJSON

func (*NullablePageResponseJsonArrayProjectMemberResponseForOpenAPI) Unset

type NullablePageResponseMetricInfoDto

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

func (NullablePageResponseMetricInfoDto) Get

func (NullablePageResponseMetricInfoDto) IsSet

func (NullablePageResponseMetricInfoDto) MarshalJSON

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

func (*NullablePageResponseMetricInfoDto) Set

func (*NullablePageResponseMetricInfoDto) UnmarshalJSON

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

func (*NullablePageResponseMetricInfoDto) Unset

type NullablePageResponseNotificationResponse

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

func (NullablePageResponseNotificationResponse) Get

func (NullablePageResponseNotificationResponse) IsSet

func (NullablePageResponseNotificationResponse) MarshalJSON

func (*NullablePageResponseNotificationResponse) Set

func (*NullablePageResponseNotificationResponse) UnmarshalJSON

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

func (*NullablePageResponseNotificationResponse) Unset

type NullablePageResponseOpenApiEventResponse

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

func (NullablePageResponseOpenApiEventResponse) Get

func (NullablePageResponseOpenApiEventResponse) IsSet

func (NullablePageResponseOpenApiEventResponse) MarshalJSON

func (*NullablePageResponseOpenApiEventResponse) Set

func (*NullablePageResponseOpenApiEventResponse) UnmarshalJSON

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

func (*NullablePageResponseOpenApiEventResponse) Unset

type NullablePageResponseProductTypeInfoDto

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

func (NullablePageResponseProductTypeInfoDto) Get

func (NullablePageResponseProductTypeInfoDto) IsSet

func (NullablePageResponseProductTypeInfoDto) MarshalJSON

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

func (*NullablePageResponseProductTypeInfoDto) Set

func (*NullablePageResponseProductTypeInfoDto) UnmarshalJSON

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

func (*NullablePageResponseProductTypeInfoDto) Unset

type NullableProductInfoAttr

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

func NewNullableProductInfoAttr

func NewNullableProductInfoAttr(val *ProductInfoAttr) *NullableProductInfoAttr

func (NullableProductInfoAttr) Get

func (NullableProductInfoAttr) IsSet

func (v NullableProductInfoAttr) IsSet() bool

func (NullableProductInfoAttr) MarshalJSON

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

func (*NullableProductInfoAttr) Set

func (*NullableProductInfoAttr) UnmarshalJSON

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

func (*NullableProductInfoAttr) Unset

func (v *NullableProductInfoAttr) Unset()

type NullableProductList

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

func NewNullableProductList

func NewNullableProductList(val *ProductList) *NullableProductList

func (NullableProductList) Get

func (NullableProductList) IsSet

func (v NullableProductList) IsSet() bool

func (NullableProductList) MarshalJSON

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

func (*NullableProductList) Set

func (v *NullableProductList) Set(val *ProductList)

func (*NullableProductList) UnmarshalJSON

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

func (*NullableProductList) Unset

func (v *NullableProductList) Unset()

type NullableProductResourceInfo

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

func NewNullableProductResourceInfo

func NewNullableProductResourceInfo(val *ProductResourceInfo) *NullableProductResourceInfo

func (NullableProductResourceInfo) Get

func (NullableProductResourceInfo) IsSet

func (NullableProductResourceInfo) MarshalJSON

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

func (*NullableProductResourceInfo) Set

func (*NullableProductResourceInfo) UnmarshalJSON

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

func (*NullableProductResourceInfo) Unset

func (v *NullableProductResourceInfo) Unset()

type NullableProductSummary

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

func NewNullableProductSummary

func NewNullableProductSummary(val *ProductSummary) *NullableProductSummary

func (NullableProductSummary) Get

func (NullableProductSummary) IsSet

func (v NullableProductSummary) IsSet() bool

func (NullableProductSummary) MarshalJSON

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

func (*NullableProductSummary) Set

func (*NullableProductSummary) UnmarshalJSON

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

func (*NullableProductSummary) Unset

func (v *NullableProductSummary) Unset()

type NullableProductTypeInfoDto

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

func NewNullableProductTypeInfoDto

func NewNullableProductTypeInfoDto(val *ProductTypeInfoDto) *NullableProductTypeInfoDto

func (NullableProductTypeInfoDto) Get

func (NullableProductTypeInfoDto) IsSet

func (v NullableProductTypeInfoDto) IsSet() bool

func (NullableProductTypeInfoDto) MarshalJSON

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

func (*NullableProductTypeInfoDto) Set

func (*NullableProductTypeInfoDto) UnmarshalJSON

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

func (*NullableProductTypeInfoDto) Unset

func (v *NullableProductTypeInfoDto) Unset()

type NullableProjectMemberResponseForOpenAPI

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

func (NullableProjectMemberResponseForOpenAPI) Get

func (NullableProjectMemberResponseForOpenAPI) IsSet

func (NullableProjectMemberResponseForOpenAPI) MarshalJSON

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

func (*NullableProjectMemberResponseForOpenAPI) Set

func (*NullableProjectMemberResponseForOpenAPI) UnmarshalJSON

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

func (*NullableProjectMemberResponseForOpenAPI) Unset

type NullableRangeThreshold

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

func NewNullableRangeThreshold

func NewNullableRangeThreshold(val *RangeThreshold) *NullableRangeThreshold

func (NullableRangeThreshold) Get

func (NullableRangeThreshold) IsSet

func (v NullableRangeThreshold) IsSet() bool

func (NullableRangeThreshold) MarshalJSON

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

func (*NullableRangeThreshold) Set

func (*NullableRangeThreshold) UnmarshalJSON

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

func (*NullableRangeThreshold) Unset

func (v *NullableRangeThreshold) Unset()

type NullableSingleThreshold

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

func NewNullableSingleThreshold

func NewNullableSingleThreshold(val *SingleThreshold) *NullableSingleThreshold

func (NullableSingleThreshold) Get

func (NullableSingleThreshold) IsSet

func (v NullableSingleThreshold) IsSet() bool

func (NullableSingleThreshold) MarshalJSON

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

func (*NullableSingleThreshold) Set

func (*NullableSingleThreshold) UnmarshalJSON

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

func (*NullableSingleThreshold) Unset

func (v *NullableSingleThreshold) 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 OpenAPIAccountV1APIGetAccountMembersRequest

type OpenAPIAccountV1APIGetAccountMembersRequest struct {
	ApiService *OpenAPIAccountV1APIService
	// contains filtered or unexported fields
}

func (OpenAPIAccountV1APIGetAccountMembersRequest) Execute

func (OpenAPIAccountV1APIGetAccountMembersRequest) Page

Page Number (default: 0)

func (OpenAPIAccountV1APIGetAccountMembersRequest) Size

Page Contents Size (default: 10)

func (OpenAPIAccountV1APIGetAccountMembersRequest) Sort

Sorting Field List

type OpenAPIAccountV1APIService

type OpenAPIAccountV1APIService service

OpenAPIAccountV1APIService OpenAPIAccountV1API service

func (*OpenAPIAccountV1APIService) GetAccountMembers

GetAccountMembers ListAccountMember

Search members included in an Account.

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

func (*OpenAPIAccountV1APIService) GetAccountMembersExecute

Execute executes the request

@return PageResponseJsonArrayProjectMemberResponseForOpenAPI

type OpenAPIAccountV2APIGetAccountProductListRequest

type OpenAPIAccountV2APIGetAccountProductListRequest struct {
	ApiService *OpenAPIAccountV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIAccountV2APIGetAccountProductListRequest) Execute

func (OpenAPIAccountV2APIGetAccountProductListRequest) Page

Page Number (default: 0)

func (OpenAPIAccountV2APIGetAccountProductListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIAccountV2APIGetAccountProductListRequest) Sort

Sorting Field List

func (OpenAPIAccountV2APIGetAccountProductListRequest) XResourceType

Resource Type

type OpenAPIAccountV2APIService

type OpenAPIAccountV2APIService service

OpenAPIAccountV2APIService OpenAPIAccountV2API service

func (*OpenAPIAccountV2APIService) GetAccountProductList

GetAccountProductList ListAccountResources

Search Resource included in an Account.

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

func (*OpenAPIAccountV2APIService) GetAccountProductListExecute

Execute executes the request

@return PageResponseAccountProductDto

type OpenAPIAddressBookV2APIGetAdressBookMemberListRequest

type OpenAPIAddressBookV2APIGetAdressBookMemberListRequest struct {
	ApiService *OpenAPIAddressBookV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIAddressBookV2APIGetAdressBookMemberListRequest) Execute

func (OpenAPIAddressBookV2APIGetAdressBookMemberListRequest) Page

Page Number (default: 0)

func (OpenAPIAddressBookV2APIGetAdressBookMemberListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIAddressBookV2APIGetAdressBookMemberListRequest) Sort

Sorting Field List

type OpenAPIAddressBookV2APIService

type OpenAPIAddressBookV2APIService service

OpenAPIAddressBookV2APIService OpenAPIAddressBookV2API service

func (*OpenAPIAddressBookV2APIService) GetAdressBookMemberList

GetAdressBookMemberList ListAddressBookMembers

Search address book members

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param addrbookId Address book ID - Address book IDs can be obtained from @[ListAddressBooks].
@return OpenAPIAddressBookV2APIGetAdressBookMemberListRequest

func (*OpenAPIAddressBookV2APIService) GetAdressBookMemberListExecute

Execute executes the request

@return PageResponseAlarmAddrBookMemberDto

type OpenAPIEventPolicyV2APIDeleteEventPolicyRequest

type OpenAPIEventPolicyV2APIDeleteEventPolicyRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIDeleteEventPolicyRequest) Execute

func (OpenAPIEventPolicyV2APIDeleteEventPolicyRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIGetEventPolicyDetailRequest

type OpenAPIEventPolicyV2APIGetEventPolicyDetailRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIGetEventPolicyDetailRequest) Execute

func (OpenAPIEventPolicyV2APIGetEventPolicyDetailRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest

type OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) Execute

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) Page

Page Number (default: 0)

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) QueryEndDt

Query End Date

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) QueryStartDt

Query Start Date

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) Size

Page Contents Size (default: 10)

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) Sort

Sorting Field List

func (OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest

type OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest) Execute

func (OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest) Page

Page Number (default: 0)

func (OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest) Size

Page Contents Size (default: 10)

func (OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest) Sort

Sorting Field List

func (OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest

type OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) Execute

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) MetricKey

Metric Key - Metric Key can be viewed using @[ListMetrics].

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) Page

Page Number (default: 0)

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) ProductResourceId

Product Resource ID - Product Resource ID can be viewed using @[ListAccountResources].

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) Sort

Sorting Field List

func (OpenAPIEventPolicyV2APIGetProductEventPolicyListRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIModifyEventPolicyRequest

type OpenAPIEventPolicyV2APIModifyEventPolicyRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIModifyEventPolicyRequest) EventPolicyUpdateRequest

func (OpenAPIEventPolicyV2APIModifyEventPolicyRequest) Execute

func (OpenAPIEventPolicyV2APIModifyEventPolicyRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIPutEventPolicyRequest

type OpenAPIEventPolicyV2APIPutEventPolicyRequest struct {
	ApiService *OpenAPIEventPolicyV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventPolicyV2APIPutEventPolicyRequest) EventPolicyCreateRequest

func (OpenAPIEventPolicyV2APIPutEventPolicyRequest) Execute

func (OpenAPIEventPolicyV2APIPutEventPolicyRequest) XResourceType

Resource Type

type OpenAPIEventPolicyV2APIService

type OpenAPIEventPolicyV2APIService service

OpenAPIEventPolicyV2APIService OpenAPIEventPolicyV2API service

func (*OpenAPIEventPolicyV2APIService) DeleteEventPolicy

DeleteEventPolicy DeleteEventPolicy

Delete Event policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventPolicyId Event policy ID to delete - Event Policy ID can be viewed using @[ListEventPolicies].
@return OpenAPIEventPolicyV2APIDeleteEventPolicyRequest

func (*OpenAPIEventPolicyV2APIService) DeleteEventPolicyExecute

Execute executes the request

func (*OpenAPIEventPolicyV2APIService) GetEventPolicyDetail

GetEventPolicyDetail ShowEventPolicy

Show Event Policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventPolicyId Event Policy ID to inquire - Event Policy ID can be viewed using @[ListEventPolicies].
@return OpenAPIEventPolicyV2APIGetEventPolicyDetailRequest

func (*OpenAPIEventPolicyV2APIService) GetEventPolicyDetailExecute

Execute executes the request

@return EventPolicyDetailResponse

func (*OpenAPIEventPolicyV2APIService) GetEventPolicyHistories

GetEventPolicyHistories ListEventPolicyHistories

Search event policy histories

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventPolicyId Event Policy ID to inquire - Event Policy ID can be viewed using @[ListEventPolicies].
@return OpenAPIEventPolicyV2APIGetEventPolicyHistoriesRequest

func (*OpenAPIEventPolicyV2APIService) GetEventPolicyHistoriesExecute

Execute executes the request

@return PageResponseEventPolicyHistoryResponse

func (*OpenAPIEventPolicyV2APIService) GetEventPolicyNotification

GetEventPolicyNotification ListEventPolicyNotification

Search Event Policy Notification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventPolicyId Event Policy ID to inquire - Event Policy ID can be viewed using @[ListEventPolicies].
@return OpenAPIEventPolicyV2APIGetEventPolicyNotificationRequest

func (*OpenAPIEventPolicyV2APIService) GetEventPolicyNotificationExecute

Execute executes the request

@return PageResponseNotificationResponse

func (*OpenAPIEventPolicyV2APIService) GetProductEventPolicyList

GetProductEventPolicyList ListEventPolicies

Search Event Policies

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

func (*OpenAPIEventPolicyV2APIService) GetProductEventPolicyListExecute

Execute executes the request

@return PageResponseEventPolicyResponse

func (*OpenAPIEventPolicyV2APIService) ModifyEventPolicy

ModifyEventPolicy SetEventPolicy

Set Event Policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventPolicyId Event policy ID to modify - Event Policy ID can be viewed using @[ListEventPolicies].
@return OpenAPIEventPolicyV2APIModifyEventPolicyRequest

func (*OpenAPIEventPolicyV2APIService) ModifyEventPolicyExecute

Execute executes the request

@return EventPolicyDetailResponse

func (*OpenAPIEventPolicyV2APIService) PutEventPolicy

PutEventPolicy CreateEventPolicy

Create Event Policy

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

func (*OpenAPIEventPolicyV2APIService) PutEventPolicyExecute

Execute executes the request

@return EventPolicyDetailResponse

type OpenAPIEventV2APIGetAccountEventListRequest

type OpenAPIEventV2APIGetAccountEventListRequest struct {
	ApiService *OpenAPIEventV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventV2APIGetAccountEventListRequest) EventState

Event State

func (OpenAPIEventV2APIGetAccountEventListRequest) Execute

func (OpenAPIEventV2APIGetAccountEventListRequest) Page

Page Number (default: 0)

func (OpenAPIEventV2APIGetAccountEventListRequest) QueryEndDt

Query End Date

func (OpenAPIEventV2APIGetAccountEventListRequest) QueryStartDt

Query Start Date

func (OpenAPIEventV2APIGetAccountEventListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIEventV2APIGetAccountEventListRequest) Sort

Sorting Field List

type OpenAPIEventV2APIGetEventDetailRequest

type OpenAPIEventV2APIGetEventDetailRequest struct {
	ApiService *OpenAPIEventV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventV2APIGetEventDetailRequest) Execute

func (OpenAPIEventV2APIGetEventDetailRequest) XResourceType

Resource Type

type OpenAPIEventV2APIGetEventNotificationStatesRequest

type OpenAPIEventV2APIGetEventNotificationStatesRequest struct {
	ApiService *OpenAPIEventV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventV2APIGetEventNotificationStatesRequest) Execute

func (OpenAPIEventV2APIGetEventNotificationStatesRequest) Page

Page Number (default: 0)

func (OpenAPIEventV2APIGetEventNotificationStatesRequest) Size

Page Contents Size (default: 10)

func (OpenAPIEventV2APIGetEventNotificationStatesRequest) Sort

Sorting Field List

func (OpenAPIEventV2APIGetEventNotificationStatesRequest) XResourceType

Resource Type

type OpenAPIEventV2APIGetProductEventListRequest

type OpenAPIEventV2APIGetProductEventListRequest struct {
	ApiService *OpenAPIEventV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIEventV2APIGetProductEventListRequest) EventState

Event State

func (OpenAPIEventV2APIGetProductEventListRequest) Execute

func (OpenAPIEventV2APIGetProductEventListRequest) MetricKey

Metric Key - Metric Key can be viewed using @[ListMetrics].

func (OpenAPIEventV2APIGetProductEventListRequest) Page

Page Number (default: 0)

func (OpenAPIEventV2APIGetProductEventListRequest) ProductResourceId

Product Resource ID - Product Resource ID can be viewed using @[ListAccountResources].

func (OpenAPIEventV2APIGetProductEventListRequest) QueryEndDt

Query End Date

func (OpenAPIEventV2APIGetProductEventListRequest) QueryStartDt

Query Start Date

func (OpenAPIEventV2APIGetProductEventListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIEventV2APIGetProductEventListRequest) Sort

Sorting Field List

func (OpenAPIEventV2APIGetProductEventListRequest) XResourceType

Resource Type

type OpenAPIEventV2APIService

type OpenAPIEventV2APIService service

OpenAPIEventV2APIService OpenAPIEventV2API service

func (*OpenAPIEventV2APIService) GetAccountEventList

GetAccountEventList ListAccountEvents

Search Account Event List

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

func (*OpenAPIEventV2APIService) GetAccountEventListExecute

Execute executes the request

@return PageResponseOpenApiEventResponse

func (*OpenAPIEventV2APIService) GetEventDetail

GetEventDetail ShowResourceEvent

Show Resource Event

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventId Event ID - Event ID can be viewed using @[ListResourceEvents].
@return OpenAPIEventV2APIGetEventDetailRequest

func (*OpenAPIEventV2APIService) GetEventDetailExecute

Execute executes the request

@return EventDetailResponse

func (*OpenAPIEventV2APIService) GetEventNotificationStates

GetEventNotificationStates ShowEventNotificationStates

Search Event Notification States

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventId Event ID - Event ID can be viewed using @[ListResourceEvents].
@return OpenAPIEventV2APIGetEventNotificationStatesRequest

func (*OpenAPIEventV2APIService) GetEventNotificationStatesExecute

Execute executes the request

@return PageResponseEventNotificationResponse

func (*OpenAPIEventV2APIService) GetProductEventList

GetProductEventList ListResourceEvents

Search a list of events that occurred on a product resource.

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

func (*OpenAPIEventV2APIService) GetProductEventListExecute

Execute executes the request

@return PageResponseOpenApiEventResponse

type OpenAPIMetricDataV2APIGetMetricPerfDataListRequest

type OpenAPIMetricDataV2APIGetMetricPerfDataListRequest struct {
	ApiService *OpenAPIMetricDataV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIMetricDataV2APIGetMetricPerfDataListRequest) Execute

func (OpenAPIMetricDataV2APIGetMetricPerfDataListRequest) MetricDataSearchCriteriaOpenAPIV2

func (OpenAPIMetricDataV2APIGetMetricPerfDataListRequest) XResourceType

Resource Type

type OpenAPIMetricDataV2APIService

type OpenAPIMetricDataV2APIService service

OpenAPIMetricDataV2APIService OpenAPIMetricDataV2API service

func (*OpenAPIMetricDataV2APIService) GetMetricPerfDataList

GetMetricPerfDataList ListMetricPefData

Search the performance values of the collected metrics. Up to 10 query conditions can be specified, and the maximum query period is 24 hours.

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

func (*OpenAPIMetricDataV2APIService) GetMetricPerfDataListExecute

Execute executes the request

@return ListResponseMetricStatisticsDataDtoOpenAPIV2

type OpenAPIMetricV2APIGetMetricListRequest

type OpenAPIMetricV2APIGetMetricListRequest struct {
	ApiService *OpenAPIMetricV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIMetricV2APIGetMetricListRequest) Execute

func (OpenAPIMetricV2APIGetMetricListRequest) ObjectType

Object Type - Only available for services that have subtypes, such as when the 'productTypeCode' is 'Kubernetes' or 'Load Balancer'.

func (OpenAPIMetricV2APIGetMetricListRequest) Page

Page Number (default: 0)

func (OpenAPIMetricV2APIGetMetricListRequest) ProductTypeCode

Product type code - Product type codes can be obtained using @[ListServiceMonitoring]. If not specified, the entire metric list will be retrieved.

func (OpenAPIMetricV2APIGetMetricListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIMetricV2APIGetMetricListRequest) Sort

Sorting Field List

type OpenAPIMetricV2APIService

type OpenAPIMetricV2APIService service

OpenAPIMetricV2APIService OpenAPIMetricV2API service

func (*OpenAPIMetricV2APIService) GetMetricList

GetMetricList ListMetrics

View the list of metrics provided by Monitoring. You can view the full list of metrics or the list of metrics for each service type.

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

func (*OpenAPIMetricV2APIService) GetMetricListExecute

Execute executes the request

@return PageResponseMetricInfoDto

type OpenAPIProductTypeV1APIGetProductTypeListRequest

type OpenAPIProductTypeV1APIGetProductTypeListRequest struct {
	ApiService *OpenAPIProductTypeV1APIService
	// contains filtered or unexported fields
}

func (OpenAPIProductTypeV1APIGetProductTypeListRequest) Execute

func (OpenAPIProductTypeV1APIGetProductTypeListRequest) Page

Page Number (default: 0)

func (OpenAPIProductTypeV1APIGetProductTypeListRequest) ProductCategoryCode

Product type category - If not specified, the entire product type code will be retrieved.

func (OpenAPIProductTypeV1APIGetProductTypeListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIProductTypeV1APIGetProductTypeListRequest) Sort

Sorting Field List

type OpenAPIProductTypeV1APIService

type OpenAPIProductTypeV1APIService service

OpenAPIProductTypeV1APIService OpenAPIProductTypeV1API service

func (*OpenAPIProductTypeV1APIService) GetProductTypeList

GetProductTypeList ListService

Search a list of product types supported by monitoring.

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

func (*OpenAPIProductTypeV1APIService) GetProductTypeListExecute

Execute executes the request

@return PageResponseProductTypeInfoDto

type OpenAPIUserV2APIGetAdressBookListRequest

type OpenAPIUserV2APIGetAdressBookListRequest struct {
	ApiService *OpenAPIUserV2APIService
	// contains filtered or unexported fields
}

func (OpenAPIUserV2APIGetAdressBookListRequest) Execute

func (OpenAPIUserV2APIGetAdressBookListRequest) Page

Page Number (default: 0)

func (OpenAPIUserV2APIGetAdressBookListRequest) Size

Page Contents Size (default: 10)

func (OpenAPIUserV2APIGetAdressBookListRequest) Sort

Sorting Field List

type OpenAPIUserV2APIService

type OpenAPIUserV2APIService service

OpenAPIUserV2APIService OpenAPIUserV2API service

func (*OpenAPIUserV2APIService) GetAdressBookList

GetAdressBookList ListAddressBooks

Search a list of address books created by user.

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

func (*OpenAPIUserV2APIService) GetAdressBookListExecute

Execute executes the request

@return PageResponseAlarmAddrBookDto

type OpenApiEventResponse

type OpenApiEventResponse struct {
	// 이벤트 지속 시간 - 단위: 초
	DurationSecond int64 `json:"durationSecond"`
	// 종료일시
	EndDt *time.Time `json:"endDt,omitempty"`
	// 이벤트 아이디
	EventId string `json:"eventId"`
	// 이벤트 레벨
	EventLevel string `json:"eventLevel"`
	// 이벤트 메시지
	EventMessage string `json:"eventMessage"`
	// 이벤트 정책 아이디
	EventPolicyId int64 `json:"eventPolicyId"`
	// Event State
	EventState string `json:"eventState"`
	// 메트릭 키
	MetricKey string `json:"metricKey"`
	// 메트릭 이름
	MetricName string `json:"metricName"`
	// 오브젝트 이름
	ObjectDisplayName *string `json:"objectDisplayName,omitempty"`
	// 오브젝트 이름
	ObjectName *string `json:"objectName,omitempty"`
	// 개별항목 유형
	ObjectType *string `json:"objectType,omitempty"`
	// 개별항목 유형 이름
	ObjectTypeName *string `json:"objectTypeName,omitempty"`
	// 상품 리소스 아이디
	ProductResourceId string `json:"productResourceId"`
	// 메트릭 대상 유형
	ProductTargetType *string `json:"productTargetType,omitempty"`
	// 메트릭 대상 유형
	ProductTargetTypeEn *string `json:"productTargetTypeEn,omitempty"`
	// 상품 유형 이름
	ProductTypeName string `json:"productTypeName"`
	// 시작일시
	StartDt time.Time `json:"startDt"`
}

OpenApiEventResponse 이벤트 응답 전송 객체

func NewOpenApiEventResponse

func NewOpenApiEventResponse(durationSecond int64, eventId string, eventLevel string, eventMessage string, eventPolicyId int64, eventState string, metricKey string, metricName string, productResourceId string, productTypeName string, startDt time.Time) *OpenApiEventResponse

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

func NewOpenApiEventResponseWithDefaults

func NewOpenApiEventResponseWithDefaults() *OpenApiEventResponse

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

func (*OpenApiEventResponse) GetDurationSecond

func (o *OpenApiEventResponse) GetDurationSecond() int64

GetDurationSecond returns the DurationSecond field value

func (*OpenApiEventResponse) GetDurationSecondOk

func (o *OpenApiEventResponse) GetDurationSecondOk() (*int64, bool)

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

func (*OpenApiEventResponse) GetEndDt

func (o *OpenApiEventResponse) GetEndDt() time.Time

GetEndDt returns the EndDt field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetEndDtOk

func (o *OpenApiEventResponse) GetEndDtOk() (*time.Time, bool)

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

func (*OpenApiEventResponse) GetEventId

func (o *OpenApiEventResponse) GetEventId() string

GetEventId returns the EventId field value

func (*OpenApiEventResponse) GetEventIdOk

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

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

func (*OpenApiEventResponse) GetEventLevel

func (o *OpenApiEventResponse) GetEventLevel() string

GetEventLevel returns the EventLevel field value

func (*OpenApiEventResponse) GetEventLevelOk

func (o *OpenApiEventResponse) GetEventLevelOk() (*string, bool)

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

func (*OpenApiEventResponse) GetEventMessage

func (o *OpenApiEventResponse) GetEventMessage() string

GetEventMessage returns the EventMessage field value

func (*OpenApiEventResponse) GetEventMessageOk

func (o *OpenApiEventResponse) GetEventMessageOk() (*string, bool)

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

func (*OpenApiEventResponse) GetEventPolicyId

func (o *OpenApiEventResponse) GetEventPolicyId() int64

GetEventPolicyId returns the EventPolicyId field value

func (*OpenApiEventResponse) GetEventPolicyIdOk

func (o *OpenApiEventResponse) GetEventPolicyIdOk() (*int64, bool)

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

func (*OpenApiEventResponse) GetEventState

func (o *OpenApiEventResponse) GetEventState() string

GetEventState returns the EventState field value

func (*OpenApiEventResponse) GetEventStateOk

func (o *OpenApiEventResponse) GetEventStateOk() (*string, bool)

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

func (*OpenApiEventResponse) GetMetricKey

func (o *OpenApiEventResponse) GetMetricKey() string

GetMetricKey returns the MetricKey field value

func (*OpenApiEventResponse) GetMetricKeyOk

func (o *OpenApiEventResponse) GetMetricKeyOk() (*string, bool)

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

func (*OpenApiEventResponse) GetMetricName

func (o *OpenApiEventResponse) GetMetricName() string

GetMetricName returns the MetricName field value

func (*OpenApiEventResponse) GetMetricNameOk

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

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

func (*OpenApiEventResponse) GetObjectDisplayName

func (o *OpenApiEventResponse) GetObjectDisplayName() string

GetObjectDisplayName returns the ObjectDisplayName field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetObjectDisplayNameOk

func (o *OpenApiEventResponse) GetObjectDisplayNameOk() (*string, bool)

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

func (*OpenApiEventResponse) GetObjectName

func (o *OpenApiEventResponse) GetObjectName() string

GetObjectName returns the ObjectName field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetObjectNameOk

func (o *OpenApiEventResponse) GetObjectNameOk() (*string, bool)

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

func (*OpenApiEventResponse) GetObjectType

func (o *OpenApiEventResponse) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetObjectTypeName

func (o *OpenApiEventResponse) GetObjectTypeName() string

GetObjectTypeName returns the ObjectTypeName field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetObjectTypeNameOk

func (o *OpenApiEventResponse) GetObjectTypeNameOk() (*string, bool)

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

func (*OpenApiEventResponse) GetObjectTypeOk

func (o *OpenApiEventResponse) GetObjectTypeOk() (*string, bool)

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

func (*OpenApiEventResponse) GetProductResourceId

func (o *OpenApiEventResponse) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*OpenApiEventResponse) GetProductResourceIdOk

func (o *OpenApiEventResponse) GetProductResourceIdOk() (*string, bool)

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

func (*OpenApiEventResponse) GetProductTargetType

func (o *OpenApiEventResponse) GetProductTargetType() string

GetProductTargetType returns the ProductTargetType field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetProductTargetTypeEn

func (o *OpenApiEventResponse) GetProductTargetTypeEn() string

GetProductTargetTypeEn returns the ProductTargetTypeEn field value if set, zero value otherwise.

func (*OpenApiEventResponse) GetProductTargetTypeEnOk

func (o *OpenApiEventResponse) GetProductTargetTypeEnOk() (*string, bool)

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

func (*OpenApiEventResponse) GetProductTargetTypeOk

func (o *OpenApiEventResponse) GetProductTargetTypeOk() (*string, bool)

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

func (*OpenApiEventResponse) GetProductTypeName

func (o *OpenApiEventResponse) GetProductTypeName() string

GetProductTypeName returns the ProductTypeName field value

func (*OpenApiEventResponse) GetProductTypeNameOk

func (o *OpenApiEventResponse) GetProductTypeNameOk() (*string, bool)

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

func (*OpenApiEventResponse) GetStartDt

func (o *OpenApiEventResponse) GetStartDt() time.Time

GetStartDt returns the StartDt field value

func (*OpenApiEventResponse) GetStartDtOk

func (o *OpenApiEventResponse) GetStartDtOk() (*time.Time, bool)

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

func (*OpenApiEventResponse) HasEndDt

func (o *OpenApiEventResponse) HasEndDt() bool

HasEndDt returns a boolean if a field has been set.

func (*OpenApiEventResponse) HasObjectDisplayName

func (o *OpenApiEventResponse) HasObjectDisplayName() bool

HasObjectDisplayName returns a boolean if a field has been set.

func (*OpenApiEventResponse) HasObjectName

func (o *OpenApiEventResponse) HasObjectName() bool

HasObjectName returns a boolean if a field has been set.

func (*OpenApiEventResponse) HasObjectType

func (o *OpenApiEventResponse) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*OpenApiEventResponse) HasObjectTypeName

func (o *OpenApiEventResponse) HasObjectTypeName() bool

HasObjectTypeName returns a boolean if a field has been set.

func (*OpenApiEventResponse) HasProductTargetType

func (o *OpenApiEventResponse) HasProductTargetType() bool

HasProductTargetType returns a boolean if a field has been set.

func (*OpenApiEventResponse) HasProductTargetTypeEn

func (o *OpenApiEventResponse) HasProductTargetTypeEn() bool

HasProductTargetTypeEn returns a boolean if a field has been set.

func (OpenApiEventResponse) MarshalJSON

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

func (*OpenApiEventResponse) SetDurationSecond

func (o *OpenApiEventResponse) SetDurationSecond(v int64)

SetDurationSecond sets field value

func (*OpenApiEventResponse) SetEndDt

func (o *OpenApiEventResponse) SetEndDt(v time.Time)

SetEndDt gets a reference to the given time.Time and assigns it to the EndDt field.

func (*OpenApiEventResponse) SetEventId

func (o *OpenApiEventResponse) SetEventId(v string)

SetEventId sets field value

func (*OpenApiEventResponse) SetEventLevel

func (o *OpenApiEventResponse) SetEventLevel(v string)

SetEventLevel sets field value

func (*OpenApiEventResponse) SetEventMessage

func (o *OpenApiEventResponse) SetEventMessage(v string)

SetEventMessage sets field value

func (*OpenApiEventResponse) SetEventPolicyId

func (o *OpenApiEventResponse) SetEventPolicyId(v int64)

SetEventPolicyId sets field value

func (*OpenApiEventResponse) SetEventState

func (o *OpenApiEventResponse) SetEventState(v string)

SetEventState sets field value

func (*OpenApiEventResponse) SetMetricKey

func (o *OpenApiEventResponse) SetMetricKey(v string)

SetMetricKey sets field value

func (*OpenApiEventResponse) SetMetricName

func (o *OpenApiEventResponse) SetMetricName(v string)

SetMetricName sets field value

func (*OpenApiEventResponse) SetObjectDisplayName

func (o *OpenApiEventResponse) SetObjectDisplayName(v string)

SetObjectDisplayName gets a reference to the given string and assigns it to the ObjectDisplayName field.

func (*OpenApiEventResponse) SetObjectName

func (o *OpenApiEventResponse) SetObjectName(v string)

SetObjectName gets a reference to the given string and assigns it to the ObjectName field.

func (*OpenApiEventResponse) SetObjectType

func (o *OpenApiEventResponse) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*OpenApiEventResponse) SetObjectTypeName

func (o *OpenApiEventResponse) SetObjectTypeName(v string)

SetObjectTypeName gets a reference to the given string and assigns it to the ObjectTypeName field.

func (*OpenApiEventResponse) SetProductResourceId

func (o *OpenApiEventResponse) SetProductResourceId(v string)

SetProductResourceId sets field value

func (*OpenApiEventResponse) SetProductTargetType

func (o *OpenApiEventResponse) SetProductTargetType(v string)

SetProductTargetType gets a reference to the given string and assigns it to the ProductTargetType field.

func (*OpenApiEventResponse) SetProductTargetTypeEn

func (o *OpenApiEventResponse) SetProductTargetTypeEn(v string)

SetProductTargetTypeEn gets a reference to the given string and assigns it to the ProductTargetTypeEn field.

func (*OpenApiEventResponse) SetProductTypeName

func (o *OpenApiEventResponse) SetProductTypeName(v string)

SetProductTypeName sets field value

func (*OpenApiEventResponse) SetStartDt

func (o *OpenApiEventResponse) SetStartDt(v time.Time)

SetStartDt sets field value

func (OpenApiEventResponse) ToMap

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

func (*OpenApiEventResponse) UnmarshalJSON

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

type PageResponseAccountProductDto

type PageResponseAccountProductDto struct {
	Contents       []AccountProductDto `json:"contents,omitempty"`
	IsChanged      *bool               `json:"isChanged,omitempty"`
	ReturnCount    *int64              `json:"returnCount,omitempty"`
	ReturnPage     *int64              `json:"returnPage,omitempty"`
	Sort           []string            `json:"sort,omitempty"`
	SortableFields []string            `json:"sortableFields,omitempty"`
	TotalCount     *int64              `json:"totalCount,omitempty"`
}

PageResponseAccountProductDto struct for PageResponseAccountProductDto

func NewPageResponseAccountProductDto

func NewPageResponseAccountProductDto() *PageResponseAccountProductDto

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

func NewPageResponseAccountProductDtoWithDefaults

func NewPageResponseAccountProductDtoWithDefaults() *PageResponseAccountProductDto

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

func (*PageResponseAccountProductDto) GetContents

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

func (*PageResponseAccountProductDto) GetContentsOk

func (o *PageResponseAccountProductDto) GetContentsOk() ([]AccountProductDto, bool)

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

func (*PageResponseAccountProductDto) GetIsChanged

func (o *PageResponseAccountProductDto) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseAccountProductDto) GetIsChangedOk

func (o *PageResponseAccountProductDto) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseAccountProductDto) GetReturnCount

func (o *PageResponseAccountProductDto) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseAccountProductDto) GetReturnCountOk

func (o *PageResponseAccountProductDto) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseAccountProductDto) GetReturnPage

func (o *PageResponseAccountProductDto) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseAccountProductDto) GetReturnPageOk

func (o *PageResponseAccountProductDto) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseAccountProductDto) GetSort

func (o *PageResponseAccountProductDto) GetSort() []string

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseAccountProductDto) GetSortOk

func (o *PageResponseAccountProductDto) GetSortOk() ([]string, bool)

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

func (*PageResponseAccountProductDto) GetSortableFields

func (o *PageResponseAccountProductDto) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseAccountProductDto) GetSortableFieldsOk

func (o *PageResponseAccountProductDto) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseAccountProductDto) GetTotalCount

func (o *PageResponseAccountProductDto) GetTotalCount() int64

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

func (*PageResponseAccountProductDto) GetTotalCountOk

func (o *PageResponseAccountProductDto) GetTotalCountOk() (*int64, 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 (*PageResponseAccountProductDto) HasContents

func (o *PageResponseAccountProductDto) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseAccountProductDto) HasIsChanged

func (o *PageResponseAccountProductDto) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseAccountProductDto) HasReturnCount

func (o *PageResponseAccountProductDto) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseAccountProductDto) HasReturnPage

func (o *PageResponseAccountProductDto) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseAccountProductDto) HasSort

func (o *PageResponseAccountProductDto) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*PageResponseAccountProductDto) HasSortableFields

func (o *PageResponseAccountProductDto) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseAccountProductDto) HasTotalCount

func (o *PageResponseAccountProductDto) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseAccountProductDto) MarshalJSON

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

func (*PageResponseAccountProductDto) SetContents

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

func (*PageResponseAccountProductDto) SetIsChanged

func (o *PageResponseAccountProductDto) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseAccountProductDto) SetReturnCount

func (o *PageResponseAccountProductDto) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseAccountProductDto) SetReturnPage

func (o *PageResponseAccountProductDto) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseAccountProductDto) SetSort

func (o *PageResponseAccountProductDto) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseAccountProductDto) SetSortableFields

func (o *PageResponseAccountProductDto) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseAccountProductDto) SetTotalCount

func (o *PageResponseAccountProductDto) SetTotalCount(v int64)

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

func (PageResponseAccountProductDto) ToMap

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

type PageResponseAlarmAddrBookDto

type PageResponseAlarmAddrBookDto struct {
	Contents       []AlarmAddrBookDto `json:"contents,omitempty"`
	IsChanged      *bool              `json:"isChanged,omitempty"`
	ReturnCount    *int64             `json:"returnCount,omitempty"`
	ReturnPage     *int64             `json:"returnPage,omitempty"`
	Sort           []string           `json:"sort,omitempty"`
	SortableFields []string           `json:"sortableFields,omitempty"`
	TotalCount     *int64             `json:"totalCount,omitempty"`
}

PageResponseAlarmAddrBookDto struct for PageResponseAlarmAddrBookDto

func NewPageResponseAlarmAddrBookDto

func NewPageResponseAlarmAddrBookDto() *PageResponseAlarmAddrBookDto

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

func NewPageResponseAlarmAddrBookDtoWithDefaults

func NewPageResponseAlarmAddrBookDtoWithDefaults() *PageResponseAlarmAddrBookDto

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

func (*PageResponseAlarmAddrBookDto) GetContents

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

func (*PageResponseAlarmAddrBookDto) GetContentsOk

func (o *PageResponseAlarmAddrBookDto) GetContentsOk() ([]AlarmAddrBookDto, bool)

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

func (*PageResponseAlarmAddrBookDto) GetIsChanged

func (o *PageResponseAlarmAddrBookDto) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookDto) GetIsChangedOk

func (o *PageResponseAlarmAddrBookDto) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseAlarmAddrBookDto) GetReturnCount

func (o *PageResponseAlarmAddrBookDto) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookDto) GetReturnCountOk

func (o *PageResponseAlarmAddrBookDto) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseAlarmAddrBookDto) GetReturnPage

func (o *PageResponseAlarmAddrBookDto) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookDto) GetReturnPageOk

func (o *PageResponseAlarmAddrBookDto) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseAlarmAddrBookDto) GetSort

func (o *PageResponseAlarmAddrBookDto) GetSort() []string

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookDto) GetSortOk

func (o *PageResponseAlarmAddrBookDto) GetSortOk() ([]string, bool)

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

func (*PageResponseAlarmAddrBookDto) GetSortableFields

func (o *PageResponseAlarmAddrBookDto) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookDto) GetSortableFieldsOk

func (o *PageResponseAlarmAddrBookDto) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseAlarmAddrBookDto) GetTotalCount

func (o *PageResponseAlarmAddrBookDto) GetTotalCount() int64

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

func (*PageResponseAlarmAddrBookDto) GetTotalCountOk

func (o *PageResponseAlarmAddrBookDto) GetTotalCountOk() (*int64, 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 (*PageResponseAlarmAddrBookDto) HasContents

func (o *PageResponseAlarmAddrBookDto) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookDto) HasIsChanged

func (o *PageResponseAlarmAddrBookDto) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookDto) HasReturnCount

func (o *PageResponseAlarmAddrBookDto) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookDto) HasReturnPage

func (o *PageResponseAlarmAddrBookDto) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookDto) HasSort

func (o *PageResponseAlarmAddrBookDto) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookDto) HasSortableFields

func (o *PageResponseAlarmAddrBookDto) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookDto) HasTotalCount

func (o *PageResponseAlarmAddrBookDto) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseAlarmAddrBookDto) MarshalJSON

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

func (*PageResponseAlarmAddrBookDto) SetContents

func (o *PageResponseAlarmAddrBookDto) SetContents(v []AlarmAddrBookDto)

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

func (*PageResponseAlarmAddrBookDto) SetIsChanged

func (o *PageResponseAlarmAddrBookDto) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseAlarmAddrBookDto) SetReturnCount

func (o *PageResponseAlarmAddrBookDto) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseAlarmAddrBookDto) SetReturnPage

func (o *PageResponseAlarmAddrBookDto) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseAlarmAddrBookDto) SetSort

func (o *PageResponseAlarmAddrBookDto) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseAlarmAddrBookDto) SetSortableFields

func (o *PageResponseAlarmAddrBookDto) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseAlarmAddrBookDto) SetTotalCount

func (o *PageResponseAlarmAddrBookDto) SetTotalCount(v int64)

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

func (PageResponseAlarmAddrBookDto) ToMap

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

type PageResponseAlarmAddrBookMemberDto

type PageResponseAlarmAddrBookMemberDto struct {
	Contents       []AlarmAddrBookMemberDto `json:"contents,omitempty"`
	IsChanged      *bool                    `json:"isChanged,omitempty"`
	ReturnCount    *int64                   `json:"returnCount,omitempty"`
	ReturnPage     *int64                   `json:"returnPage,omitempty"`
	Sort           []string                 `json:"sort,omitempty"`
	SortableFields []string                 `json:"sortableFields,omitempty"`
	TotalCount     *int64                   `json:"totalCount,omitempty"`
}

PageResponseAlarmAddrBookMemberDto struct for PageResponseAlarmAddrBookMemberDto

func NewPageResponseAlarmAddrBookMemberDto

func NewPageResponseAlarmAddrBookMemberDto() *PageResponseAlarmAddrBookMemberDto

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

func NewPageResponseAlarmAddrBookMemberDtoWithDefaults

func NewPageResponseAlarmAddrBookMemberDtoWithDefaults() *PageResponseAlarmAddrBookMemberDto

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

func (*PageResponseAlarmAddrBookMemberDto) GetContents

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

func (*PageResponseAlarmAddrBookMemberDto) GetContentsOk

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

func (*PageResponseAlarmAddrBookMemberDto) GetIsChanged

func (o *PageResponseAlarmAddrBookMemberDto) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookMemberDto) GetIsChangedOk

func (o *PageResponseAlarmAddrBookMemberDto) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseAlarmAddrBookMemberDto) GetReturnCount

func (o *PageResponseAlarmAddrBookMemberDto) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookMemberDto) GetReturnCountOk

func (o *PageResponseAlarmAddrBookMemberDto) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseAlarmAddrBookMemberDto) GetReturnPage

func (o *PageResponseAlarmAddrBookMemberDto) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookMemberDto) GetReturnPageOk

func (o *PageResponseAlarmAddrBookMemberDto) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseAlarmAddrBookMemberDto) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookMemberDto) GetSortOk

func (o *PageResponseAlarmAddrBookMemberDto) GetSortOk() ([]string, bool)

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

func (*PageResponseAlarmAddrBookMemberDto) GetSortableFields

func (o *PageResponseAlarmAddrBookMemberDto) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseAlarmAddrBookMemberDto) GetSortableFieldsOk

func (o *PageResponseAlarmAddrBookMemberDto) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseAlarmAddrBookMemberDto) GetTotalCount

func (o *PageResponseAlarmAddrBookMemberDto) GetTotalCount() int64

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

func (*PageResponseAlarmAddrBookMemberDto) GetTotalCountOk

func (o *PageResponseAlarmAddrBookMemberDto) GetTotalCountOk() (*int64, 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 (*PageResponseAlarmAddrBookMemberDto) HasContents

func (o *PageResponseAlarmAddrBookMemberDto) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookMemberDto) HasIsChanged

func (o *PageResponseAlarmAddrBookMemberDto) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookMemberDto) HasReturnCount

func (o *PageResponseAlarmAddrBookMemberDto) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookMemberDto) HasReturnPage

func (o *PageResponseAlarmAddrBookMemberDto) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookMemberDto) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookMemberDto) HasSortableFields

func (o *PageResponseAlarmAddrBookMemberDto) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseAlarmAddrBookMemberDto) HasTotalCount

func (o *PageResponseAlarmAddrBookMemberDto) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseAlarmAddrBookMemberDto) MarshalJSON

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

func (*PageResponseAlarmAddrBookMemberDto) SetContents

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

func (*PageResponseAlarmAddrBookMemberDto) SetIsChanged

func (o *PageResponseAlarmAddrBookMemberDto) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseAlarmAddrBookMemberDto) SetReturnCount

func (o *PageResponseAlarmAddrBookMemberDto) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseAlarmAddrBookMemberDto) SetReturnPage

func (o *PageResponseAlarmAddrBookMemberDto) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseAlarmAddrBookMemberDto) SetSort

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseAlarmAddrBookMemberDto) SetSortableFields

func (o *PageResponseAlarmAddrBookMemberDto) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseAlarmAddrBookMemberDto) SetTotalCount

func (o *PageResponseAlarmAddrBookMemberDto) SetTotalCount(v int64)

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

func (PageResponseAlarmAddrBookMemberDto) ToMap

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

type PageResponseEventNotificationResponse

type PageResponseEventNotificationResponse struct {
	Contents       []EventNotificationResponse `json:"contents,omitempty"`
	IsChanged      *bool                       `json:"isChanged,omitempty"`
	ReturnCount    *int64                      `json:"returnCount,omitempty"`
	ReturnPage     *int64                      `json:"returnPage,omitempty"`
	Sort           []string                    `json:"sort,omitempty"`
	SortableFields []string                    `json:"sortableFields,omitempty"`
	TotalCount     *int64                      `json:"totalCount,omitempty"`
}

PageResponseEventNotificationResponse struct for PageResponseEventNotificationResponse

func NewPageResponseEventNotificationResponse

func NewPageResponseEventNotificationResponse() *PageResponseEventNotificationResponse

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

func NewPageResponseEventNotificationResponseWithDefaults

func NewPageResponseEventNotificationResponseWithDefaults() *PageResponseEventNotificationResponse

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

func (*PageResponseEventNotificationResponse) GetContents

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

func (*PageResponseEventNotificationResponse) GetContentsOk

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

func (*PageResponseEventNotificationResponse) GetIsChanged

func (o *PageResponseEventNotificationResponse) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseEventNotificationResponse) GetIsChangedOk

func (o *PageResponseEventNotificationResponse) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseEventNotificationResponse) GetReturnCount

func (o *PageResponseEventNotificationResponse) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseEventNotificationResponse) GetReturnCountOk

func (o *PageResponseEventNotificationResponse) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseEventNotificationResponse) GetReturnPage

func (o *PageResponseEventNotificationResponse) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseEventNotificationResponse) GetReturnPageOk

func (o *PageResponseEventNotificationResponse) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseEventNotificationResponse) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseEventNotificationResponse) GetSortOk

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

func (*PageResponseEventNotificationResponse) GetSortableFields

func (o *PageResponseEventNotificationResponse) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseEventNotificationResponse) GetSortableFieldsOk

func (o *PageResponseEventNotificationResponse) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseEventNotificationResponse) GetTotalCount

func (o *PageResponseEventNotificationResponse) GetTotalCount() int64

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

func (*PageResponseEventNotificationResponse) GetTotalCountOk

func (o *PageResponseEventNotificationResponse) GetTotalCountOk() (*int64, 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 (*PageResponseEventNotificationResponse) HasContents

HasContents returns a boolean if a field has been set.

func (*PageResponseEventNotificationResponse) HasIsChanged

func (o *PageResponseEventNotificationResponse) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseEventNotificationResponse) HasReturnCount

func (o *PageResponseEventNotificationResponse) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseEventNotificationResponse) HasReturnPage

func (o *PageResponseEventNotificationResponse) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseEventNotificationResponse) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseEventNotificationResponse) HasSortableFields

func (o *PageResponseEventNotificationResponse) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseEventNotificationResponse) HasTotalCount

func (o *PageResponseEventNotificationResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseEventNotificationResponse) MarshalJSON

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

func (*PageResponseEventNotificationResponse) SetContents

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

func (*PageResponseEventNotificationResponse) SetIsChanged

func (o *PageResponseEventNotificationResponse) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseEventNotificationResponse) SetReturnCount

func (o *PageResponseEventNotificationResponse) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseEventNotificationResponse) SetReturnPage

func (o *PageResponseEventNotificationResponse) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseEventNotificationResponse) SetSort

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseEventNotificationResponse) SetSortableFields

func (o *PageResponseEventNotificationResponse) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseEventNotificationResponse) SetTotalCount

func (o *PageResponseEventNotificationResponse) SetTotalCount(v int64)

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

func (PageResponseEventNotificationResponse) ToMap

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

type PageResponseEventPolicyHistoryResponse

type PageResponseEventPolicyHistoryResponse struct {
	Contents       []EventPolicyHistoryResponse `json:"contents,omitempty"`
	IsChanged      *bool                        `json:"isChanged,omitempty"`
	ReturnCount    *int64                       `json:"returnCount,omitempty"`
	ReturnPage     *int64                       `json:"returnPage,omitempty"`
	Sort           []string                     `json:"sort,omitempty"`
	SortableFields []string                     `json:"sortableFields,omitempty"`
	TotalCount     *int64                       `json:"totalCount,omitempty"`
}

PageResponseEventPolicyHistoryResponse struct for PageResponseEventPolicyHistoryResponse

func NewPageResponseEventPolicyHistoryResponse

func NewPageResponseEventPolicyHistoryResponse() *PageResponseEventPolicyHistoryResponse

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

func NewPageResponseEventPolicyHistoryResponseWithDefaults

func NewPageResponseEventPolicyHistoryResponseWithDefaults() *PageResponseEventPolicyHistoryResponse

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

func (*PageResponseEventPolicyHistoryResponse) GetContents

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

func (*PageResponseEventPolicyHistoryResponse) GetContentsOk

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

func (*PageResponseEventPolicyHistoryResponse) GetIsChanged

func (o *PageResponseEventPolicyHistoryResponse) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseEventPolicyHistoryResponse) GetIsChangedOk

func (o *PageResponseEventPolicyHistoryResponse) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseEventPolicyHistoryResponse) GetReturnCount

func (o *PageResponseEventPolicyHistoryResponse) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseEventPolicyHistoryResponse) GetReturnCountOk

func (o *PageResponseEventPolicyHistoryResponse) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseEventPolicyHistoryResponse) GetReturnPage

func (o *PageResponseEventPolicyHistoryResponse) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseEventPolicyHistoryResponse) GetReturnPageOk

func (o *PageResponseEventPolicyHistoryResponse) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseEventPolicyHistoryResponse) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseEventPolicyHistoryResponse) GetSortOk

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

func (*PageResponseEventPolicyHistoryResponse) GetSortableFields

func (o *PageResponseEventPolicyHistoryResponse) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseEventPolicyHistoryResponse) GetSortableFieldsOk

func (o *PageResponseEventPolicyHistoryResponse) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseEventPolicyHistoryResponse) GetTotalCount

func (o *PageResponseEventPolicyHistoryResponse) GetTotalCount() int64

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

func (*PageResponseEventPolicyHistoryResponse) GetTotalCountOk

func (o *PageResponseEventPolicyHistoryResponse) GetTotalCountOk() (*int64, 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 (*PageResponseEventPolicyHistoryResponse) HasContents

HasContents returns a boolean if a field has been set.

func (*PageResponseEventPolicyHistoryResponse) HasIsChanged

func (o *PageResponseEventPolicyHistoryResponse) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseEventPolicyHistoryResponse) HasReturnCount

func (o *PageResponseEventPolicyHistoryResponse) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseEventPolicyHistoryResponse) HasReturnPage

func (o *PageResponseEventPolicyHistoryResponse) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseEventPolicyHistoryResponse) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseEventPolicyHistoryResponse) HasSortableFields

func (o *PageResponseEventPolicyHistoryResponse) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseEventPolicyHistoryResponse) HasTotalCount

func (o *PageResponseEventPolicyHistoryResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseEventPolicyHistoryResponse) MarshalJSON

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

func (*PageResponseEventPolicyHistoryResponse) SetContents

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

func (*PageResponseEventPolicyHistoryResponse) SetIsChanged

func (o *PageResponseEventPolicyHistoryResponse) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseEventPolicyHistoryResponse) SetReturnCount

func (o *PageResponseEventPolicyHistoryResponse) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseEventPolicyHistoryResponse) SetReturnPage

func (o *PageResponseEventPolicyHistoryResponse) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseEventPolicyHistoryResponse) SetSort

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseEventPolicyHistoryResponse) SetSortableFields

func (o *PageResponseEventPolicyHistoryResponse) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseEventPolicyHistoryResponse) SetTotalCount

func (o *PageResponseEventPolicyHistoryResponse) SetTotalCount(v int64)

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

func (PageResponseEventPolicyHistoryResponse) ToMap

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

type PageResponseEventPolicyResponse

type PageResponseEventPolicyResponse struct {
	Contents       []EventPolicyResponse `json:"contents,omitempty"`
	IsChanged      *bool                 `json:"isChanged,omitempty"`
	ReturnCount    *int64                `json:"returnCount,omitempty"`
	ReturnPage     *int64                `json:"returnPage,omitempty"`
	Sort           []string              `json:"sort,omitempty"`
	SortableFields []string              `json:"sortableFields,omitempty"`
	TotalCount     *int64                `json:"totalCount,omitempty"`
}

PageResponseEventPolicyResponse struct for PageResponseEventPolicyResponse

func NewPageResponseEventPolicyResponse

func NewPageResponseEventPolicyResponse() *PageResponseEventPolicyResponse

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

func NewPageResponseEventPolicyResponseWithDefaults

func NewPageResponseEventPolicyResponseWithDefaults() *PageResponseEventPolicyResponse

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

func (*PageResponseEventPolicyResponse) GetContents

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

func (*PageResponseEventPolicyResponse) GetContentsOk

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

func (*PageResponseEventPolicyResponse) GetIsChanged

func (o *PageResponseEventPolicyResponse) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseEventPolicyResponse) GetIsChangedOk

func (o *PageResponseEventPolicyResponse) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseEventPolicyResponse) GetReturnCount

func (o *PageResponseEventPolicyResponse) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseEventPolicyResponse) GetReturnCountOk

func (o *PageResponseEventPolicyResponse) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseEventPolicyResponse) GetReturnPage

func (o *PageResponseEventPolicyResponse) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseEventPolicyResponse) GetReturnPageOk

func (o *PageResponseEventPolicyResponse) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseEventPolicyResponse) GetSort

func (o *PageResponseEventPolicyResponse) GetSort() []string

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseEventPolicyResponse) GetSortOk

func (o *PageResponseEventPolicyResponse) GetSortOk() ([]string, bool)

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

func (*PageResponseEventPolicyResponse) GetSortableFields

func (o *PageResponseEventPolicyResponse) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseEventPolicyResponse) GetSortableFieldsOk

func (o *PageResponseEventPolicyResponse) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseEventPolicyResponse) GetTotalCount

func (o *PageResponseEventPolicyResponse) GetTotalCount() int64

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

func (*PageResponseEventPolicyResponse) GetTotalCountOk

func (o *PageResponseEventPolicyResponse) GetTotalCountOk() (*int64, 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 (*PageResponseEventPolicyResponse) HasContents

func (o *PageResponseEventPolicyResponse) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseEventPolicyResponse) HasIsChanged

func (o *PageResponseEventPolicyResponse) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseEventPolicyResponse) HasReturnCount

func (o *PageResponseEventPolicyResponse) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseEventPolicyResponse) HasReturnPage

func (o *PageResponseEventPolicyResponse) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseEventPolicyResponse) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseEventPolicyResponse) HasSortableFields

func (o *PageResponseEventPolicyResponse) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseEventPolicyResponse) HasTotalCount

func (o *PageResponseEventPolicyResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseEventPolicyResponse) MarshalJSON

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

func (*PageResponseEventPolicyResponse) SetContents

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

func (*PageResponseEventPolicyResponse) SetIsChanged

func (o *PageResponseEventPolicyResponse) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseEventPolicyResponse) SetReturnCount

func (o *PageResponseEventPolicyResponse) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseEventPolicyResponse) SetReturnPage

func (o *PageResponseEventPolicyResponse) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseEventPolicyResponse) SetSort

func (o *PageResponseEventPolicyResponse) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseEventPolicyResponse) SetSortableFields

func (o *PageResponseEventPolicyResponse) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseEventPolicyResponse) SetTotalCount

func (o *PageResponseEventPolicyResponse) SetTotalCount(v int64)

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

func (PageResponseEventPolicyResponse) ToMap

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

type PageResponseJsonArrayProjectMemberResponseForOpenAPI

type PageResponseJsonArrayProjectMemberResponseForOpenAPI struct {
	// Contents
	Contents []ProjectMemberResponseForOpenAPI `json:"contents,omitempty"`
	// Return Count
	ReturnCount *int64 `json:"returnCount,omitempty"`
	// Return Page
	ReturnPage *int64 `json:"returnPage,omitempty"`
	// Sorting Field List
	Sort []string `json:"sort,omitempty"`
	// Sortable Field List
	SortableFields []string `json:"sortableFields,omitempty"`
	// Total Count
	TotalCount *int64 `json:"totalCount,omitempty"`
}

PageResponseJsonArrayProjectMemberResponseForOpenAPI struct for PageResponseJsonArrayProjectMemberResponseForOpenAPI

func NewPageResponseJsonArrayProjectMemberResponseForOpenAPI

func NewPageResponseJsonArrayProjectMemberResponseForOpenAPI() *PageResponseJsonArrayProjectMemberResponseForOpenAPI

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

func NewPageResponseJsonArrayProjectMemberResponseForOpenAPIWithDefaults

func NewPageResponseJsonArrayProjectMemberResponseForOpenAPIWithDefaults() *PageResponseJsonArrayProjectMemberResponseForOpenAPI

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetContents

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetContentsOk

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetReturnCount

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetReturnCountOk

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetReturnPage

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetReturnPageOk

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetSortOk

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetSortableFields

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetSortableFieldsOk

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetTotalCount

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) GetTotalCountOk

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 (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) HasContents

HasContents returns a boolean if a field has been set.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) HasReturnCount

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) HasReturnPage

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) HasSortableFields

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) HasTotalCount

HasTotalCount returns a boolean if a field has been set.

func (PageResponseJsonArrayProjectMemberResponseForOpenAPI) MarshalJSON

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) SetContents

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

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) SetReturnCount

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) SetReturnPage

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) SetSort

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) SetSortableFields

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseJsonArrayProjectMemberResponseForOpenAPI) SetTotalCount

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

func (PageResponseJsonArrayProjectMemberResponseForOpenAPI) ToMap

type PageResponseMetricInfoDto

type PageResponseMetricInfoDto struct {
	Contents       []MetricInfoDto `json:"contents,omitempty"`
	IsChanged      *bool           `json:"isChanged,omitempty"`
	ReturnCount    *int64          `json:"returnCount,omitempty"`
	ReturnPage     *int64          `json:"returnPage,omitempty"`
	Sort           []string        `json:"sort,omitempty"`
	SortableFields []string        `json:"sortableFields,omitempty"`
	TotalCount     *int64          `json:"totalCount,omitempty"`
}

PageResponseMetricInfoDto struct for PageResponseMetricInfoDto

func NewPageResponseMetricInfoDto

func NewPageResponseMetricInfoDto() *PageResponseMetricInfoDto

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

func NewPageResponseMetricInfoDtoWithDefaults

func NewPageResponseMetricInfoDtoWithDefaults() *PageResponseMetricInfoDto

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

func (*PageResponseMetricInfoDto) GetContents

func (o *PageResponseMetricInfoDto) GetContents() []MetricInfoDto

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

func (*PageResponseMetricInfoDto) GetContentsOk

func (o *PageResponseMetricInfoDto) GetContentsOk() ([]MetricInfoDto, bool)

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

func (*PageResponseMetricInfoDto) GetIsChanged

func (o *PageResponseMetricInfoDto) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseMetricInfoDto) GetIsChangedOk

func (o *PageResponseMetricInfoDto) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseMetricInfoDto) GetReturnCount

func (o *PageResponseMetricInfoDto) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseMetricInfoDto) GetReturnCountOk

func (o *PageResponseMetricInfoDto) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseMetricInfoDto) GetReturnPage

func (o *PageResponseMetricInfoDto) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseMetricInfoDto) GetReturnPageOk

func (o *PageResponseMetricInfoDto) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseMetricInfoDto) GetSort

func (o *PageResponseMetricInfoDto) GetSort() []string

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseMetricInfoDto) GetSortOk

func (o *PageResponseMetricInfoDto) GetSortOk() ([]string, bool)

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

func (*PageResponseMetricInfoDto) GetSortableFields

func (o *PageResponseMetricInfoDto) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseMetricInfoDto) GetSortableFieldsOk

func (o *PageResponseMetricInfoDto) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseMetricInfoDto) GetTotalCount

func (o *PageResponseMetricInfoDto) GetTotalCount() int64

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

func (*PageResponseMetricInfoDto) GetTotalCountOk

func (o *PageResponseMetricInfoDto) GetTotalCountOk() (*int64, 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 (*PageResponseMetricInfoDto) HasContents

func (o *PageResponseMetricInfoDto) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseMetricInfoDto) HasIsChanged

func (o *PageResponseMetricInfoDto) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseMetricInfoDto) HasReturnCount

func (o *PageResponseMetricInfoDto) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseMetricInfoDto) HasReturnPage

func (o *PageResponseMetricInfoDto) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseMetricInfoDto) HasSort

func (o *PageResponseMetricInfoDto) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*PageResponseMetricInfoDto) HasSortableFields

func (o *PageResponseMetricInfoDto) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseMetricInfoDto) HasTotalCount

func (o *PageResponseMetricInfoDto) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseMetricInfoDto) MarshalJSON

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

func (*PageResponseMetricInfoDto) SetContents

func (o *PageResponseMetricInfoDto) SetContents(v []MetricInfoDto)

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

func (*PageResponseMetricInfoDto) SetIsChanged

func (o *PageResponseMetricInfoDto) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseMetricInfoDto) SetReturnCount

func (o *PageResponseMetricInfoDto) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseMetricInfoDto) SetReturnPage

func (o *PageResponseMetricInfoDto) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseMetricInfoDto) SetSort

func (o *PageResponseMetricInfoDto) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseMetricInfoDto) SetSortableFields

func (o *PageResponseMetricInfoDto) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseMetricInfoDto) SetTotalCount

func (o *PageResponseMetricInfoDto) SetTotalCount(v int64)

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

func (PageResponseMetricInfoDto) ToMap

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

type PageResponseNotificationResponse

type PageResponseNotificationResponse struct {
	Contents       []NotificationResponse `json:"contents,omitempty"`
	IsChanged      *bool                  `json:"isChanged,omitempty"`
	ReturnCount    *int64                 `json:"returnCount,omitempty"`
	ReturnPage     *int64                 `json:"returnPage,omitempty"`
	Sort           []string               `json:"sort,omitempty"`
	SortableFields []string               `json:"sortableFields,omitempty"`
	TotalCount     *int64                 `json:"totalCount,omitempty"`
}

PageResponseNotificationResponse struct for PageResponseNotificationResponse

func NewPageResponseNotificationResponse

func NewPageResponseNotificationResponse() *PageResponseNotificationResponse

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

func NewPageResponseNotificationResponseWithDefaults

func NewPageResponseNotificationResponseWithDefaults() *PageResponseNotificationResponse

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

func (*PageResponseNotificationResponse) GetContents

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

func (*PageResponseNotificationResponse) GetContentsOk

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

func (*PageResponseNotificationResponse) GetIsChanged

func (o *PageResponseNotificationResponse) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseNotificationResponse) GetIsChangedOk

func (o *PageResponseNotificationResponse) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseNotificationResponse) GetReturnCount

func (o *PageResponseNotificationResponse) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseNotificationResponse) GetReturnCountOk

func (o *PageResponseNotificationResponse) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseNotificationResponse) GetReturnPage

func (o *PageResponseNotificationResponse) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseNotificationResponse) GetReturnPageOk

func (o *PageResponseNotificationResponse) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseNotificationResponse) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseNotificationResponse) GetSortOk

func (o *PageResponseNotificationResponse) GetSortOk() ([]string, bool)

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

func (*PageResponseNotificationResponse) GetSortableFields

func (o *PageResponseNotificationResponse) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseNotificationResponse) GetSortableFieldsOk

func (o *PageResponseNotificationResponse) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseNotificationResponse) GetTotalCount

func (o *PageResponseNotificationResponse) GetTotalCount() int64

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

func (*PageResponseNotificationResponse) GetTotalCountOk

func (o *PageResponseNotificationResponse) GetTotalCountOk() (*int64, 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 (*PageResponseNotificationResponse) HasContents

func (o *PageResponseNotificationResponse) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseNotificationResponse) HasIsChanged

func (o *PageResponseNotificationResponse) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseNotificationResponse) HasReturnCount

func (o *PageResponseNotificationResponse) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseNotificationResponse) HasReturnPage

func (o *PageResponseNotificationResponse) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseNotificationResponse) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseNotificationResponse) HasSortableFields

func (o *PageResponseNotificationResponse) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseNotificationResponse) HasTotalCount

func (o *PageResponseNotificationResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseNotificationResponse) MarshalJSON

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

func (*PageResponseNotificationResponse) SetContents

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

func (*PageResponseNotificationResponse) SetIsChanged

func (o *PageResponseNotificationResponse) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseNotificationResponse) SetReturnCount

func (o *PageResponseNotificationResponse) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseNotificationResponse) SetReturnPage

func (o *PageResponseNotificationResponse) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseNotificationResponse) SetSort

func (o *PageResponseNotificationResponse) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseNotificationResponse) SetSortableFields

func (o *PageResponseNotificationResponse) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseNotificationResponse) SetTotalCount

func (o *PageResponseNotificationResponse) SetTotalCount(v int64)

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

func (PageResponseNotificationResponse) ToMap

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

type PageResponseOpenApiEventResponse

type PageResponseOpenApiEventResponse struct {
	Contents       []OpenApiEventResponse `json:"contents,omitempty"`
	IsChanged      *bool                  `json:"isChanged,omitempty"`
	ReturnCount    *int64                 `json:"returnCount,omitempty"`
	ReturnPage     *int64                 `json:"returnPage,omitempty"`
	Sort           []string               `json:"sort,omitempty"`
	SortableFields []string               `json:"sortableFields,omitempty"`
	TotalCount     *int64                 `json:"totalCount,omitempty"`
}

PageResponseOpenApiEventResponse struct for PageResponseOpenApiEventResponse

func NewPageResponseOpenApiEventResponse

func NewPageResponseOpenApiEventResponse() *PageResponseOpenApiEventResponse

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

func NewPageResponseOpenApiEventResponseWithDefaults

func NewPageResponseOpenApiEventResponseWithDefaults() *PageResponseOpenApiEventResponse

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

func (*PageResponseOpenApiEventResponse) GetContents

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

func (*PageResponseOpenApiEventResponse) GetContentsOk

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

func (*PageResponseOpenApiEventResponse) GetIsChanged

func (o *PageResponseOpenApiEventResponse) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseOpenApiEventResponse) GetIsChangedOk

func (o *PageResponseOpenApiEventResponse) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseOpenApiEventResponse) GetReturnCount

func (o *PageResponseOpenApiEventResponse) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseOpenApiEventResponse) GetReturnCountOk

func (o *PageResponseOpenApiEventResponse) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseOpenApiEventResponse) GetReturnPage

func (o *PageResponseOpenApiEventResponse) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseOpenApiEventResponse) GetReturnPageOk

func (o *PageResponseOpenApiEventResponse) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseOpenApiEventResponse) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseOpenApiEventResponse) GetSortOk

func (o *PageResponseOpenApiEventResponse) GetSortOk() ([]string, bool)

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

func (*PageResponseOpenApiEventResponse) GetSortableFields

func (o *PageResponseOpenApiEventResponse) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseOpenApiEventResponse) GetSortableFieldsOk

func (o *PageResponseOpenApiEventResponse) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseOpenApiEventResponse) GetTotalCount

func (o *PageResponseOpenApiEventResponse) GetTotalCount() int64

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

func (*PageResponseOpenApiEventResponse) GetTotalCountOk

func (o *PageResponseOpenApiEventResponse) GetTotalCountOk() (*int64, 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 (*PageResponseOpenApiEventResponse) HasContents

func (o *PageResponseOpenApiEventResponse) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseOpenApiEventResponse) HasIsChanged

func (o *PageResponseOpenApiEventResponse) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseOpenApiEventResponse) HasReturnCount

func (o *PageResponseOpenApiEventResponse) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseOpenApiEventResponse) HasReturnPage

func (o *PageResponseOpenApiEventResponse) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseOpenApiEventResponse) HasSort

HasSort returns a boolean if a field has been set.

func (*PageResponseOpenApiEventResponse) HasSortableFields

func (o *PageResponseOpenApiEventResponse) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseOpenApiEventResponse) HasTotalCount

func (o *PageResponseOpenApiEventResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseOpenApiEventResponse) MarshalJSON

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

func (*PageResponseOpenApiEventResponse) SetContents

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

func (*PageResponseOpenApiEventResponse) SetIsChanged

func (o *PageResponseOpenApiEventResponse) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseOpenApiEventResponse) SetReturnCount

func (o *PageResponseOpenApiEventResponse) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseOpenApiEventResponse) SetReturnPage

func (o *PageResponseOpenApiEventResponse) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseOpenApiEventResponse) SetSort

func (o *PageResponseOpenApiEventResponse) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseOpenApiEventResponse) SetSortableFields

func (o *PageResponseOpenApiEventResponse) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseOpenApiEventResponse) SetTotalCount

func (o *PageResponseOpenApiEventResponse) SetTotalCount(v int64)

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

func (PageResponseOpenApiEventResponse) ToMap

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

type PageResponseProductTypeInfoDto

type PageResponseProductTypeInfoDto struct {
	Contents       []ProductTypeInfoDto `json:"contents,omitempty"`
	IsChanged      *bool                `json:"isChanged,omitempty"`
	ReturnCount    *int64               `json:"returnCount,omitempty"`
	ReturnPage     *int64               `json:"returnPage,omitempty"`
	Sort           []string             `json:"sort,omitempty"`
	SortableFields []string             `json:"sortableFields,omitempty"`
	TotalCount     *int64               `json:"totalCount,omitempty"`
}

PageResponseProductTypeInfoDto struct for PageResponseProductTypeInfoDto

func NewPageResponseProductTypeInfoDto

func NewPageResponseProductTypeInfoDto() *PageResponseProductTypeInfoDto

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

func NewPageResponseProductTypeInfoDtoWithDefaults

func NewPageResponseProductTypeInfoDtoWithDefaults() *PageResponseProductTypeInfoDto

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

func (*PageResponseProductTypeInfoDto) GetContents

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

func (*PageResponseProductTypeInfoDto) GetContentsOk

func (o *PageResponseProductTypeInfoDto) GetContentsOk() ([]ProductTypeInfoDto, bool)

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

func (*PageResponseProductTypeInfoDto) GetIsChanged

func (o *PageResponseProductTypeInfoDto) GetIsChanged() bool

GetIsChanged returns the IsChanged field value if set, zero value otherwise.

func (*PageResponseProductTypeInfoDto) GetIsChangedOk

func (o *PageResponseProductTypeInfoDto) GetIsChangedOk() (*bool, bool)

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

func (*PageResponseProductTypeInfoDto) GetReturnCount

func (o *PageResponseProductTypeInfoDto) GetReturnCount() int64

GetReturnCount returns the ReturnCount field value if set, zero value otherwise.

func (*PageResponseProductTypeInfoDto) GetReturnCountOk

func (o *PageResponseProductTypeInfoDto) GetReturnCountOk() (*int64, bool)

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

func (*PageResponseProductTypeInfoDto) GetReturnPage

func (o *PageResponseProductTypeInfoDto) GetReturnPage() int64

GetReturnPage returns the ReturnPage field value if set, zero value otherwise.

func (*PageResponseProductTypeInfoDto) GetReturnPageOk

func (o *PageResponseProductTypeInfoDto) GetReturnPageOk() (*int64, bool)

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

func (*PageResponseProductTypeInfoDto) GetSort

func (o *PageResponseProductTypeInfoDto) GetSort() []string

GetSort returns the Sort field value if set, zero value otherwise.

func (*PageResponseProductTypeInfoDto) GetSortOk

func (o *PageResponseProductTypeInfoDto) GetSortOk() ([]string, bool)

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

func (*PageResponseProductTypeInfoDto) GetSortableFields

func (o *PageResponseProductTypeInfoDto) GetSortableFields() []string

GetSortableFields returns the SortableFields field value if set, zero value otherwise.

func (*PageResponseProductTypeInfoDto) GetSortableFieldsOk

func (o *PageResponseProductTypeInfoDto) GetSortableFieldsOk() ([]string, bool)

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

func (*PageResponseProductTypeInfoDto) GetTotalCount

func (o *PageResponseProductTypeInfoDto) GetTotalCount() int64

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

func (*PageResponseProductTypeInfoDto) GetTotalCountOk

func (o *PageResponseProductTypeInfoDto) GetTotalCountOk() (*int64, 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 (*PageResponseProductTypeInfoDto) HasContents

func (o *PageResponseProductTypeInfoDto) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*PageResponseProductTypeInfoDto) HasIsChanged

func (o *PageResponseProductTypeInfoDto) HasIsChanged() bool

HasIsChanged returns a boolean if a field has been set.

func (*PageResponseProductTypeInfoDto) HasReturnCount

func (o *PageResponseProductTypeInfoDto) HasReturnCount() bool

HasReturnCount returns a boolean if a field has been set.

func (*PageResponseProductTypeInfoDto) HasReturnPage

func (o *PageResponseProductTypeInfoDto) HasReturnPage() bool

HasReturnPage returns a boolean if a field has been set.

func (*PageResponseProductTypeInfoDto) HasSort

func (o *PageResponseProductTypeInfoDto) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*PageResponseProductTypeInfoDto) HasSortableFields

func (o *PageResponseProductTypeInfoDto) HasSortableFields() bool

HasSortableFields returns a boolean if a field has been set.

func (*PageResponseProductTypeInfoDto) HasTotalCount

func (o *PageResponseProductTypeInfoDto) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (PageResponseProductTypeInfoDto) MarshalJSON

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

func (*PageResponseProductTypeInfoDto) SetContents

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

func (*PageResponseProductTypeInfoDto) SetIsChanged

func (o *PageResponseProductTypeInfoDto) SetIsChanged(v bool)

SetIsChanged gets a reference to the given bool and assigns it to the IsChanged field.

func (*PageResponseProductTypeInfoDto) SetReturnCount

func (o *PageResponseProductTypeInfoDto) SetReturnCount(v int64)

SetReturnCount gets a reference to the given int64 and assigns it to the ReturnCount field.

func (*PageResponseProductTypeInfoDto) SetReturnPage

func (o *PageResponseProductTypeInfoDto) SetReturnPage(v int64)

SetReturnPage gets a reference to the given int64 and assigns it to the ReturnPage field.

func (*PageResponseProductTypeInfoDto) SetSort

func (o *PageResponseProductTypeInfoDto) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*PageResponseProductTypeInfoDto) SetSortableFields

func (o *PageResponseProductTypeInfoDto) SetSortableFields(v []string)

SetSortableFields gets a reference to the given []string and assigns it to the SortableFields field.

func (*PageResponseProductTypeInfoDto) SetTotalCount

func (o *PageResponseProductTypeInfoDto) SetTotalCount(v int64)

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

func (PageResponseProductTypeInfoDto) ToMap

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

type ProductInfoAttr

type ProductInfoAttr struct {
	AttrName  *string `json:"attrName,omitempty"`
	AttrValue *string `json:"attrValue,omitempty"`
}

ProductInfoAttr struct for ProductInfoAttr

func NewProductInfoAttr

func NewProductInfoAttr() *ProductInfoAttr

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

func NewProductInfoAttrWithDefaults

func NewProductInfoAttrWithDefaults() *ProductInfoAttr

NewProductInfoAttrWithDefaults instantiates a new ProductInfoAttr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductInfoAttr) GetAttrName

func (o *ProductInfoAttr) GetAttrName() string

GetAttrName returns the AttrName field value if set, zero value otherwise.

func (*ProductInfoAttr) GetAttrNameOk

func (o *ProductInfoAttr) GetAttrNameOk() (*string, bool)

GetAttrNameOk returns a tuple with the AttrName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfoAttr) GetAttrValue

func (o *ProductInfoAttr) GetAttrValue() string

GetAttrValue returns the AttrValue field value if set, zero value otherwise.

func (*ProductInfoAttr) GetAttrValueOk

func (o *ProductInfoAttr) GetAttrValueOk() (*string, bool)

GetAttrValueOk returns a tuple with the AttrValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductInfoAttr) HasAttrName

func (o *ProductInfoAttr) HasAttrName() bool

HasAttrName returns a boolean if a field has been set.

func (*ProductInfoAttr) HasAttrValue

func (o *ProductInfoAttr) HasAttrValue() bool

HasAttrValue returns a boolean if a field has been set.

func (ProductInfoAttr) MarshalJSON

func (o ProductInfoAttr) MarshalJSON() ([]byte, error)

func (*ProductInfoAttr) SetAttrName

func (o *ProductInfoAttr) SetAttrName(v string)

SetAttrName gets a reference to the given string and assigns it to the AttrName field.

func (*ProductInfoAttr) SetAttrValue

func (o *ProductInfoAttr) SetAttrValue(v string)

SetAttrValue gets a reference to the given string and assigns it to the AttrValue field.

func (ProductInfoAttr) ToMap

func (o ProductInfoAttr) ToMap() (map[string]interface{}, error)

type ProductList

type ProductList struct {
	ProductName       *string `json:"productName,omitempty"`
	ProductResourceId *string `json:"productResourceId,omitempty"`
	ProductSq         *int64  `json:"productSq,omitempty"`
}

ProductList struct for ProductList

func NewProductList

func NewProductList() *ProductList

NewProductList instantiates a new ProductList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductListWithDefaults

func NewProductListWithDefaults() *ProductList

NewProductListWithDefaults instantiates a new ProductList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductList) GetProductName

func (o *ProductList) GetProductName() string

GetProductName returns the ProductName field value if set, zero value otherwise.

func (*ProductList) GetProductNameOk

func (o *ProductList) GetProductNameOk() (*string, bool)

GetProductNameOk returns a tuple with the ProductName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductList) GetProductResourceId

func (o *ProductList) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value if set, zero value otherwise.

func (*ProductList) GetProductResourceIdOk

func (o *ProductList) GetProductResourceIdOk() (*string, bool)

GetProductResourceIdOk returns a tuple with the ProductResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductList) GetProductSq

func (o *ProductList) GetProductSq() int64

GetProductSq returns the ProductSq field value if set, zero value otherwise.

func (*ProductList) GetProductSqOk

func (o *ProductList) GetProductSqOk() (*int64, bool)

GetProductSqOk returns a tuple with the ProductSq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductList) HasProductName

func (o *ProductList) HasProductName() bool

HasProductName returns a boolean if a field has been set.

func (*ProductList) HasProductResourceId

func (o *ProductList) HasProductResourceId() bool

HasProductResourceId returns a boolean if a field has been set.

func (*ProductList) HasProductSq

func (o *ProductList) HasProductSq() bool

HasProductSq returns a boolean if a field has been set.

func (ProductList) MarshalJSON

func (o ProductList) MarshalJSON() ([]byte, error)

func (*ProductList) SetProductName

func (o *ProductList) SetProductName(v string)

SetProductName gets a reference to the given string and assigns it to the ProductName field.

func (*ProductList) SetProductResourceId

func (o *ProductList) SetProductResourceId(v string)

SetProductResourceId gets a reference to the given string and assigns it to the ProductResourceId field.

func (*ProductList) SetProductSq

func (o *ProductList) SetProductSq(v int64)

SetProductSq gets a reference to the given int64 and assigns it to the ProductSq field.

func (ProductList) ToMap

func (o ProductList) ToMap() (map[string]interface{}, error)

type ProductResourceInfo

type ProductResourceInfo struct {
	// 개별항목 목록
	ObjectList []string `json:"objectList,omitempty"`
	// 상품 리소스 아이디
	ProductResourceId string `json:"productResourceId"`
}

ProductResourceInfo 리소스 정보를 전달하기 위한 객체

func NewProductResourceInfo

func NewProductResourceInfo(productResourceId string) *ProductResourceInfo

NewProductResourceInfo instantiates a new ProductResourceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductResourceInfoWithDefaults

func NewProductResourceInfoWithDefaults() *ProductResourceInfo

NewProductResourceInfoWithDefaults instantiates a new ProductResourceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductResourceInfo) GetObjectList

func (o *ProductResourceInfo) GetObjectList() []string

GetObjectList returns the ObjectList field value if set, zero value otherwise.

func (*ProductResourceInfo) GetObjectListOk

func (o *ProductResourceInfo) GetObjectListOk() ([]string, bool)

GetObjectListOk returns a tuple with the ObjectList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductResourceInfo) GetProductResourceId

func (o *ProductResourceInfo) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*ProductResourceInfo) GetProductResourceIdOk

func (o *ProductResourceInfo) GetProductResourceIdOk() (*string, bool)

GetProductResourceIdOk returns a tuple with the ProductResourceId field value and a boolean to check if the value has been set.

func (*ProductResourceInfo) HasObjectList

func (o *ProductResourceInfo) HasObjectList() bool

HasObjectList returns a boolean if a field has been set.

func (ProductResourceInfo) MarshalJSON

func (o ProductResourceInfo) MarshalJSON() ([]byte, error)

func (*ProductResourceInfo) SetObjectList

func (o *ProductResourceInfo) SetObjectList(v []string)

SetObjectList gets a reference to the given []string and assigns it to the ObjectList field.

func (*ProductResourceInfo) SetProductResourceId

func (o *ProductResourceInfo) SetProductResourceId(v string)

SetProductResourceId sets field value

func (ProductResourceInfo) ToMap

func (o ProductResourceInfo) ToMap() (map[string]interface{}, error)

func (*ProductResourceInfo) UnmarshalJSON

func (o *ProductResourceInfo) UnmarshalJSON(data []byte) (err error)

type ProductSummary

type ProductSummary struct {
	// 상품 상태
	AgentState string `json:"agentState"`
	// swagger.event.productSummary.lbName.value
	LbName *string `json:"lbName,omitempty"`
	// swagger.event.productSummary.lbSize.value
	LbSize *string `json:"lbSize,omitempty"`
	// 상품 IP주소
	ProductIpAddress *string `json:"productIpAddress,omitempty"`
	// 상품 이름
	ProductName string `json:"productName"`
	// 상품 리소스 아이디
	ProductResourceId string `json:"productResourceId"`
	// 상품 시퀀스
	ProductSq *int64 `json:"productSq,omitempty"`
	// 상품 상태
	ProductState string `json:"productState"`
	// swagger.event.productSummary.productSubName.value
	ProductSubName *string `json:"productSubName,omitempty"`
	// swagger.event.productSummary.productSubType.value
	ProductSubType *string `json:"productSubType,omitempty"`
	// 상품 유형 코드
	ProductTypeCode string `json:"productTypeCode"`
	// 상품 유형 이름
	ProductTypeName string `json:"productTypeName"`
	// swagger.event.productSummary.vpcName.value
	VpcName *string `json:"vpcName,omitempty"`
}

ProductSummary 상품 요약 객체

func NewProductSummary

func NewProductSummary(agentState string, productName string, productResourceId string, productState string, productTypeCode string, productTypeName string) *ProductSummary

NewProductSummary instantiates a new ProductSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductSummaryWithDefaults

func NewProductSummaryWithDefaults() *ProductSummary

NewProductSummaryWithDefaults instantiates a new ProductSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductSummary) GetAgentState

func (o *ProductSummary) GetAgentState() string

GetAgentState returns the AgentState field value

func (*ProductSummary) GetAgentStateOk

func (o *ProductSummary) GetAgentStateOk() (*string, bool)

GetAgentStateOk returns a tuple with the AgentState field value and a boolean to check if the value has been set.

func (*ProductSummary) GetLbName

func (o *ProductSummary) GetLbName() string

GetLbName returns the LbName field value if set, zero value otherwise.

func (*ProductSummary) GetLbNameOk

func (o *ProductSummary) GetLbNameOk() (*string, bool)

GetLbNameOk returns a tuple with the LbName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) GetLbSize

func (o *ProductSummary) GetLbSize() string

GetLbSize returns the LbSize field value if set, zero value otherwise.

func (*ProductSummary) GetLbSizeOk

func (o *ProductSummary) GetLbSizeOk() (*string, bool)

GetLbSizeOk returns a tuple with the LbSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) GetProductIpAddress

func (o *ProductSummary) GetProductIpAddress() string

GetProductIpAddress returns the ProductIpAddress field value if set, zero value otherwise.

func (*ProductSummary) GetProductIpAddressOk

func (o *ProductSummary) GetProductIpAddressOk() (*string, bool)

GetProductIpAddressOk returns a tuple with the ProductIpAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) GetProductName

func (o *ProductSummary) GetProductName() string

GetProductName returns the ProductName field value

func (*ProductSummary) GetProductNameOk

func (o *ProductSummary) GetProductNameOk() (*string, bool)

GetProductNameOk returns a tuple with the ProductName field value and a boolean to check if the value has been set.

func (*ProductSummary) GetProductResourceId

func (o *ProductSummary) GetProductResourceId() string

GetProductResourceId returns the ProductResourceId field value

func (*ProductSummary) GetProductResourceIdOk

func (o *ProductSummary) GetProductResourceIdOk() (*string, bool)

GetProductResourceIdOk returns a tuple with the ProductResourceId field value and a boolean to check if the value has been set.

func (*ProductSummary) GetProductSq

func (o *ProductSummary) GetProductSq() int64

GetProductSq returns the ProductSq field value if set, zero value otherwise.

func (*ProductSummary) GetProductSqOk

func (o *ProductSummary) GetProductSqOk() (*int64, bool)

GetProductSqOk returns a tuple with the ProductSq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) GetProductState

func (o *ProductSummary) GetProductState() string

GetProductState returns the ProductState field value

func (*ProductSummary) GetProductStateOk

func (o *ProductSummary) GetProductStateOk() (*string, bool)

GetProductStateOk returns a tuple with the ProductState field value and a boolean to check if the value has been set.

func (*ProductSummary) GetProductSubName

func (o *ProductSummary) GetProductSubName() string

GetProductSubName returns the ProductSubName field value if set, zero value otherwise.

func (*ProductSummary) GetProductSubNameOk

func (o *ProductSummary) GetProductSubNameOk() (*string, bool)

GetProductSubNameOk returns a tuple with the ProductSubName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) GetProductSubType

func (o *ProductSummary) GetProductSubType() string

GetProductSubType returns the ProductSubType field value if set, zero value otherwise.

func (*ProductSummary) GetProductSubTypeOk

func (o *ProductSummary) GetProductSubTypeOk() (*string, bool)

GetProductSubTypeOk returns a tuple with the ProductSubType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) GetProductTypeCode

func (o *ProductSummary) GetProductTypeCode() string

GetProductTypeCode returns the ProductTypeCode field value

func (*ProductSummary) GetProductTypeCodeOk

func (o *ProductSummary) GetProductTypeCodeOk() (*string, bool)

GetProductTypeCodeOk returns a tuple with the ProductTypeCode field value and a boolean to check if the value has been set.

func (*ProductSummary) GetProductTypeName

func (o *ProductSummary) GetProductTypeName() string

GetProductTypeName returns the ProductTypeName field value

func (*ProductSummary) GetProductTypeNameOk

func (o *ProductSummary) GetProductTypeNameOk() (*string, bool)

GetProductTypeNameOk returns a tuple with the ProductTypeName field value and a boolean to check if the value has been set.

func (*ProductSummary) GetVpcName

func (o *ProductSummary) GetVpcName() string

GetVpcName returns the VpcName field value if set, zero value otherwise.

func (*ProductSummary) GetVpcNameOk

func (o *ProductSummary) GetVpcNameOk() (*string, bool)

GetVpcNameOk returns a tuple with the VpcName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductSummary) HasLbName

func (o *ProductSummary) HasLbName() bool

HasLbName returns a boolean if a field has been set.

func (*ProductSummary) HasLbSize

func (o *ProductSummary) HasLbSize() bool

HasLbSize returns a boolean if a field has been set.

func (*ProductSummary) HasProductIpAddress

func (o *ProductSummary) HasProductIpAddress() bool

HasProductIpAddress returns a boolean if a field has been set.

func (*ProductSummary) HasProductSq

func (o *ProductSummary) HasProductSq() bool

HasProductSq returns a boolean if a field has been set.

func (*ProductSummary) HasProductSubName

func (o *ProductSummary) HasProductSubName() bool

HasProductSubName returns a boolean if a field has been set.

func (*ProductSummary) HasProductSubType

func (o *ProductSummary) HasProductSubType() bool

HasProductSubType returns a boolean if a field has been set.

func (*ProductSummary) HasVpcName

func (o *ProductSummary) HasVpcName() bool

HasVpcName returns a boolean if a field has been set.

func (ProductSummary) MarshalJSON

func (o ProductSummary) MarshalJSON() ([]byte, error)

func (*ProductSummary) SetAgentState

func (o *ProductSummary) SetAgentState(v string)

SetAgentState sets field value

func (*ProductSummary) SetLbName

func (o *ProductSummary) SetLbName(v string)

SetLbName gets a reference to the given string and assigns it to the LbName field.

func (*ProductSummary) SetLbSize

func (o *ProductSummary) SetLbSize(v string)

SetLbSize gets a reference to the given string and assigns it to the LbSize field.

func (*ProductSummary) SetProductIpAddress

func (o *ProductSummary) SetProductIpAddress(v string)

SetProductIpAddress gets a reference to the given string and assigns it to the ProductIpAddress field.

func (*ProductSummary) SetProductName

func (o *ProductSummary) SetProductName(v string)

SetProductName sets field value

func (*ProductSummary) SetProductResourceId

func (o *ProductSummary) SetProductResourceId(v string)

SetProductResourceId sets field value

func (*ProductSummary) SetProductSq

func (o *ProductSummary) SetProductSq(v int64)

SetProductSq gets a reference to the given int64 and assigns it to the ProductSq field.

func (*ProductSummary) SetProductState

func (o *ProductSummary) SetProductState(v string)

SetProductState sets field value

func (*ProductSummary) SetProductSubName

func (o *ProductSummary) SetProductSubName(v string)

SetProductSubName gets a reference to the given string and assigns it to the ProductSubName field.

func (*ProductSummary) SetProductSubType

func (o *ProductSummary) SetProductSubType(v string)

SetProductSubType gets a reference to the given string and assigns it to the ProductSubType field.

func (*ProductSummary) SetProductTypeCode

func (o *ProductSummary) SetProductTypeCode(v string)

SetProductTypeCode sets field value

func (*ProductSummary) SetProductTypeName

func (o *ProductSummary) SetProductTypeName(v string)

SetProductTypeName sets field value

func (*ProductSummary) SetVpcName

func (o *ProductSummary) SetVpcName(v string)

SetVpcName gets a reference to the given string and assigns it to the VpcName field.

func (ProductSummary) ToMap

func (o ProductSummary) ToMap() (map[string]interface{}, error)

func (*ProductSummary) UnmarshalJSON

func (o *ProductSummary) UnmarshalJSON(data []byte) (err error)

type ProductTypeInfoDto

type ProductTypeInfoDto struct {
	// 부모 상품 이름
	ParentProductTypeName string `json:"parentProductTypeName"`
	// 상품 코드
	ProductTypeCode string `json:"productTypeCode"`
	// 상품 이름
	ProductTypeName string `json:"productTypeName"`
	// 상태 메트릭 키
	StateMetricKey string `json:"stateMetricKey"`
}

ProductTypeInfoDto 상품 정보 조회 시 응답을 전달하기 위한 객체

func NewProductTypeInfoDto

func NewProductTypeInfoDto(parentProductTypeName string, productTypeCode string, productTypeName string, stateMetricKey string) *ProductTypeInfoDto

NewProductTypeInfoDto instantiates a new ProductTypeInfoDto object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductTypeInfoDtoWithDefaults

func NewProductTypeInfoDtoWithDefaults() *ProductTypeInfoDto

NewProductTypeInfoDtoWithDefaults instantiates a new ProductTypeInfoDto object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductTypeInfoDto) GetParentProductTypeName

func (o *ProductTypeInfoDto) GetParentProductTypeName() string

GetParentProductTypeName returns the ParentProductTypeName field value

func (*ProductTypeInfoDto) GetParentProductTypeNameOk

func (o *ProductTypeInfoDto) GetParentProductTypeNameOk() (*string, bool)

GetParentProductTypeNameOk returns a tuple with the ParentProductTypeName field value and a boolean to check if the value has been set.

func (*ProductTypeInfoDto) GetProductTypeCode

func (o *ProductTypeInfoDto) GetProductTypeCode() string

GetProductTypeCode returns the ProductTypeCode field value

func (*ProductTypeInfoDto) GetProductTypeCodeOk

func (o *ProductTypeInfoDto) GetProductTypeCodeOk() (*string, bool)

GetProductTypeCodeOk returns a tuple with the ProductTypeCode field value and a boolean to check if the value has been set.

func (*ProductTypeInfoDto) GetProductTypeName

func (o *ProductTypeInfoDto) GetProductTypeName() string

GetProductTypeName returns the ProductTypeName field value

func (*ProductTypeInfoDto) GetProductTypeNameOk

func (o *ProductTypeInfoDto) GetProductTypeNameOk() (*string, bool)

GetProductTypeNameOk returns a tuple with the ProductTypeName field value and a boolean to check if the value has been set.

func (*ProductTypeInfoDto) GetStateMetricKey

func (o *ProductTypeInfoDto) GetStateMetricKey() string

GetStateMetricKey returns the StateMetricKey field value

func (*ProductTypeInfoDto) GetStateMetricKeyOk

func (o *ProductTypeInfoDto) GetStateMetricKeyOk() (*string, bool)

GetStateMetricKeyOk returns a tuple with the StateMetricKey field value and a boolean to check if the value has been set.

func (ProductTypeInfoDto) MarshalJSON

func (o ProductTypeInfoDto) MarshalJSON() ([]byte, error)

func (*ProductTypeInfoDto) SetParentProductTypeName

func (o *ProductTypeInfoDto) SetParentProductTypeName(v string)

SetParentProductTypeName sets field value

func (*ProductTypeInfoDto) SetProductTypeCode

func (o *ProductTypeInfoDto) SetProductTypeCode(v string)

SetProductTypeCode sets field value

func (*ProductTypeInfoDto) SetProductTypeName

func (o *ProductTypeInfoDto) SetProductTypeName(v string)

SetProductTypeName sets field value

func (*ProductTypeInfoDto) SetStateMetricKey

func (o *ProductTypeInfoDto) SetStateMetricKey(v string)

SetStateMetricKey sets field value

func (ProductTypeInfoDto) ToMap

func (o ProductTypeInfoDto) ToMap() (map[string]interface{}, error)

func (*ProductTypeInfoDto) UnmarshalJSON

func (o *ProductTypeInfoDto) UnmarshalJSON(data []byte) (err error)

type ProjectMemberResponseForOpenAPI

type ProjectMemberResponseForOpenAPI struct {
	// swagger.product.ProjectMemberDto.companyName.value
	CompanyName *string `json:"companyName,omitempty"`
	// swagger.product.ProjectMemberDto.createdBy.value
	CreatedBy *string `json:"createdBy,omitempty"`
	// swagger.product.ProjectMemberDto.createdByEmail.value
	CreatedByEmail *string `json:"createdByEmail,omitempty"`
	// swagger.product.ProjectMemberDto.createdByName.value
	CreatedByName *string `json:"createdByName,omitempty"`
	// swagger.product.ProjectMemberDto.userTimezone.value
	CreatedDt *string `json:"createdDt,omitempty"`
	// swagger.product.ProjectMemberDto.userEmail.value
	Email *string `json:"email,omitempty"`
	// swagger.product.ProjectMemberDto.lastAccessDt.value
	LastAccessDt *string `json:"lastAccessDt,omitempty"`
	// swagger.product.ProjectMemberDto.modifiedBy.value
	ModifiedBy *string `json:"modifiedBy,omitempty"`
	// swagger.product.ProjectMemberDto.modifiedByEmail.value
	ModifiedByEmail *string `json:"modifiedByEmail,omitempty"`
	// swagger.product.ProjectMemberDto.modifiedByName.value
	ModifiedByName *string `json:"modifiedByName,omitempty"`
	// swagger.product.ProjectMemberDto.modifiedDt.value
	ModifiedDt *string `json:"modifiedDt,omitempty"`
	// swagger.product.ProjectMemberDto.organizationId.value
	OrganizationId *string `json:"organizationId,omitempty"`
	// swagger.product.ProjectMemberDto.positionName.value
	PositionName *string `json:"positionName,omitempty"`
	// swagger.product.ProjectMemberDto.userGroupCount.value
	UserGroupCount *string `json:"userGroupCount,omitempty"`
	// swagger.product.ProjectMemberDto.userId.value
	UserId *string `json:"userId,omitempty"`
	// swagger.product.ProjectMemberDto.userName.value
	UserName *string `json:"userName,omitempty"`
}

ProjectMemberResponseForOpenAPI swagger.product.ProjectMemberDto.description

func NewProjectMemberResponseForOpenAPI

func NewProjectMemberResponseForOpenAPI() *ProjectMemberResponseForOpenAPI

NewProjectMemberResponseForOpenAPI instantiates a new ProjectMemberResponseForOpenAPI object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectMemberResponseForOpenAPIWithDefaults

func NewProjectMemberResponseForOpenAPIWithDefaults() *ProjectMemberResponseForOpenAPI

NewProjectMemberResponseForOpenAPIWithDefaults instantiates a new ProjectMemberResponseForOpenAPI object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectMemberResponseForOpenAPI) GetCompanyName

func (o *ProjectMemberResponseForOpenAPI) GetCompanyName() string

GetCompanyName returns the CompanyName field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetCompanyNameOk

func (o *ProjectMemberResponseForOpenAPI) GetCompanyNameOk() (*string, bool)

GetCompanyNameOk returns a tuple with the CompanyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetCreatedBy

func (o *ProjectMemberResponseForOpenAPI) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetCreatedByEmail

func (o *ProjectMemberResponseForOpenAPI) GetCreatedByEmail() string

GetCreatedByEmail returns the CreatedByEmail field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetCreatedByEmailOk

func (o *ProjectMemberResponseForOpenAPI) GetCreatedByEmailOk() (*string, bool)

GetCreatedByEmailOk returns a tuple with the CreatedByEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetCreatedByName

func (o *ProjectMemberResponseForOpenAPI) GetCreatedByName() string

GetCreatedByName returns the CreatedByName field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetCreatedByNameOk

func (o *ProjectMemberResponseForOpenAPI) GetCreatedByNameOk() (*string, bool)

GetCreatedByNameOk returns a tuple with the CreatedByName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetCreatedByOk

func (o *ProjectMemberResponseForOpenAPI) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetCreatedDt

func (o *ProjectMemberResponseForOpenAPI) GetCreatedDt() string

GetCreatedDt returns the CreatedDt field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetCreatedDtOk

func (o *ProjectMemberResponseForOpenAPI) GetCreatedDtOk() (*string, bool)

GetCreatedDtOk returns a tuple with the CreatedDt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetEmail

GetEmail returns the Email field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetEmailOk

func (o *ProjectMemberResponseForOpenAPI) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetLastAccessDt

func (o *ProjectMemberResponseForOpenAPI) GetLastAccessDt() string

GetLastAccessDt returns the LastAccessDt field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetLastAccessDtOk

func (o *ProjectMemberResponseForOpenAPI) GetLastAccessDtOk() (*string, bool)

GetLastAccessDtOk returns a tuple with the LastAccessDt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetModifiedBy

func (o *ProjectMemberResponseForOpenAPI) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetModifiedByEmail

func (o *ProjectMemberResponseForOpenAPI) GetModifiedByEmail() string

GetModifiedByEmail returns the ModifiedByEmail field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetModifiedByEmailOk

func (o *ProjectMemberResponseForOpenAPI) GetModifiedByEmailOk() (*string, bool)

GetModifiedByEmailOk returns a tuple with the ModifiedByEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetModifiedByName

func (o *ProjectMemberResponseForOpenAPI) GetModifiedByName() string

GetModifiedByName returns the ModifiedByName field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetModifiedByNameOk

func (o *ProjectMemberResponseForOpenAPI) GetModifiedByNameOk() (*string, bool)

GetModifiedByNameOk returns a tuple with the ModifiedByName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetModifiedByOk

func (o *ProjectMemberResponseForOpenAPI) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetModifiedDt

func (o *ProjectMemberResponseForOpenAPI) GetModifiedDt() string

GetModifiedDt returns the ModifiedDt field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetModifiedDtOk

func (o *ProjectMemberResponseForOpenAPI) GetModifiedDtOk() (*string, bool)

GetModifiedDtOk returns a tuple with the ModifiedDt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetOrganizationId

func (o *ProjectMemberResponseForOpenAPI) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetOrganizationIdOk

func (o *ProjectMemberResponseForOpenAPI) GetOrganizationIdOk() (*string, 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 (*ProjectMemberResponseForOpenAPI) GetPositionName

func (o *ProjectMemberResponseForOpenAPI) GetPositionName() string

GetPositionName returns the PositionName field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetPositionNameOk

func (o *ProjectMemberResponseForOpenAPI) GetPositionNameOk() (*string, bool)

GetPositionNameOk returns a tuple with the PositionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetUserGroupCount

func (o *ProjectMemberResponseForOpenAPI) GetUserGroupCount() string

GetUserGroupCount returns the UserGroupCount field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetUserGroupCountOk

func (o *ProjectMemberResponseForOpenAPI) GetUserGroupCountOk() (*string, bool)

GetUserGroupCountOk returns a tuple with the UserGroupCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetUserId

func (o *ProjectMemberResponseForOpenAPI) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetUserIdOk

func (o *ProjectMemberResponseForOpenAPI) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) GetUserName

func (o *ProjectMemberResponseForOpenAPI) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*ProjectMemberResponseForOpenAPI) GetUserNameOk

func (o *ProjectMemberResponseForOpenAPI) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMemberResponseForOpenAPI) HasCompanyName

func (o *ProjectMemberResponseForOpenAPI) HasCompanyName() bool

HasCompanyName returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasCreatedBy

func (o *ProjectMemberResponseForOpenAPI) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasCreatedByEmail

func (o *ProjectMemberResponseForOpenAPI) HasCreatedByEmail() bool

HasCreatedByEmail returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasCreatedByName

func (o *ProjectMemberResponseForOpenAPI) HasCreatedByName() bool

HasCreatedByName returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasCreatedDt

func (o *ProjectMemberResponseForOpenAPI) HasCreatedDt() bool

HasCreatedDt returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasEmail

func (o *ProjectMemberResponseForOpenAPI) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasLastAccessDt

func (o *ProjectMemberResponseForOpenAPI) HasLastAccessDt() bool

HasLastAccessDt returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasModifiedBy

func (o *ProjectMemberResponseForOpenAPI) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasModifiedByEmail

func (o *ProjectMemberResponseForOpenAPI) HasModifiedByEmail() bool

HasModifiedByEmail returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasModifiedByName

func (o *ProjectMemberResponseForOpenAPI) HasModifiedByName() bool

HasModifiedByName returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasModifiedDt

func (o *ProjectMemberResponseForOpenAPI) HasModifiedDt() bool

HasModifiedDt returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasOrganizationId

func (o *ProjectMemberResponseForOpenAPI) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasPositionName

func (o *ProjectMemberResponseForOpenAPI) HasPositionName() bool

HasPositionName returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasUserGroupCount

func (o *ProjectMemberResponseForOpenAPI) HasUserGroupCount() bool

HasUserGroupCount returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasUserId

func (o *ProjectMemberResponseForOpenAPI) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*ProjectMemberResponseForOpenAPI) HasUserName

func (o *ProjectMemberResponseForOpenAPI) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (ProjectMemberResponseForOpenAPI) MarshalJSON

func (o ProjectMemberResponseForOpenAPI) MarshalJSON() ([]byte, error)

func (*ProjectMemberResponseForOpenAPI) SetCompanyName

func (o *ProjectMemberResponseForOpenAPI) SetCompanyName(v string)

SetCompanyName gets a reference to the given string and assigns it to the CompanyName field.

func (*ProjectMemberResponseForOpenAPI) SetCreatedBy

func (o *ProjectMemberResponseForOpenAPI) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*ProjectMemberResponseForOpenAPI) SetCreatedByEmail

func (o *ProjectMemberResponseForOpenAPI) SetCreatedByEmail(v string)

SetCreatedByEmail gets a reference to the given string and assigns it to the CreatedByEmail field.

func (*ProjectMemberResponseForOpenAPI) SetCreatedByName

func (o *ProjectMemberResponseForOpenAPI) SetCreatedByName(v string)

SetCreatedByName gets a reference to the given string and assigns it to the CreatedByName field.

func (*ProjectMemberResponseForOpenAPI) SetCreatedDt

func (o *ProjectMemberResponseForOpenAPI) SetCreatedDt(v string)

SetCreatedDt gets a reference to the given string and assigns it to the CreatedDt field.

func (*ProjectMemberResponseForOpenAPI) SetEmail

func (o *ProjectMemberResponseForOpenAPI) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*ProjectMemberResponseForOpenAPI) SetLastAccessDt

func (o *ProjectMemberResponseForOpenAPI) SetLastAccessDt(v string)

SetLastAccessDt gets a reference to the given string and assigns it to the LastAccessDt field.

func (*ProjectMemberResponseForOpenAPI) SetModifiedBy

func (o *ProjectMemberResponseForOpenAPI) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*ProjectMemberResponseForOpenAPI) SetModifiedByEmail

func (o *ProjectMemberResponseForOpenAPI) SetModifiedByEmail(v string)

SetModifiedByEmail gets a reference to the given string and assigns it to the ModifiedByEmail field.

func (*ProjectMemberResponseForOpenAPI) SetModifiedByName

func (o *ProjectMemberResponseForOpenAPI) SetModifiedByName(v string)

SetModifiedByName gets a reference to the given string and assigns it to the ModifiedByName field.

func (*ProjectMemberResponseForOpenAPI) SetModifiedDt

func (o *ProjectMemberResponseForOpenAPI) SetModifiedDt(v string)

SetModifiedDt gets a reference to the given string and assigns it to the ModifiedDt field.

func (*ProjectMemberResponseForOpenAPI) SetOrganizationId

func (o *ProjectMemberResponseForOpenAPI) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*ProjectMemberResponseForOpenAPI) SetPositionName

func (o *ProjectMemberResponseForOpenAPI) SetPositionName(v string)

SetPositionName gets a reference to the given string and assigns it to the PositionName field.

func (*ProjectMemberResponseForOpenAPI) SetUserGroupCount

func (o *ProjectMemberResponseForOpenAPI) SetUserGroupCount(v string)

SetUserGroupCount gets a reference to the given string and assigns it to the UserGroupCount field.

func (*ProjectMemberResponseForOpenAPI) SetUserId

func (o *ProjectMemberResponseForOpenAPI) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (*ProjectMemberResponseForOpenAPI) SetUserName

func (o *ProjectMemberResponseForOpenAPI) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (ProjectMemberResponseForOpenAPI) ToMap

func (o ProjectMemberResponseForOpenAPI) ToMap() (map[string]interface{}, error)

type RangeThreshold

type RangeThreshold struct {
	// 최대 비교 연산자
	MaxComparisonOperator string `json:"maxComparisonOperator"`
	// 최대 값
	MaxValue float64 `json:"maxValue"`
	// 최소 비교 연산자
	MinComparisonOperator string `json:"minComparisonOperator"`
	// 최소 값
	MinValue float64 `json:"minValue"`
}

RangeThreshold 이벤트 임계치 중 범위 임계치 정보 객체

func NewRangeThreshold

func NewRangeThreshold(maxComparisonOperator string, maxValue float64, minComparisonOperator string, minValue float64) *RangeThreshold

NewRangeThreshold instantiates a new RangeThreshold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRangeThresholdWithDefaults

func NewRangeThresholdWithDefaults() *RangeThreshold

NewRangeThresholdWithDefaults instantiates a new RangeThreshold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RangeThreshold) GetMaxComparisonOperator

func (o *RangeThreshold) GetMaxComparisonOperator() string

GetMaxComparisonOperator returns the MaxComparisonOperator field value

func (*RangeThreshold) GetMaxComparisonOperatorOk

func (o *RangeThreshold) GetMaxComparisonOperatorOk() (*string, bool)

GetMaxComparisonOperatorOk returns a tuple with the MaxComparisonOperator field value and a boolean to check if the value has been set.

func (*RangeThreshold) GetMaxValue

func (o *RangeThreshold) GetMaxValue() float64

GetMaxValue returns the MaxValue field value

func (*RangeThreshold) GetMaxValueOk

func (o *RangeThreshold) GetMaxValueOk() (*float64, bool)

GetMaxValueOk returns a tuple with the MaxValue field value and a boolean to check if the value has been set.

func (*RangeThreshold) GetMinComparisonOperator

func (o *RangeThreshold) GetMinComparisonOperator() string

GetMinComparisonOperator returns the MinComparisonOperator field value

func (*RangeThreshold) GetMinComparisonOperatorOk

func (o *RangeThreshold) GetMinComparisonOperatorOk() (*string, bool)

GetMinComparisonOperatorOk returns a tuple with the MinComparisonOperator field value and a boolean to check if the value has been set.

func (*RangeThreshold) GetMinValue

func (o *RangeThreshold) GetMinValue() float64

GetMinValue returns the MinValue field value

func (*RangeThreshold) GetMinValueOk

func (o *RangeThreshold) GetMinValueOk() (*float64, bool)

GetMinValueOk returns a tuple with the MinValue field value and a boolean to check if the value has been set.

func (RangeThreshold) MarshalJSON

func (o RangeThreshold) MarshalJSON() ([]byte, error)

func (*RangeThreshold) SetMaxComparisonOperator

func (o *RangeThreshold) SetMaxComparisonOperator(v string)

SetMaxComparisonOperator sets field value

func (*RangeThreshold) SetMaxValue

func (o *RangeThreshold) SetMaxValue(v float64)

SetMaxValue sets field value

func (*RangeThreshold) SetMinComparisonOperator

func (o *RangeThreshold) SetMinComparisonOperator(v string)

SetMinComparisonOperator sets field value

func (*RangeThreshold) SetMinValue

func (o *RangeThreshold) SetMinValue(v float64)

SetMinValue sets field value

func (RangeThreshold) ToMap

func (o RangeThreshold) ToMap() (map[string]interface{}, error)

func (*RangeThreshold) UnmarshalJSON

func (o *RangeThreshold) UnmarshalJSON(data []byte) (err error)

type SCPCredential

type SCPCredential struct {
	AccessKey string
	SecretKey string
}

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 SingleThreshold

type SingleThreshold struct {
	// 비교 연산자
	ComparisonOperator string `json:"comparisonOperator"`
	// 값
	Value float64 `json:"value"`
}

SingleThreshold 이벤트 임계치 중 단일 임계치 정보 객체

func NewSingleThreshold

func NewSingleThreshold(comparisonOperator string, value float64) *SingleThreshold

NewSingleThreshold instantiates a new SingleThreshold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleThresholdWithDefaults

func NewSingleThresholdWithDefaults() *SingleThreshold

NewSingleThresholdWithDefaults instantiates a new SingleThreshold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleThreshold) GetComparisonOperator

func (o *SingleThreshold) GetComparisonOperator() string

GetComparisonOperator returns the ComparisonOperator field value

func (*SingleThreshold) GetComparisonOperatorOk

func (o *SingleThreshold) GetComparisonOperatorOk() (*string, bool)

GetComparisonOperatorOk returns a tuple with the ComparisonOperator field value and a boolean to check if the value has been set.

func (*SingleThreshold) GetValue

func (o *SingleThreshold) GetValue() float64

GetValue returns the Value field value

func (*SingleThreshold) GetValueOk

func (o *SingleThreshold) GetValueOk() (*float64, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (SingleThreshold) MarshalJSON

func (o SingleThreshold) MarshalJSON() ([]byte, error)

func (*SingleThreshold) SetComparisonOperator

func (o *SingleThreshold) SetComparisonOperator(v string)

SetComparisonOperator sets field value

func (*SingleThreshold) SetValue

func (o *SingleThreshold) SetValue(v float64)

SetValue sets field value

func (SingleThreshold) ToMap

func (o SingleThreshold) ToMap() (map[string]interface{}, error)

func (*SingleThreshold) UnmarshalJSON

func (o *SingleThreshold) UnmarshalJSON(data []byte) (err error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL