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

     1  # Route
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Id** | Pointer to **string** |  | [optional] 
     8  **Name** | Pointer to **string** |  | [optional] 
     9  **Contents** | Pointer to [**[]RouteContents**](RouteContents.md) |  | [optional] 
    10  **Labels** | Pointer to [**[]Label**](Label.md) |  | [optional] 
    11  **Description** | Pointer to **string** |  | [optional] 
    12  **DisplayInfo** | Pointer to [**[]DisplayInfo**](DisplayInfo.md) |  | [optional] 
    13  **ResourceOwnerId** | Pointer to **string** |  | [optional] 
    14  
    15  ## Methods
    16  
    17  ### NewRoute
    18  
    19  `func NewRoute() *Route`
    20  
    21  NewRoute instantiates a new Route 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  ### NewRouteWithDefaults
    27  
    28  `func NewRouteWithDefaults() *Route`
    29  
    30  NewRouteWithDefaults instantiates a new Route 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  ### GetId
    35  
    36  `func (o *Route) GetId() string`
    37  
    38  GetId returns the Id field if non-nil, zero value otherwise.
    39  
    40  ### GetIdOk
    41  
    42  `func (o *Route) GetIdOk() (*string, bool)`
    43  
    44  GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
    45  and a boolean to check if the value has been set.
    46  
    47  ### SetId
    48  
    49  `func (o *Route) SetId(v string)`
    50  
    51  SetId sets Id field to given value.
    52  
    53  ### HasId
    54  
    55  `func (o *Route) HasId() bool`
    56  
    57  HasId returns a boolean if a field has been set.
    58  
    59  ### GetName
    60  
    61  `func (o *Route) GetName() string`
    62  
    63  GetName returns the Name field if non-nil, zero value otherwise.
    64  
    65  ### GetNameOk
    66  
    67  `func (o *Route) 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 *Route) SetName(v string)`
    75  
    76  SetName sets Name field to given value.
    77  
    78  ### HasName
    79  
    80  `func (o *Route) HasName() bool`
    81  
    82  HasName returns a boolean if a field has been set.
    83  
    84  ### GetContents
    85  
    86  `func (o *Route) GetContents() []RouteContents`
    87  
    88  GetContents returns the Contents field if non-nil, zero value otherwise.
    89  
    90  ### GetContentsOk
    91  
    92  `func (o *Route) GetContentsOk() (*[]RouteContents, bool)`
    93  
    94  GetContentsOk returns a tuple with the Contents field if it's non-nil, zero value otherwise
    95  and a boolean to check if the value has been set.
    96  
    97  ### SetContents
    98  
    99  `func (o *Route) SetContents(v []RouteContents)`
   100  
   101  SetContents sets Contents field to given value.
   102  
   103  ### HasContents
   104  
   105  `func (o *Route) HasContents() bool`
   106  
   107  HasContents returns a boolean if a field has been set.
   108  
   109  ### GetLabels
   110  
   111  `func (o *Route) GetLabels() []Label`
   112  
   113  GetLabels returns the Labels field if non-nil, zero value otherwise.
   114  
   115  ### GetLabelsOk
   116  
   117  `func (o *Route) GetLabelsOk() (*[]Label, bool)`
   118  
   119  GetLabelsOk returns a tuple with the Labels field if it's non-nil, zero value otherwise
   120  and a boolean to check if the value has been set.
   121  
   122  ### SetLabels
   123  
   124  `func (o *Route) SetLabels(v []Label)`
   125  
   126  SetLabels sets Labels field to given value.
   127  
   128  ### HasLabels
   129  
   130  `func (o *Route) HasLabels() bool`
   131  
   132  HasLabels returns a boolean if a field has been set.
   133  
   134  ### GetDescription
   135  
   136  `func (o *Route) GetDescription() string`
   137  
   138  GetDescription returns the Description field if non-nil, zero value otherwise.
   139  
   140  ### GetDescriptionOk
   141  
   142  `func (o *Route) GetDescriptionOk() (*string, bool)`
   143  
   144  GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
   145  and a boolean to check if the value has been set.
   146  
   147  ### SetDescription
   148  
   149  `func (o *Route) SetDescription(v string)`
   150  
   151  SetDescription sets Description field to given value.
   152  
   153  ### HasDescription
   154  
   155  `func (o *Route) HasDescription() bool`
   156  
   157  HasDescription returns a boolean if a field has been set.
   158  
   159  ### GetDisplayInfo
   160  
   161  `func (o *Route) GetDisplayInfo() []DisplayInfo`
   162  
   163  GetDisplayInfo returns the DisplayInfo field if non-nil, zero value otherwise.
   164  
   165  ### GetDisplayInfoOk
   166  
   167  `func (o *Route) GetDisplayInfoOk() (*[]DisplayInfo, bool)`
   168  
   169  GetDisplayInfoOk returns a tuple with the DisplayInfo field if it's non-nil, zero value otherwise
   170  and a boolean to check if the value has been set.
   171  
   172  ### SetDisplayInfo
   173  
   174  `func (o *Route) SetDisplayInfo(v []DisplayInfo)`
   175  
   176  SetDisplayInfo sets DisplayInfo field to given value.
   177  
   178  ### HasDisplayInfo
   179  
   180  `func (o *Route) HasDisplayInfo() bool`
   181  
   182  HasDisplayInfo returns a boolean if a field has been set.
   183  
   184  ### GetResourceOwnerId
   185  
   186  `func (o *Route) GetResourceOwnerId() string`
   187  
   188  GetResourceOwnerId returns the ResourceOwnerId field if non-nil, zero value otherwise.
   189  
   190  ### GetResourceOwnerIdOk
   191  
   192  `func (o *Route) GetResourceOwnerIdOk() (*string, bool)`
   193  
   194  GetResourceOwnerIdOk returns a tuple with the ResourceOwnerId field if it's non-nil, zero value otherwise
   195  and a boolean to check if the value has been set.
   196  
   197  ### SetResourceOwnerId
   198  
   199  `func (o *Route) SetResourceOwnerId(v string)`
   200  
   201  SetResourceOwnerId sets ResourceOwnerId field to given value.
   202  
   203  ### HasResourceOwnerId
   204  
   205  `func (o *Route) HasResourceOwnerId() bool`
   206  
   207  HasResourceOwnerId 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