github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/docs/ContractUser.md (about)

     1  # ContractUser
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Id** | Pointer to **string** |  | [optional] 
     8  **Type** | Pointer to **string** |  | [optional] 
     9  **Name** | Pointer to **string** |  | [optional] 
    10  **FamilyName** | Pointer to **string** |  | [optional] 
    11  **GivenName** | Pointer to **string** |  | [optional] 
    12  **PhoneticFamilyName** | Pointer to **string** |  | [optional] 
    13  **PhoneticGivenName** | Pointer to **string** |  | [optional] 
    14  **PhoneNumber** | Pointer to **string** |  | [optional] 
    15  **PhoneNumber2** | Pointer to **string** |  | [optional] 
    16  **Language** | Pointer to **string** | ISO639 | [optional] 
    17  **Picture** | Pointer to **string** | uri | [optional] 
    18  **Email** | Pointer to **string** |  | [optional] 
    19  **Emails** | Pointer to **[]string** |  | [optional] 
    20  **Role** | Pointer to **string** |  | [optional] 
    21  **Category** | Pointer to **string** |  | [optional] 
    22  **Address** | Pointer to [**ContractOwnerAddress**](ContractOwnerAddress.md) |  | [optional] 
    23  **License** | Pointer to [**ContractUserLicense**](ContractUserLicense.md) |  | [optional] 
    24  
    25  ## Methods
    26  
    27  ### NewContractUser
    28  
    29  `func NewContractUser() *ContractUser`
    30  
    31  NewContractUser instantiates a new ContractUser object
    32  This constructor will assign default values to properties that have it defined,
    33  and makes sure properties required by API are set, but the set of arguments
    34  will change when the set of required properties is changed
    35  
    36  ### NewContractUserWithDefaults
    37  
    38  `func NewContractUserWithDefaults() *ContractUser`
    39  
    40  NewContractUserWithDefaults instantiates a new ContractUser object
    41  This constructor will only assign default values to properties that have it defined,
    42  but it doesn't guarantee that properties required by API are set
    43  
    44  ### GetId
    45  
    46  `func (o *ContractUser) GetId() string`
    47  
    48  GetId returns the Id field if non-nil, zero value otherwise.
    49  
    50  ### GetIdOk
    51  
    52  `func (o *ContractUser) GetIdOk() (*string, bool)`
    53  
    54  GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
    55  and a boolean to check if the value has been set.
    56  
    57  ### SetId
    58  
    59  `func (o *ContractUser) SetId(v string)`
    60  
    61  SetId sets Id field to given value.
    62  
    63  ### HasId
    64  
    65  `func (o *ContractUser) HasId() bool`
    66  
    67  HasId returns a boolean if a field has been set.
    68  
    69  ### GetType
    70  
    71  `func (o *ContractUser) GetType() string`
    72  
    73  GetType returns the Type field if non-nil, zero value otherwise.
    74  
    75  ### GetTypeOk
    76  
    77  `func (o *ContractUser) GetTypeOk() (*string, bool)`
    78  
    79  GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
    80  and a boolean to check if the value has been set.
    81  
    82  ### SetType
    83  
    84  `func (o *ContractUser) SetType(v string)`
    85  
    86  SetType sets Type field to given value.
    87  
    88  ### HasType
    89  
    90  `func (o *ContractUser) HasType() bool`
    91  
    92  HasType returns a boolean if a field has been set.
    93  
    94  ### GetName
    95  
    96  `func (o *ContractUser) GetName() string`
    97  
    98  GetName returns the Name field if non-nil, zero value otherwise.
    99  
   100  ### GetNameOk
   101  
   102  `func (o *ContractUser) GetNameOk() (*string, bool)`
   103  
   104  GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
   105  and a boolean to check if the value has been set.
   106  
   107  ### SetName
   108  
   109  `func (o *ContractUser) SetName(v string)`
   110  
   111  SetName sets Name field to given value.
   112  
   113  ### HasName
   114  
   115  `func (o *ContractUser) HasName() bool`
   116  
   117  HasName returns a boolean if a field has been set.
   118  
   119  ### GetFamilyName
   120  
   121  `func (o *ContractUser) GetFamilyName() string`
   122  
   123  GetFamilyName returns the FamilyName field if non-nil, zero value otherwise.
   124  
   125  ### GetFamilyNameOk
   126  
   127  `func (o *ContractUser) GetFamilyNameOk() (*string, bool)`
   128  
   129  GetFamilyNameOk returns a tuple with the FamilyName field if it's non-nil, zero value otherwise
   130  and a boolean to check if the value has been set.
   131  
   132  ### SetFamilyName
   133  
   134  `func (o *ContractUser) SetFamilyName(v string)`
   135  
   136  SetFamilyName sets FamilyName field to given value.
   137  
   138  ### HasFamilyName
   139  
   140  `func (o *ContractUser) HasFamilyName() bool`
   141  
   142  HasFamilyName returns a boolean if a field has been set.
   143  
   144  ### GetGivenName
   145  
   146  `func (o *ContractUser) GetGivenName() string`
   147  
   148  GetGivenName returns the GivenName field if non-nil, zero value otherwise.
   149  
   150  ### GetGivenNameOk
   151  
   152  `func (o *ContractUser) GetGivenNameOk() (*string, bool)`
   153  
   154  GetGivenNameOk returns a tuple with the GivenName field if it's non-nil, zero value otherwise
   155  and a boolean to check if the value has been set.
   156  
   157  ### SetGivenName
   158  
   159  `func (o *ContractUser) SetGivenName(v string)`
   160  
   161  SetGivenName sets GivenName field to given value.
   162  
   163  ### HasGivenName
   164  
   165  `func (o *ContractUser) HasGivenName() bool`
   166  
   167  HasGivenName returns a boolean if a field has been set.
   168  
   169  ### GetPhoneticFamilyName
   170  
   171  `func (o *ContractUser) GetPhoneticFamilyName() string`
   172  
   173  GetPhoneticFamilyName returns the PhoneticFamilyName field if non-nil, zero value otherwise.
   174  
   175  ### GetPhoneticFamilyNameOk
   176  
   177  `func (o *ContractUser) GetPhoneticFamilyNameOk() (*string, bool)`
   178  
   179  GetPhoneticFamilyNameOk returns a tuple with the PhoneticFamilyName field if it's non-nil, zero value otherwise
   180  and a boolean to check if the value has been set.
   181  
   182  ### SetPhoneticFamilyName
   183  
   184  `func (o *ContractUser) SetPhoneticFamilyName(v string)`
   185  
   186  SetPhoneticFamilyName sets PhoneticFamilyName field to given value.
   187  
   188  ### HasPhoneticFamilyName
   189  
   190  `func (o *ContractUser) HasPhoneticFamilyName() bool`
   191  
   192  HasPhoneticFamilyName returns a boolean if a field has been set.
   193  
   194  ### GetPhoneticGivenName
   195  
   196  `func (o *ContractUser) GetPhoneticGivenName() string`
   197  
   198  GetPhoneticGivenName returns the PhoneticGivenName field if non-nil, zero value otherwise.
   199  
   200  ### GetPhoneticGivenNameOk
   201  
   202  `func (o *ContractUser) GetPhoneticGivenNameOk() (*string, bool)`
   203  
   204  GetPhoneticGivenNameOk returns a tuple with the PhoneticGivenName field if it's non-nil, zero value otherwise
   205  and a boolean to check if the value has been set.
   206  
   207  ### SetPhoneticGivenName
   208  
   209  `func (o *ContractUser) SetPhoneticGivenName(v string)`
   210  
   211  SetPhoneticGivenName sets PhoneticGivenName field to given value.
   212  
   213  ### HasPhoneticGivenName
   214  
   215  `func (o *ContractUser) HasPhoneticGivenName() bool`
   216  
   217  HasPhoneticGivenName returns a boolean if a field has been set.
   218  
   219  ### GetPhoneNumber
   220  
   221  `func (o *ContractUser) GetPhoneNumber() string`
   222  
   223  GetPhoneNumber returns the PhoneNumber field if non-nil, zero value otherwise.
   224  
   225  ### GetPhoneNumberOk
   226  
   227  `func (o *ContractUser) GetPhoneNumberOk() (*string, bool)`
   228  
   229  GetPhoneNumberOk returns a tuple with the PhoneNumber field if it's non-nil, zero value otherwise
   230  and a boolean to check if the value has been set.
   231  
   232  ### SetPhoneNumber
   233  
   234  `func (o *ContractUser) SetPhoneNumber(v string)`
   235  
   236  SetPhoneNumber sets PhoneNumber field to given value.
   237  
   238  ### HasPhoneNumber
   239  
   240  `func (o *ContractUser) HasPhoneNumber() bool`
   241  
   242  HasPhoneNumber returns a boolean if a field has been set.
   243  
   244  ### GetPhoneNumber2
   245  
   246  `func (o *ContractUser) GetPhoneNumber2() string`
   247  
   248  GetPhoneNumber2 returns the PhoneNumber2 field if non-nil, zero value otherwise.
   249  
   250  ### GetPhoneNumber2Ok
   251  
   252  `func (o *ContractUser) GetPhoneNumber2Ok() (*string, bool)`
   253  
   254  GetPhoneNumber2Ok returns a tuple with the PhoneNumber2 field if it's non-nil, zero value otherwise
   255  and a boolean to check if the value has been set.
   256  
   257  ### SetPhoneNumber2
   258  
   259  `func (o *ContractUser) SetPhoneNumber2(v string)`
   260  
   261  SetPhoneNumber2 sets PhoneNumber2 field to given value.
   262  
   263  ### HasPhoneNumber2
   264  
   265  `func (o *ContractUser) HasPhoneNumber2() bool`
   266  
   267  HasPhoneNumber2 returns a boolean if a field has been set.
   268  
   269  ### GetLanguage
   270  
   271  `func (o *ContractUser) GetLanguage() string`
   272  
   273  GetLanguage returns the Language field if non-nil, zero value otherwise.
   274  
   275  ### GetLanguageOk
   276  
   277  `func (o *ContractUser) GetLanguageOk() (*string, bool)`
   278  
   279  GetLanguageOk returns a tuple with the Language field if it's non-nil, zero value otherwise
   280  and a boolean to check if the value has been set.
   281  
   282  ### SetLanguage
   283  
   284  `func (o *ContractUser) SetLanguage(v string)`
   285  
   286  SetLanguage sets Language field to given value.
   287  
   288  ### HasLanguage
   289  
   290  `func (o *ContractUser) HasLanguage() bool`
   291  
   292  HasLanguage returns a boolean if a field has been set.
   293  
   294  ### GetPicture
   295  
   296  `func (o *ContractUser) GetPicture() string`
   297  
   298  GetPicture returns the Picture field if non-nil, zero value otherwise.
   299  
   300  ### GetPictureOk
   301  
   302  `func (o *ContractUser) GetPictureOk() (*string, bool)`
   303  
   304  GetPictureOk returns a tuple with the Picture field if it's non-nil, zero value otherwise
   305  and a boolean to check if the value has been set.
   306  
   307  ### SetPicture
   308  
   309  `func (o *ContractUser) SetPicture(v string)`
   310  
   311  SetPicture sets Picture field to given value.
   312  
   313  ### HasPicture
   314  
   315  `func (o *ContractUser) HasPicture() bool`
   316  
   317  HasPicture returns a boolean if a field has been set.
   318  
   319  ### GetEmail
   320  
   321  `func (o *ContractUser) GetEmail() string`
   322  
   323  GetEmail returns the Email field if non-nil, zero value otherwise.
   324  
   325  ### GetEmailOk
   326  
   327  `func (o *ContractUser) GetEmailOk() (*string, bool)`
   328  
   329  GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
   330  and a boolean to check if the value has been set.
   331  
   332  ### SetEmail
   333  
   334  `func (o *ContractUser) SetEmail(v string)`
   335  
   336  SetEmail sets Email field to given value.
   337  
   338  ### HasEmail
   339  
   340  `func (o *ContractUser) HasEmail() bool`
   341  
   342  HasEmail returns a boolean if a field has been set.
   343  
   344  ### GetEmails
   345  
   346  `func (o *ContractUser) GetEmails() []string`
   347  
   348  GetEmails returns the Emails field if non-nil, zero value otherwise.
   349  
   350  ### GetEmailsOk
   351  
   352  `func (o *ContractUser) GetEmailsOk() (*[]string, bool)`
   353  
   354  GetEmailsOk returns a tuple with the Emails field if it's non-nil, zero value otherwise
   355  and a boolean to check if the value has been set.
   356  
   357  ### SetEmails
   358  
   359  `func (o *ContractUser) SetEmails(v []string)`
   360  
   361  SetEmails sets Emails field to given value.
   362  
   363  ### HasEmails
   364  
   365  `func (o *ContractUser) HasEmails() bool`
   366  
   367  HasEmails returns a boolean if a field has been set.
   368  
   369  ### GetRole
   370  
   371  `func (o *ContractUser) GetRole() string`
   372  
   373  GetRole returns the Role field if non-nil, zero value otherwise.
   374  
   375  ### GetRoleOk
   376  
   377  `func (o *ContractUser) GetRoleOk() (*string, bool)`
   378  
   379  GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
   380  and a boolean to check if the value has been set.
   381  
   382  ### SetRole
   383  
   384  `func (o *ContractUser) SetRole(v string)`
   385  
   386  SetRole sets Role field to given value.
   387  
   388  ### HasRole
   389  
   390  `func (o *ContractUser) HasRole() bool`
   391  
   392  HasRole returns a boolean if a field has been set.
   393  
   394  ### GetCategory
   395  
   396  `func (o *ContractUser) GetCategory() string`
   397  
   398  GetCategory returns the Category field if non-nil, zero value otherwise.
   399  
   400  ### GetCategoryOk
   401  
   402  `func (o *ContractUser) GetCategoryOk() (*string, bool)`
   403  
   404  GetCategoryOk returns a tuple with the Category field if it's non-nil, zero value otherwise
   405  and a boolean to check if the value has been set.
   406  
   407  ### SetCategory
   408  
   409  `func (o *ContractUser) SetCategory(v string)`
   410  
   411  SetCategory sets Category field to given value.
   412  
   413  ### HasCategory
   414  
   415  `func (o *ContractUser) HasCategory() bool`
   416  
   417  HasCategory returns a boolean if a field has been set.
   418  
   419  ### GetAddress
   420  
   421  `func (o *ContractUser) GetAddress() ContractOwnerAddress`
   422  
   423  GetAddress returns the Address field if non-nil, zero value otherwise.
   424  
   425  ### GetAddressOk
   426  
   427  `func (o *ContractUser) GetAddressOk() (*ContractOwnerAddress, bool)`
   428  
   429  GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise
   430  and a boolean to check if the value has been set.
   431  
   432  ### SetAddress
   433  
   434  `func (o *ContractUser) SetAddress(v ContractOwnerAddress)`
   435  
   436  SetAddress sets Address field to given value.
   437  
   438  ### HasAddress
   439  
   440  `func (o *ContractUser) HasAddress() bool`
   441  
   442  HasAddress returns a boolean if a field has been set.
   443  
   444  ### GetLicense
   445  
   446  `func (o *ContractUser) GetLicense() ContractUserLicense`
   447  
   448  GetLicense returns the License field if non-nil, zero value otherwise.
   449  
   450  ### GetLicenseOk
   451  
   452  `func (o *ContractUser) GetLicenseOk() (*ContractUserLicense, bool)`
   453  
   454  GetLicenseOk returns a tuple with the License field if it's non-nil, zero value otherwise
   455  and a boolean to check if the value has been set.
   456  
   457  ### SetLicense
   458  
   459  `func (o *ContractUser) SetLicense(v ContractUserLicense)`
   460  
   461  SetLicense sets License field to given value.
   462  
   463  ### HasLicense
   464  
   465  `func (o *ContractUser) HasLicense() bool`
   466  
   467  HasLicense returns a boolean if a field has been set.
   468  
   469  
   470  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   471  
   472