Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 3.11 KB

File metadata and controls

98 lines (53 loc) · 3.11 KB

MemberImportItem

Properties

Name Type Description Notes
Message Pointer to string An error message, including CSV line number, if the <code>status</code> is <code>error</code> [optional]
Status string Whether this member can be successfully imported (<code>success</code>) or not (<code>error</code>). Even if the status is <code>success</code>, members are only added to a team on a <code>201</code> response.
Value string The email address for the member requested to be added to this team. May be blank or an error, such as 'invalid email format', if the email address cannot be found or parsed.

Methods

NewMemberImportItem

func NewMemberImportItem(status string, value string, ) *MemberImportItem

NewMemberImportItem instantiates a new MemberImportItem 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

NewMemberImportItemWithDefaults

func NewMemberImportItemWithDefaults() *MemberImportItem

NewMemberImportItemWithDefaults instantiates a new MemberImportItem 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 *MemberImportItem) GetMessage() string

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

GetMessageOk

func (o *MemberImportItem) 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 *MemberImportItem) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *MemberImportItem) HasMessage() bool

HasMessage returns a boolean if a field has been set.

GetStatus

func (o *MemberImportItem) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *MemberImportItem) 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.

SetStatus

func (o *MemberImportItem) SetStatus(v string)

SetStatus sets Status field to given value.

GetValue

func (o *MemberImportItem) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *MemberImportItem) GetValueOk() (*string, bool)

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

SetValue

func (o *MemberImportItem) SetValue(v string)

SetValue sets Value field to given value.

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