| Name | Type | Description | Notes |
|---|---|---|---|
| string | The member's email | ||
| Password | Pointer to string | The member's password | [optional] |
| FirstName | Pointer to string | The member's first name | [optional] |
| LastName | Pointer to string | The member's last name | [optional] |
| Role | Pointer to string | The member's initial role, if you are using a base role for the initial role | [optional] |
| CustomRoles | Pointer to []string | An array of the member's initial roles, if you are using custom roles or preset roles provided by LaunchDarkly | [optional] |
| TeamKeys | Pointer to []string | An array of the member's teams | [optional] |
| RoleAttributes | Pointer to map[string][]string | [optional] |
func NewNewMemberForm(email string, ) *NewMemberForm
NewNewMemberForm instantiates a new NewMemberForm 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 NewNewMemberFormWithDefaults() *NewMemberForm
NewNewMemberFormWithDefaults instantiates a new NewMemberForm 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 *NewMemberForm) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetEmailOk() (*string, bool)
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *NewMemberForm) GetPassword() string
GetPassword returns the Password field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetPasswordOk() (*string, bool)
GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetPassword(v string)
SetPassword sets Password field to given value.
func (o *NewMemberForm) HasPassword() bool
HasPassword returns a boolean if a field has been set.
func (o *NewMemberForm) GetFirstName() string
GetFirstName returns the FirstName field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetFirstNameOk() (*string, bool)
GetFirstNameOk returns a tuple with the FirstName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetFirstName(v string)
SetFirstName sets FirstName field to given value.
func (o *NewMemberForm) HasFirstName() bool
HasFirstName returns a boolean if a field has been set.
func (o *NewMemberForm) GetLastName() string
GetLastName returns the LastName field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetLastNameOk() (*string, bool)
GetLastNameOk returns a tuple with the LastName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetLastName(v string)
SetLastName sets LastName field to given value.
func (o *NewMemberForm) HasLastName() bool
HasLastName returns a boolean if a field has been set.
func (o *NewMemberForm) GetRole() string
GetRole returns the Role field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetRoleOk() (*string, bool)
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetRole(v string)
SetRole sets Role field to given value.
func (o *NewMemberForm) HasRole() bool
HasRole returns a boolean if a field has been set.
func (o *NewMemberForm) GetCustomRoles() []string
GetCustomRoles returns the CustomRoles field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetCustomRolesOk() (*[]string, bool)
GetCustomRolesOk returns a tuple with the CustomRoles field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetCustomRoles(v []string)
SetCustomRoles sets CustomRoles field to given value.
func (o *NewMemberForm) HasCustomRoles() bool
HasCustomRoles returns a boolean if a field has been set.
func (o *NewMemberForm) GetTeamKeys() []string
GetTeamKeys returns the TeamKeys field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetTeamKeysOk() (*[]string, bool)
GetTeamKeysOk returns a tuple with the TeamKeys field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetTeamKeys(v []string)
SetTeamKeys sets TeamKeys field to given value.
func (o *NewMemberForm) HasTeamKeys() bool
HasTeamKeys returns a boolean if a field has been set.
func (o *NewMemberForm) GetRoleAttributes() map[string][]string
GetRoleAttributes returns the RoleAttributes field if non-nil, zero value otherwise.
func (o *NewMemberForm) GetRoleAttributesOk() (*map[string][]string, bool)
GetRoleAttributesOk returns a tuple with the RoleAttributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NewMemberForm) SetRoleAttributes(v map[string][]string)
SetRoleAttributes sets RoleAttributes field to given value.
func (o *NewMemberForm) HasRoleAttributes() bool
HasRoleAttributes returns a boolean if a field has been set.