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

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