Name | Type | Description | Notes |
---|---|---|---|
Object | string | Type of Object, always equals to "organization" | |
Id | string | Unique identifier for the organization | |
Title | string | Name of the organization | |
EmailDomains | []string | ||
Type | OrganizationType | ||
UseCase | Pointer to OrganizationUseCase | [optional] | |
CommunityType | Pointer to OrganizationCommunityType | [optional] | |
Urls | OrganizationUrls |
func NewOrganization(object string, id string, title string, emailDomains []string, type_ OrganizationType, urls OrganizationUrls, ) *Organization
NewOrganization instantiates a new Organization 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 NewOrganizationWithDefaults() *Organization
NewOrganizationWithDefaults instantiates a new Organization 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 *Organization) GetObject() string
GetObject returns the Object field if non-nil, zero value otherwise.
func (o *Organization) GetObjectOk() (*string, bool)
GetObjectOk returns a tuple with the Object field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetObject(v string)
SetObject sets Object field to given value.
func (o *Organization) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Organization) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetId(v string)
SetId sets Id field to given value.
func (o *Organization) GetTitle() string
GetTitle returns the Title field if non-nil, zero value otherwise.
func (o *Organization) GetTitleOk() (*string, bool)
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetTitle(v string)
SetTitle sets Title field to given value.
func (o *Organization) GetEmailDomains() []string
GetEmailDomains returns the EmailDomains field if non-nil, zero value otherwise.
func (o *Organization) GetEmailDomainsOk() (*[]string, bool)
GetEmailDomainsOk returns a tuple with the EmailDomains field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetEmailDomains(v []string)
SetEmailDomains sets EmailDomains field to given value.
func (o *Organization) GetType() OrganizationType
GetType returns the Type field if non-nil, zero value otherwise.
func (o *Organization) GetTypeOk() (*OrganizationType, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetType(v OrganizationType)
SetType sets Type field to given value.
func (o *Organization) GetUseCase() OrganizationUseCase
GetUseCase returns the UseCase field if non-nil, zero value otherwise.
func (o *Organization) GetUseCaseOk() (*OrganizationUseCase, bool)
GetUseCaseOk returns a tuple with the UseCase field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetUseCase(v OrganizationUseCase)
SetUseCase sets UseCase field to given value.
func (o *Organization) HasUseCase() bool
HasUseCase returns a boolean if a field has been set.
func (o *Organization) GetCommunityType() OrganizationCommunityType
GetCommunityType returns the CommunityType field if non-nil, zero value otherwise.
func (o *Organization) GetCommunityTypeOk() (*OrganizationCommunityType, bool)
GetCommunityTypeOk returns a tuple with the CommunityType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetCommunityType(v OrganizationCommunityType)
SetCommunityType sets CommunityType field to given value.
func (o *Organization) HasCommunityType() bool
HasCommunityType returns a boolean if a field has been set.
func (o *Organization) GetUrls() OrganizationUrls
GetUrls returns the Urls field if non-nil, zero value otherwise.
func (o *Organization) GetUrlsOk() (*OrganizationUrls, bool)
GetUrlsOk returns a tuple with the Urls field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Organization) SetUrls(v OrganizationUrls)
SetUrls sets Urls field to given value.