Skip to content

DeleteGlobalAlertLogListOpenApiVO

Properties

Name Type Description Notes
EndTime int64 The end timeStamp of the delete global alert log, unit: MS.
FilterModule Pointer to string The module of the delete global log; It is required when [selectType] is 'all', filterModule should be a value as follows: 'System' or 'Device'. [optional]
Logs Pointer to []string Select the logs to delete; Log ID list can be obtained from 'Get global alert log list' interface. [optional]
SelectType string Select type of logs. include: include selected logs, exclude: all but exclude selected logs, all: include all logs(Parameter [logs] need input '[]').
StartTime int64 The start timeStamp of the delete global alert log, unit: MS.

Methods

NewDeleteGlobalAlertLogListOpenApiVO

func NewDeleteGlobalAlertLogListOpenApiVO(endTime int64, selectType string, startTime int64, ) *DeleteGlobalAlertLogListOpenApiVO

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

NewDeleteGlobalAlertLogListOpenApiVOWithDefaults

func NewDeleteGlobalAlertLogListOpenApiVOWithDefaults() *DeleteGlobalAlertLogListOpenApiVO

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

GetEndTime

func (o *DeleteGlobalAlertLogListOpenApiVO) GetEndTime() int64

GetEndTime returns the EndTime field if non-nil, zero value otherwise.

GetEndTimeOk

func (o *DeleteGlobalAlertLogListOpenApiVO) GetEndTimeOk() (*int64, bool)

GetEndTimeOk returns a tuple with the EndTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetEndTime

func (o *DeleteGlobalAlertLogListOpenApiVO) SetEndTime(v int64)

SetEndTime sets EndTime field to given value.

GetFilterModule

func (o *DeleteGlobalAlertLogListOpenApiVO) GetFilterModule() string

GetFilterModule returns the FilterModule field if non-nil, zero value otherwise.

GetFilterModuleOk

func (o *DeleteGlobalAlertLogListOpenApiVO) GetFilterModuleOk() (*string, bool)

GetFilterModuleOk returns a tuple with the FilterModule field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetFilterModule

func (o *DeleteGlobalAlertLogListOpenApiVO) SetFilterModule(v string)

SetFilterModule sets FilterModule field to given value.

HasFilterModule

func (o *DeleteGlobalAlertLogListOpenApiVO) HasFilterModule() bool

HasFilterModule returns a boolean if a field has been set.

GetLogs

func (o *DeleteGlobalAlertLogListOpenApiVO) GetLogs() []string

GetLogs returns the Logs field if non-nil, zero value otherwise.

GetLogsOk

func (o *DeleteGlobalAlertLogListOpenApiVO) GetLogsOk() (*[]string, bool)

GetLogsOk returns a tuple with the Logs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLogs

func (o *DeleteGlobalAlertLogListOpenApiVO) SetLogs(v []string)

SetLogs sets Logs field to given value.

HasLogs

func (o *DeleteGlobalAlertLogListOpenApiVO) HasLogs() bool

HasLogs returns a boolean if a field has been set.

GetSelectType

func (o *DeleteGlobalAlertLogListOpenApiVO) GetSelectType() string

GetSelectType returns the SelectType field if non-nil, zero value otherwise.

GetSelectTypeOk

func (o *DeleteGlobalAlertLogListOpenApiVO) GetSelectTypeOk() (*string, bool)

GetSelectTypeOk returns a tuple with the SelectType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSelectType

func (o *DeleteGlobalAlertLogListOpenApiVO) SetSelectType(v string)

SetSelectType sets SelectType field to given value.

GetStartTime

func (o *DeleteGlobalAlertLogListOpenApiVO) GetStartTime() int64

GetStartTime returns the StartTime field if non-nil, zero value otherwise.

GetStartTimeOk

func (o *DeleteGlobalAlertLogListOpenApiVO) GetStartTimeOk() (*int64, bool)

GetStartTimeOk returns a tuple with the StartTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetStartTime

func (o *DeleteGlobalAlertLogListOpenApiVO) SetStartTime(v int64)

SetStartTime sets StartTime field to given value.

[Back to Model list] [Back to API list] [Back to README]