Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Latest commit

 

History

History
102 lines (57 loc) · 2.68 KB

Maintenance.md

File metadata and controls

102 lines (57 loc) · 2.68 KB

Maintenance

Properties

Name Type Description Notes
Message Pointer to NullableString Maintenance message [optional]
Header Pointer to NullableString Maintenance header [optional]

Methods

NewMaintenance

func NewMaintenance() *Maintenance

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

NewMaintenanceWithDefaults

func NewMaintenanceWithDefaults() *Maintenance

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

GetMessage

func (o *Maintenance) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

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

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

SetMessage

func (o *Maintenance) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *Maintenance) HasMessage() bool

HasMessage returns a boolean if a field has been set.

SetMessageNil

func (o *Maintenance) SetMessageNil(b bool)

SetMessageNil sets the value for Message to be an explicit nil

UnsetMessage

func (o *Maintenance) UnsetMessage()

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

GetHeader

func (o *Maintenance) GetHeader() string

GetHeader returns the Header field if non-nil, zero value otherwise.

GetHeaderOk

func (o *Maintenance) GetHeaderOk() (*string, bool)

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

SetHeader

func (o *Maintenance) SetHeader(v string)

SetHeader sets Header field to given value.

HasHeader

func (o *Maintenance) HasHeader() bool

HasHeader returns a boolean if a field has been set.

SetHeaderNil

func (o *Maintenance) SetHeaderNil(b bool)

SetHeaderNil sets the value for Header to be an explicit nil

UnsetHeader

func (o *Maintenance) UnsetHeader()

UnsetHeader ensures that no value is present for Header, not even an explicit nil

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