Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.18 KB

UserDeletedMessage.md

File metadata and controls

108 lines (59 loc) · 3.18 KB

UserDeletedMessage

Properties

Name Type Description Notes
Data Pointer to string Gets or sets the data. [optional]
MessageId Pointer to string Gets or sets the message id. [optional]
MessageType Pointer to SessionMessageType The different kinds of messages that are used in the WebSocket api. [optional] [readonly] [default to SESSIONMESSAGETYPE_USER_DELETED]

Methods

NewUserDeletedMessage

func NewUserDeletedMessage() *UserDeletedMessage

NewUserDeletedMessage instantiates a new UserDeletedMessage 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

NewUserDeletedMessageWithDefaults

func NewUserDeletedMessageWithDefaults() *UserDeletedMessage

NewUserDeletedMessageWithDefaults instantiates a new UserDeletedMessage 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

GetData

func (o *UserDeletedMessage) GetData() string

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *UserDeletedMessage) GetDataOk() (*string, bool)

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

SetData

func (o *UserDeletedMessage) SetData(v string)

SetData sets Data field to given value.

HasData

func (o *UserDeletedMessage) HasData() bool

HasData returns a boolean if a field has been set.

GetMessageId

func (o *UserDeletedMessage) GetMessageId() string

GetMessageId returns the MessageId field if non-nil, zero value otherwise.

GetMessageIdOk

func (o *UserDeletedMessage) GetMessageIdOk() (*string, bool)

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

SetMessageId

func (o *UserDeletedMessage) SetMessageId(v string)

SetMessageId sets MessageId field to given value.

HasMessageId

func (o *UserDeletedMessage) HasMessageId() bool

HasMessageId returns a boolean if a field has been set.

GetMessageType

func (o *UserDeletedMessage) GetMessageType() SessionMessageType

GetMessageType returns the MessageType field if non-nil, zero value otherwise.

GetMessageTypeOk

func (o *UserDeletedMessage) GetMessageTypeOk() (*SessionMessageType, bool)

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

SetMessageType

func (o *UserDeletedMessage) SetMessageType(v SessionMessageType)

SetMessageType sets MessageType field to given value.

HasMessageType

func (o *UserDeletedMessage) HasMessageType() bool

HasMessageType returns a boolean if a field has been set.

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