| 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. |
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
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
func (o *MemberImportItem) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
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.
func (o *MemberImportItem) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *MemberImportItem) HasMessage() bool
HasMessage returns a boolean if a field has been set.
func (o *MemberImportItem) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
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.
func (o *MemberImportItem) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *MemberImportItem) GetValue() string
GetValue returns the Value field if non-nil, zero value otherwise.
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.
func (o *MemberImportItem) SetValue(v string)
SetValue sets Value field to given value.