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

     1  # Circle
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Id** | Pointer to **string** |  | [optional] 
     8  **Name** | Pointer to **string** |  | [optional] 
     9  **Altitude** | Pointer to **float32** |  | [optional] 
    10  **RadiusM** | Pointer to **float32** |  | [optional] 
    11  **Location** | Pointer to [**Location**](Location.md) |  | [optional] 
    12  **Labels** | Pointer to [**[]Label**](Label.md) |  | [optional] 
    13  **Description** | Pointer to **string** |  | [optional] 
    14  **DisplayInfo** | Pointer to [**[]DisplayInfo**](DisplayInfo.md) |  | [optional] 
    15  **ResourceOwnerId** | Pointer to **string** |  | [optional] 
    16  
    17  ## Methods
    18  
    19  ### NewCircle
    20  
    21  `func NewCircle() *Circle`
    22  
    23  NewCircle instantiates a new Circle object
    24  This constructor will assign default values to properties that have it defined,
    25  and makes sure properties required by API are set, but the set of arguments
    26  will change when the set of required properties is changed
    27  
    28  ### NewCircleWithDefaults
    29  
    30  `func NewCircleWithDefaults() *Circle`
    31  
    32  NewCircleWithDefaults instantiates a new Circle object
    33  This constructor will only assign default values to properties that have it defined,
    34  but it doesn't guarantee that properties required by API are set
    35  
    36  ### GetId
    37  
    38  `func (o *Circle) GetId() string`
    39  
    40  GetId returns the Id field if non-nil, zero value otherwise.
    41  
    42  ### GetIdOk
    43  
    44  `func (o *Circle) GetIdOk() (*string, bool)`
    45  
    46  GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
    47  and a boolean to check if the value has been set.
    48  
    49  ### SetId
    50  
    51  `func (o *Circle) SetId(v string)`
    52  
    53  SetId sets Id field to given value.
    54  
    55  ### HasId
    56  
    57  `func (o *Circle) HasId() bool`
    58  
    59  HasId returns a boolean if a field has been set.
    60  
    61  ### GetName
    62  
    63  `func (o *Circle) GetName() string`
    64  
    65  GetName returns the Name field if non-nil, zero value otherwise.
    66  
    67  ### GetNameOk
    68  
    69  `func (o *Circle) GetNameOk() (*string, bool)`
    70  
    71  GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
    72  and a boolean to check if the value has been set.
    73  
    74  ### SetName
    75  
    76  `func (o *Circle) SetName(v string)`
    77  
    78  SetName sets Name field to given value.
    79  
    80  ### HasName
    81  
    82  `func (o *Circle) HasName() bool`
    83  
    84  HasName returns a boolean if a field has been set.
    85  
    86  ### GetAltitude
    87  
    88  `func (o *Circle) GetAltitude() float32`
    89  
    90  GetAltitude returns the Altitude field if non-nil, zero value otherwise.
    91  
    92  ### GetAltitudeOk
    93  
    94  `func (o *Circle) GetAltitudeOk() (*float32, bool)`
    95  
    96  GetAltitudeOk returns a tuple with the Altitude field if it's non-nil, zero value otherwise
    97  and a boolean to check if the value has been set.
    98  
    99  ### SetAltitude
   100  
   101  `func (o *Circle) SetAltitude(v float32)`
   102  
   103  SetAltitude sets Altitude field to given value.
   104  
   105  ### HasAltitude
   106  
   107  `func (o *Circle) HasAltitude() bool`
   108  
   109  HasAltitude returns a boolean if a field has been set.
   110  
   111  ### GetRadiusM
   112  
   113  `func (o *Circle) GetRadiusM() float32`
   114  
   115  GetRadiusM returns the RadiusM field if non-nil, zero value otherwise.
   116  
   117  ### GetRadiusMOk
   118  
   119  `func (o *Circle) GetRadiusMOk() (*float32, bool)`
   120  
   121  GetRadiusMOk returns a tuple with the RadiusM field if it's non-nil, zero value otherwise
   122  and a boolean to check if the value has been set.
   123  
   124  ### SetRadiusM
   125  
   126  `func (o *Circle) SetRadiusM(v float32)`
   127  
   128  SetRadiusM sets RadiusM field to given value.
   129  
   130  ### HasRadiusM
   131  
   132  `func (o *Circle) HasRadiusM() bool`
   133  
   134  HasRadiusM returns a boolean if a field has been set.
   135  
   136  ### GetLocation
   137  
   138  `func (o *Circle) GetLocation() Location`
   139  
   140  GetLocation returns the Location field if non-nil, zero value otherwise.
   141  
   142  ### GetLocationOk
   143  
   144  `func (o *Circle) GetLocationOk() (*Location, bool)`
   145  
   146  GetLocationOk returns a tuple with the Location field if it's non-nil, zero value otherwise
   147  and a boolean to check if the value has been set.
   148  
   149  ### SetLocation
   150  
   151  `func (o *Circle) SetLocation(v Location)`
   152  
   153  SetLocation sets Location field to given value.
   154  
   155  ### HasLocation
   156  
   157  `func (o *Circle) HasLocation() bool`
   158  
   159  HasLocation returns a boolean if a field has been set.
   160  
   161  ### GetLabels
   162  
   163  `func (o *Circle) GetLabels() []Label`
   164  
   165  GetLabels returns the Labels field if non-nil, zero value otherwise.
   166  
   167  ### GetLabelsOk
   168  
   169  `func (o *Circle) GetLabelsOk() (*[]Label, bool)`
   170  
   171  GetLabelsOk returns a tuple with the Labels field if it's non-nil, zero value otherwise
   172  and a boolean to check if the value has been set.
   173  
   174  ### SetLabels
   175  
   176  `func (o *Circle) SetLabels(v []Label)`
   177  
   178  SetLabels sets Labels field to given value.
   179  
   180  ### HasLabels
   181  
   182  `func (o *Circle) HasLabels() bool`
   183  
   184  HasLabels returns a boolean if a field has been set.
   185  
   186  ### GetDescription
   187  
   188  `func (o *Circle) GetDescription() string`
   189  
   190  GetDescription returns the Description field if non-nil, zero value otherwise.
   191  
   192  ### GetDescriptionOk
   193  
   194  `func (o *Circle) GetDescriptionOk() (*string, bool)`
   195  
   196  GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
   197  and a boolean to check if the value has been set.
   198  
   199  ### SetDescription
   200  
   201  `func (o *Circle) SetDescription(v string)`
   202  
   203  SetDescription sets Description field to given value.
   204  
   205  ### HasDescription
   206  
   207  `func (o *Circle) HasDescription() bool`
   208  
   209  HasDescription returns a boolean if a field has been set.
   210  
   211  ### GetDisplayInfo
   212  
   213  `func (o *Circle) GetDisplayInfo() []DisplayInfo`
   214  
   215  GetDisplayInfo returns the DisplayInfo field if non-nil, zero value otherwise.
   216  
   217  ### GetDisplayInfoOk
   218  
   219  `func (o *Circle) GetDisplayInfoOk() (*[]DisplayInfo, bool)`
   220  
   221  GetDisplayInfoOk returns a tuple with the DisplayInfo field if it's non-nil, zero value otherwise
   222  and a boolean to check if the value has been set.
   223  
   224  ### SetDisplayInfo
   225  
   226  `func (o *Circle) SetDisplayInfo(v []DisplayInfo)`
   227  
   228  SetDisplayInfo sets DisplayInfo field to given value.
   229  
   230  ### HasDisplayInfo
   231  
   232  `func (o *Circle) HasDisplayInfo() bool`
   233  
   234  HasDisplayInfo returns a boolean if a field has been set.
   235  
   236  ### GetResourceOwnerId
   237  
   238  `func (o *Circle) GetResourceOwnerId() string`
   239  
   240  GetResourceOwnerId returns the ResourceOwnerId field if non-nil, zero value otherwise.
   241  
   242  ### GetResourceOwnerIdOk
   243  
   244  `func (o *Circle) GetResourceOwnerIdOk() (*string, bool)`
   245  
   246  GetResourceOwnerIdOk returns a tuple with the ResourceOwnerId field if it's non-nil, zero value otherwise
   247  and a boolean to check if the value has been set.
   248  
   249  ### SetResourceOwnerId
   250  
   251  `func (o *Circle) SetResourceOwnerId(v string)`
   252  
   253  SetResourceOwnerId sets ResourceOwnerId field to given value.
   254  
   255  ### HasResourceOwnerId
   256  
   257  `func (o *Circle) HasResourceOwnerId() bool`
   258  
   259  HasResourceOwnerId returns a boolean if a field has been set.
   260  
   261  
   262  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   263  
   264