Name | Type | Description | Notes |
---|---|---|---|
OrgId | string | The ID of the owning organization. | |
Name | Pointer to string | The organization name. | [optional] |
CreatedTimestamp | Pointer to int64 | The organization's creation time in Unix timestamp format, measured in milliseconds. | [optional] |
func NewOrgInfo(orgId string, ) *OrgInfo
NewOrgInfo instantiates a new OrgInfo 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 NewOrgInfoWithDefaults() *OrgInfo
NewOrgInfoWithDefaults instantiates a new OrgInfo 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 *OrgInfo) GetOrgId() string
GetOrgId returns the OrgId field if non-nil, zero value otherwise.
func (o *OrgInfo) GetOrgIdOk() (*string, bool)
GetOrgIdOk returns a tuple with the OrgId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrgInfo) SetOrgId(v string)
SetOrgId sets OrgId field to given value.
func (o *OrgInfo) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *OrgInfo) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrgInfo) SetName(v string)
SetName sets Name field to given value.
func (o *OrgInfo) HasName() bool
HasName returns a boolean if a field has been set.
func (o *OrgInfo) GetCreatedTimestamp() int64
GetCreatedTimestamp returns the CreatedTimestamp field if non-nil, zero value otherwise.
func (o *OrgInfo) GetCreatedTimestampOk() (*int64, bool)
GetCreatedTimestampOk returns a tuple with the CreatedTimestamp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrgInfo) SetCreatedTimestamp(v int64)
SetCreatedTimestamp sets CreatedTimestamp field to given value.
func (o *OrgInfo) HasCreatedTimestamp() bool
HasCreatedTimestamp returns a boolean if a field has been set.