Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.54 KB

ParentChangedEvent.md

File metadata and controls

93 lines (50 loc) · 2.54 KB

ParentChangedEvent

Properties

Name Type Description Notes
UserId string 変更者UUID
Before string 変更前親チャンネルUUID
After string 変更後親チャンネルUUID

Methods

NewParentChangedEvent

func NewParentChangedEvent(userId string, before string, after string, ) *ParentChangedEvent

NewParentChangedEvent instantiates a new ParentChangedEvent 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

NewParentChangedEventWithDefaults

func NewParentChangedEventWithDefaults() *ParentChangedEvent

NewParentChangedEventWithDefaults instantiates a new ParentChangedEvent 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

GetUserId

func (o *ParentChangedEvent) GetUserId() string

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

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

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

SetUserId

func (o *ParentChangedEvent) SetUserId(v string)

SetUserId sets UserId field to given value.

GetBefore

func (o *ParentChangedEvent) GetBefore() string

GetBefore returns the Before field if non-nil, zero value otherwise.

GetBeforeOk

func (o *ParentChangedEvent) GetBeforeOk() (*string, bool)

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

SetBefore

func (o *ParentChangedEvent) SetBefore(v string)

SetBefore sets Before field to given value.

GetAfter

func (o *ParentChangedEvent) GetAfter() string

GetAfter returns the After field if non-nil, zero value otherwise.

GetAfterOk

func (o *ParentChangedEvent) GetAfterOk() (*string, bool)

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

SetAfter

func (o *ParentChangedEvent) SetAfter(v string)

SetAfter sets After field to given value.

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