Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.37 KB

GroupCreatePayload.md

File metadata and controls

82 lines (45 loc) · 2.37 KB

GroupCreatePayload

Properties

Name Type Description Notes
GroupName Pointer to string [optional]
Participants Pointer to []string [optional]

Methods

NewGroupCreatePayload

func NewGroupCreatePayload() *GroupCreatePayload

NewGroupCreatePayload instantiates a new GroupCreatePayload 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

NewGroupCreatePayloadWithDefaults

func NewGroupCreatePayloadWithDefaults() *GroupCreatePayload

NewGroupCreatePayloadWithDefaults instantiates a new GroupCreatePayload 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

GetGroupName

func (o *GroupCreatePayload) GetGroupName() string

GetGroupName returns the GroupName field if non-nil, zero value otherwise.

GetGroupNameOk

func (o *GroupCreatePayload) GetGroupNameOk() (*string, bool)

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

SetGroupName

func (o *GroupCreatePayload) SetGroupName(v string)

SetGroupName sets GroupName field to given value.

HasGroupName

func (o *GroupCreatePayload) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

GetParticipants

func (o *GroupCreatePayload) GetParticipants() []string

GetParticipants returns the Participants field if non-nil, zero value otherwise.

GetParticipantsOk

func (o *GroupCreatePayload) GetParticipantsOk() (*[]string, bool)

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

SetParticipants

func (o *GroupCreatePayload) SetParticipants(v []string)

SetParticipants sets Participants field to given value.

HasParticipants

func (o *GroupCreatePayload) HasParticipants() bool

HasParticipants returns a boolean if a field has been set.

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