bunnyshell.com/sdk@v0.16.0/docs/PaginatedLinks.md (about)

     1  # PaginatedLinks
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Self** | Pointer to [**PaginatedLink**](PaginatedLink.md) |  | [optional] 
     8  **First** | Pointer to [**NullablePaginatedLink**](PaginatedLink.md) |  | [optional] 
     9  **Prev** | Pointer to [**NullablePaginatedLink**](PaginatedLink.md) |  | [optional] 
    10  **Next** | Pointer to [**NullablePaginatedLink**](PaginatedLink.md) |  | [optional] 
    11  **Last** | Pointer to [**NullablePaginatedLink**](PaginatedLink.md) |  | [optional] 
    12  **Item** | Pointer to [**[]PaginatedLink**](PaginatedLink.md) |  | [optional] 
    13  
    14  ## Methods
    15  
    16  ### NewPaginatedLinks
    17  
    18  `func NewPaginatedLinks() *PaginatedLinks`
    19  
    20  NewPaginatedLinks instantiates a new PaginatedLinks object
    21  This constructor will assign default values to properties that have it defined,
    22  and makes sure properties required by API are set, but the set of arguments
    23  will change when the set of required properties is changed
    24  
    25  ### NewPaginatedLinksWithDefaults
    26  
    27  `func NewPaginatedLinksWithDefaults() *PaginatedLinks`
    28  
    29  NewPaginatedLinksWithDefaults instantiates a new PaginatedLinks object
    30  This constructor will only assign default values to properties that have it defined,
    31  but it doesn't guarantee that properties required by API are set
    32  
    33  ### GetSelf
    34  
    35  `func (o *PaginatedLinks) GetSelf() PaginatedLink`
    36  
    37  GetSelf returns the Self field if non-nil, zero value otherwise.
    38  
    39  ### GetSelfOk
    40  
    41  `func (o *PaginatedLinks) GetSelfOk() (*PaginatedLink, bool)`
    42  
    43  GetSelfOk returns a tuple with the Self field if it's non-nil, zero value otherwise
    44  and a boolean to check if the value has been set.
    45  
    46  ### SetSelf
    47  
    48  `func (o *PaginatedLinks) SetSelf(v PaginatedLink)`
    49  
    50  SetSelf sets Self field to given value.
    51  
    52  ### HasSelf
    53  
    54  `func (o *PaginatedLinks) HasSelf() bool`
    55  
    56  HasSelf returns a boolean if a field has been set.
    57  
    58  ### GetFirst
    59  
    60  `func (o *PaginatedLinks) GetFirst() PaginatedLink`
    61  
    62  GetFirst returns the First field if non-nil, zero value otherwise.
    63  
    64  ### GetFirstOk
    65  
    66  `func (o *PaginatedLinks) GetFirstOk() (*PaginatedLink, bool)`
    67  
    68  GetFirstOk returns a tuple with the First field if it's non-nil, zero value otherwise
    69  and a boolean to check if the value has been set.
    70  
    71  ### SetFirst
    72  
    73  `func (o *PaginatedLinks) SetFirst(v PaginatedLink)`
    74  
    75  SetFirst sets First field to given value.
    76  
    77  ### HasFirst
    78  
    79  `func (o *PaginatedLinks) HasFirst() bool`
    80  
    81  HasFirst returns a boolean if a field has been set.
    82  
    83  ### SetFirstNil
    84  
    85  `func (o *PaginatedLinks) SetFirstNil(b bool)`
    86  
    87   SetFirstNil sets the value for First to be an explicit nil
    88  
    89  ### UnsetFirst
    90  `func (o *PaginatedLinks) UnsetFirst()`
    91  
    92  UnsetFirst ensures that no value is present for First, not even an explicit nil
    93  ### GetPrev
    94  
    95  `func (o *PaginatedLinks) GetPrev() PaginatedLink`
    96  
    97  GetPrev returns the Prev field if non-nil, zero value otherwise.
    98  
    99  ### GetPrevOk
   100  
   101  `func (o *PaginatedLinks) GetPrevOk() (*PaginatedLink, bool)`
   102  
   103  GetPrevOk returns a tuple with the Prev field if it's non-nil, zero value otherwise
   104  and a boolean to check if the value has been set.
   105  
   106  ### SetPrev
   107  
   108  `func (o *PaginatedLinks) SetPrev(v PaginatedLink)`
   109  
   110  SetPrev sets Prev field to given value.
   111  
   112  ### HasPrev
   113  
   114  `func (o *PaginatedLinks) HasPrev() bool`
   115  
   116  HasPrev returns a boolean if a field has been set.
   117  
   118  ### SetPrevNil
   119  
   120  `func (o *PaginatedLinks) SetPrevNil(b bool)`
   121  
   122   SetPrevNil sets the value for Prev to be an explicit nil
   123  
   124  ### UnsetPrev
   125  `func (o *PaginatedLinks) UnsetPrev()`
   126  
   127  UnsetPrev ensures that no value is present for Prev, not even an explicit nil
   128  ### GetNext
   129  
   130  `func (o *PaginatedLinks) GetNext() PaginatedLink`
   131  
   132  GetNext returns the Next field if non-nil, zero value otherwise.
   133  
   134  ### GetNextOk
   135  
   136  `func (o *PaginatedLinks) GetNextOk() (*PaginatedLink, bool)`
   137  
   138  GetNextOk returns a tuple with the Next field if it's non-nil, zero value otherwise
   139  and a boolean to check if the value has been set.
   140  
   141  ### SetNext
   142  
   143  `func (o *PaginatedLinks) SetNext(v PaginatedLink)`
   144  
   145  SetNext sets Next field to given value.
   146  
   147  ### HasNext
   148  
   149  `func (o *PaginatedLinks) HasNext() bool`
   150  
   151  HasNext returns a boolean if a field has been set.
   152  
   153  ### SetNextNil
   154  
   155  `func (o *PaginatedLinks) SetNextNil(b bool)`
   156  
   157   SetNextNil sets the value for Next to be an explicit nil
   158  
   159  ### UnsetNext
   160  `func (o *PaginatedLinks) UnsetNext()`
   161  
   162  UnsetNext ensures that no value is present for Next, not even an explicit nil
   163  ### GetLast
   164  
   165  `func (o *PaginatedLinks) GetLast() PaginatedLink`
   166  
   167  GetLast returns the Last field if non-nil, zero value otherwise.
   168  
   169  ### GetLastOk
   170  
   171  `func (o *PaginatedLinks) GetLastOk() (*PaginatedLink, bool)`
   172  
   173  GetLastOk returns a tuple with the Last field if it's non-nil, zero value otherwise
   174  and a boolean to check if the value has been set.
   175  
   176  ### SetLast
   177  
   178  `func (o *PaginatedLinks) SetLast(v PaginatedLink)`
   179  
   180  SetLast sets Last field to given value.
   181  
   182  ### HasLast
   183  
   184  `func (o *PaginatedLinks) HasLast() bool`
   185  
   186  HasLast returns a boolean if a field has been set.
   187  
   188  ### SetLastNil
   189  
   190  `func (o *PaginatedLinks) SetLastNil(b bool)`
   191  
   192   SetLastNil sets the value for Last to be an explicit nil
   193  
   194  ### UnsetLast
   195  `func (o *PaginatedLinks) UnsetLast()`
   196  
   197  UnsetLast ensures that no value is present for Last, not even an explicit nil
   198  ### GetItem
   199  
   200  `func (o *PaginatedLinks) GetItem() []PaginatedLink`
   201  
   202  GetItem returns the Item field if non-nil, zero value otherwise.
   203  
   204  ### GetItemOk
   205  
   206  `func (o *PaginatedLinks) GetItemOk() (*[]PaginatedLink, bool)`
   207  
   208  GetItemOk returns a tuple with the Item field if it's non-nil, zero value otherwise
   209  and a boolean to check if the value has been set.
   210  
   211  ### SetItem
   212  
   213  `func (o *PaginatedLinks) SetItem(v []PaginatedLink)`
   214  
   215  SetItem sets Item field to given value.
   216  
   217  ### HasItem
   218  
   219  `func (o *PaginatedLinks) HasItem() bool`
   220  
   221  HasItem returns a boolean if a field has been set.
   222  
   223  
   224  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   225  
   226