| Name | Type | Description | Notes |
|---|---|---|---|
| Id | string | The ID of the announcement | |
| IsDismissible | bool | true if the announcement is dismissible | |
| Title | string | The title of the announcement | |
| Message | string | The message of the announcement | |
| StartTime | int64 | The start time of the announcement. This is a Unix timestamp in milliseconds. | |
| EndTime | Pointer to int64 | The end time of the announcement. This is a Unix timestamp in milliseconds. | [optional] |
| Severity | string | The severity of the announcement | |
| Status | string | The status of the announcement | |
| Access | Pointer to AnnouncementAccessRep | [optional] | |
| Links | AnnouncementResponseLinks |
func NewAnnouncementResponse(id string, isDismissible bool, title string, message string, startTime int64, severity string, status string, links AnnouncementResponseLinks, ) *AnnouncementResponse
NewAnnouncementResponse instantiates a new AnnouncementResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewAnnouncementResponseWithDefaults() *AnnouncementResponse
NewAnnouncementResponseWithDefaults instantiates a new AnnouncementResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *AnnouncementResponse) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetId(v string)
SetId sets Id field to given value.
func (o *AnnouncementResponse) GetIsDismissible() bool
GetIsDismissible returns the IsDismissible field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetIsDismissibleOk() (*bool, bool)
GetIsDismissibleOk returns a tuple with the IsDismissible field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetIsDismissible(v bool)
SetIsDismissible sets IsDismissible field to given value.
func (o *AnnouncementResponse) GetTitle() string
GetTitle returns the Title field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetTitleOk() (*string, bool)
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetTitle(v string)
SetTitle sets Title field to given value.
func (o *AnnouncementResponse) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) 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.
func (o *AnnouncementResponse) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *AnnouncementResponse) GetStartTime() int64
GetStartTime returns the StartTime field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) 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.
func (o *AnnouncementResponse) SetStartTime(v int64)
SetStartTime sets StartTime field to given value.
func (o *AnnouncementResponse) GetEndTime() int64
GetEndTime returns the EndTime field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) 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.
func (o *AnnouncementResponse) SetEndTime(v int64)
SetEndTime sets EndTime field to given value.
func (o *AnnouncementResponse) HasEndTime() bool
HasEndTime returns a boolean if a field has been set.
func (o *AnnouncementResponse) GetSeverity() string
GetSeverity returns the Severity field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetSeverityOk() (*string, bool)
GetSeverityOk returns a tuple with the Severity field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetSeverity(v string)
SetSeverity sets Severity field to given value.
func (o *AnnouncementResponse) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *AnnouncementResponse) GetAccess() AnnouncementAccessRep
GetAccess returns the Access field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetAccessOk() (*AnnouncementAccessRep, bool)
GetAccessOk returns a tuple with the Access field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetAccess(v AnnouncementAccessRep)
SetAccess sets Access field to given value.
func (o *AnnouncementResponse) HasAccess() bool
HasAccess returns a boolean if a field has been set.
func (o *AnnouncementResponse) GetLinks() AnnouncementResponseLinks
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *AnnouncementResponse) GetLinksOk() (*AnnouncementResponseLinks, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AnnouncementResponse) SetLinks(v AnnouncementResponseLinks)
SetLinks sets Links field to given value.