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

     1  # GroupReplaceRequest
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **ParentGroupId** | Pointer to **string** |  | [optional] 
     8  **Name** | Pointer to **string** |  | [optional] 
     9  **Type** | Pointer to **string** |  | [optional] 
    10  **PhoneNumber** | Pointer to **string** |  | [optional] 
    11  **PhoneNumber2** | Pointer to **string** |  | [optional] 
    12  **Address** | Pointer to [**GroupAddress**](Group_address.md) |  | [optional] 
    13  **Tags** | Pointer to **[]string** |  | [optional] 
    14  
    15  ## Methods
    16  
    17  ### NewGroupReplaceRequest
    18  
    19  `func NewGroupReplaceRequest() *GroupReplaceRequest`
    20  
    21  NewGroupReplaceRequest instantiates a new GroupReplaceRequest object
    22  This constructor will assign default values to properties that have it defined,
    23  and makes sure properties required by API are set, but the set of arguments
    24  will change when the set of required properties is changed
    25  
    26  ### NewGroupReplaceRequestWithDefaults
    27  
    28  `func NewGroupReplaceRequestWithDefaults() *GroupReplaceRequest`
    29  
    30  NewGroupReplaceRequestWithDefaults instantiates a new GroupReplaceRequest object
    31  This constructor will only assign default values to properties that have it defined,
    32  but it doesn't guarantee that properties required by API are set
    33  
    34  ### GetParentGroupId
    35  
    36  `func (o *GroupReplaceRequest) GetParentGroupId() string`
    37  
    38  GetParentGroupId returns the ParentGroupId field if non-nil, zero value otherwise.
    39  
    40  ### GetParentGroupIdOk
    41  
    42  `func (o *GroupReplaceRequest) GetParentGroupIdOk() (*string, bool)`
    43  
    44  GetParentGroupIdOk returns a tuple with the ParentGroupId field if it's non-nil, zero value otherwise
    45  and a boolean to check if the value has been set.
    46  
    47  ### SetParentGroupId
    48  
    49  `func (o *GroupReplaceRequest) SetParentGroupId(v string)`
    50  
    51  SetParentGroupId sets ParentGroupId field to given value.
    52  
    53  ### HasParentGroupId
    54  
    55  `func (o *GroupReplaceRequest) HasParentGroupId() bool`
    56  
    57  HasParentGroupId returns a boolean if a field has been set.
    58  
    59  ### GetName
    60  
    61  `func (o *GroupReplaceRequest) GetName() string`
    62  
    63  GetName returns the Name field if non-nil, zero value otherwise.
    64  
    65  ### GetNameOk
    66  
    67  `func (o *GroupReplaceRequest) GetNameOk() (*string, bool)`
    68  
    69  GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
    70  and a boolean to check if the value has been set.
    71  
    72  ### SetName
    73  
    74  `func (o *GroupReplaceRequest) SetName(v string)`
    75  
    76  SetName sets Name field to given value.
    77  
    78  ### HasName
    79  
    80  `func (o *GroupReplaceRequest) HasName() bool`
    81  
    82  HasName returns a boolean if a field has been set.
    83  
    84  ### GetType
    85  
    86  `func (o *GroupReplaceRequest) GetType() string`
    87  
    88  GetType returns the Type field if non-nil, zero value otherwise.
    89  
    90  ### GetTypeOk
    91  
    92  `func (o *GroupReplaceRequest) GetTypeOk() (*string, bool)`
    93  
    94  GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
    95  and a boolean to check if the value has been set.
    96  
    97  ### SetType
    98  
    99  `func (o *GroupReplaceRequest) SetType(v string)`
   100  
   101  SetType sets Type field to given value.
   102  
   103  ### HasType
   104  
   105  `func (o *GroupReplaceRequest) HasType() bool`
   106  
   107  HasType returns a boolean if a field has been set.
   108  
   109  ### GetPhoneNumber
   110  
   111  `func (o *GroupReplaceRequest) GetPhoneNumber() string`
   112  
   113  GetPhoneNumber returns the PhoneNumber field if non-nil, zero value otherwise.
   114  
   115  ### GetPhoneNumberOk
   116  
   117  `func (o *GroupReplaceRequest) GetPhoneNumberOk() (*string, bool)`
   118  
   119  GetPhoneNumberOk returns a tuple with the PhoneNumber field if it's non-nil, zero value otherwise
   120  and a boolean to check if the value has been set.
   121  
   122  ### SetPhoneNumber
   123  
   124  `func (o *GroupReplaceRequest) SetPhoneNumber(v string)`
   125  
   126  SetPhoneNumber sets PhoneNumber field to given value.
   127  
   128  ### HasPhoneNumber
   129  
   130  `func (o *GroupReplaceRequest) HasPhoneNumber() bool`
   131  
   132  HasPhoneNumber returns a boolean if a field has been set.
   133  
   134  ### GetPhoneNumber2
   135  
   136  `func (o *GroupReplaceRequest) GetPhoneNumber2() string`
   137  
   138  GetPhoneNumber2 returns the PhoneNumber2 field if non-nil, zero value otherwise.
   139  
   140  ### GetPhoneNumber2Ok
   141  
   142  `func (o *GroupReplaceRequest) GetPhoneNumber2Ok() (*string, bool)`
   143  
   144  GetPhoneNumber2Ok returns a tuple with the PhoneNumber2 field if it's non-nil, zero value otherwise
   145  and a boolean to check if the value has been set.
   146  
   147  ### SetPhoneNumber2
   148  
   149  `func (o *GroupReplaceRequest) SetPhoneNumber2(v string)`
   150  
   151  SetPhoneNumber2 sets PhoneNumber2 field to given value.
   152  
   153  ### HasPhoneNumber2
   154  
   155  `func (o *GroupReplaceRequest) HasPhoneNumber2() bool`
   156  
   157  HasPhoneNumber2 returns a boolean if a field has been set.
   158  
   159  ### GetAddress
   160  
   161  `func (o *GroupReplaceRequest) GetAddress() GroupAddress`
   162  
   163  GetAddress returns the Address field if non-nil, zero value otherwise.
   164  
   165  ### GetAddressOk
   166  
   167  `func (o *GroupReplaceRequest) GetAddressOk() (*GroupAddress, bool)`
   168  
   169  GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise
   170  and a boolean to check if the value has been set.
   171  
   172  ### SetAddress
   173  
   174  `func (o *GroupReplaceRequest) SetAddress(v GroupAddress)`
   175  
   176  SetAddress sets Address field to given value.
   177  
   178  ### HasAddress
   179  
   180  `func (o *GroupReplaceRequest) HasAddress() bool`
   181  
   182  HasAddress returns a boolean if a field has been set.
   183  
   184  ### GetTags
   185  
   186  `func (o *GroupReplaceRequest) GetTags() []string`
   187  
   188  GetTags returns the Tags field if non-nil, zero value otherwise.
   189  
   190  ### GetTagsOk
   191  
   192  `func (o *GroupReplaceRequest) GetTagsOk() (*[]string, bool)`
   193  
   194  GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise
   195  and a boolean to check if the value has been set.
   196  
   197  ### SetTags
   198  
   199  `func (o *GroupReplaceRequest) SetTags(v []string)`
   200  
   201  SetTags sets Tags field to given value.
   202  
   203  ### HasTags
   204  
   205  `func (o *GroupReplaceRequest) HasTags() bool`
   206  
   207  HasTags returns a boolean if a field has been set.
   208  
   209  
   210  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   211  
   212