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

     1  # PipelineItem
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Id** | Pointer to **string** | Pipeline identifier. | [optional] [readonly] 
     8  **Description** | Pointer to **string** | Pipeline description. | [optional] [readonly] 
     9  **Status** | Pointer to **string** | Pipeline status. | [optional] [readonly] 
    10  **Stages** | Pointer to [**[]StageItem**](StageItem.md) | Stage identifier. | [optional] [readonly] 
    11  **Environment** | Pointer to **NullableString** | Environment identifier. | [optional] [readonly] 
    12  **Event** | Pointer to **string** | Event identifier. | [optional] [readonly] 
    13  **WebUrl** | Pointer to **string** | Pipeline web URL. | [optional] [readonly] 
    14  **Organization** | Pointer to **string** | Organization identifier. | [optional] [readonly] 
    15  
    16  ## Methods
    17  
    18  ### NewPipelineItem
    19  
    20  `func NewPipelineItem() *PipelineItem`
    21  
    22  NewPipelineItem instantiates a new PipelineItem 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  ### NewPipelineItemWithDefaults
    28  
    29  `func NewPipelineItemWithDefaults() *PipelineItem`
    30  
    31  NewPipelineItemWithDefaults instantiates a new PipelineItem 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 *PipelineItem) GetId() string`
    38  
    39  GetId returns the Id field if non-nil, zero value otherwise.
    40  
    41  ### GetIdOk
    42  
    43  `func (o *PipelineItem) 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 *PipelineItem) SetId(v string)`
    51  
    52  SetId sets Id field to given value.
    53  
    54  ### HasId
    55  
    56  `func (o *PipelineItem) HasId() bool`
    57  
    58  HasId returns a boolean if a field has been set.
    59  
    60  ### GetDescription
    61  
    62  `func (o *PipelineItem) GetDescription() string`
    63  
    64  GetDescription returns the Description field if non-nil, zero value otherwise.
    65  
    66  ### GetDescriptionOk
    67  
    68  `func (o *PipelineItem) GetDescriptionOk() (*string, bool)`
    69  
    70  GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
    71  and a boolean to check if the value has been set.
    72  
    73  ### SetDescription
    74  
    75  `func (o *PipelineItem) SetDescription(v string)`
    76  
    77  SetDescription sets Description field to given value.
    78  
    79  ### HasDescription
    80  
    81  `func (o *PipelineItem) HasDescription() bool`
    82  
    83  HasDescription returns a boolean if a field has been set.
    84  
    85  ### GetStatus
    86  
    87  `func (o *PipelineItem) GetStatus() string`
    88  
    89  GetStatus returns the Status field if non-nil, zero value otherwise.
    90  
    91  ### GetStatusOk
    92  
    93  `func (o *PipelineItem) GetStatusOk() (*string, bool)`
    94  
    95  GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
    96  and a boolean to check if the value has been set.
    97  
    98  ### SetStatus
    99  
   100  `func (o *PipelineItem) SetStatus(v string)`
   101  
   102  SetStatus sets Status field to given value.
   103  
   104  ### HasStatus
   105  
   106  `func (o *PipelineItem) HasStatus() bool`
   107  
   108  HasStatus returns a boolean if a field has been set.
   109  
   110  ### GetStages
   111  
   112  `func (o *PipelineItem) GetStages() []StageItem`
   113  
   114  GetStages returns the Stages field if non-nil, zero value otherwise.
   115  
   116  ### GetStagesOk
   117  
   118  `func (o *PipelineItem) GetStagesOk() (*[]StageItem, bool)`
   119  
   120  GetStagesOk returns a tuple with the Stages field if it's non-nil, zero value otherwise
   121  and a boolean to check if the value has been set.
   122  
   123  ### SetStages
   124  
   125  `func (o *PipelineItem) SetStages(v []StageItem)`
   126  
   127  SetStages sets Stages field to given value.
   128  
   129  ### HasStages
   130  
   131  `func (o *PipelineItem) HasStages() bool`
   132  
   133  HasStages returns a boolean if a field has been set.
   134  
   135  ### GetEnvironment
   136  
   137  `func (o *PipelineItem) GetEnvironment() string`
   138  
   139  GetEnvironment returns the Environment field if non-nil, zero value otherwise.
   140  
   141  ### GetEnvironmentOk
   142  
   143  `func (o *PipelineItem) GetEnvironmentOk() (*string, bool)`
   144  
   145  GetEnvironmentOk returns a tuple with the Environment field if it's non-nil, zero value otherwise
   146  and a boolean to check if the value has been set.
   147  
   148  ### SetEnvironment
   149  
   150  `func (o *PipelineItem) SetEnvironment(v string)`
   151  
   152  SetEnvironment sets Environment field to given value.
   153  
   154  ### HasEnvironment
   155  
   156  `func (o *PipelineItem) HasEnvironment() bool`
   157  
   158  HasEnvironment returns a boolean if a field has been set.
   159  
   160  ### SetEnvironmentNil
   161  
   162  `func (o *PipelineItem) SetEnvironmentNil(b bool)`
   163  
   164   SetEnvironmentNil sets the value for Environment to be an explicit nil
   165  
   166  ### UnsetEnvironment
   167  `func (o *PipelineItem) UnsetEnvironment()`
   168  
   169  UnsetEnvironment ensures that no value is present for Environment, not even an explicit nil
   170  ### GetEvent
   171  
   172  `func (o *PipelineItem) GetEvent() string`
   173  
   174  GetEvent returns the Event field if non-nil, zero value otherwise.
   175  
   176  ### GetEventOk
   177  
   178  `func (o *PipelineItem) GetEventOk() (*string, bool)`
   179  
   180  GetEventOk returns a tuple with the Event field if it's non-nil, zero value otherwise
   181  and a boolean to check if the value has been set.
   182  
   183  ### SetEvent
   184  
   185  `func (o *PipelineItem) SetEvent(v string)`
   186  
   187  SetEvent sets Event field to given value.
   188  
   189  ### HasEvent
   190  
   191  `func (o *PipelineItem) HasEvent() bool`
   192  
   193  HasEvent returns a boolean if a field has been set.
   194  
   195  ### GetWebUrl
   196  
   197  `func (o *PipelineItem) GetWebUrl() string`
   198  
   199  GetWebUrl returns the WebUrl field if non-nil, zero value otherwise.
   200  
   201  ### GetWebUrlOk
   202  
   203  `func (o *PipelineItem) GetWebUrlOk() (*string, bool)`
   204  
   205  GetWebUrlOk returns a tuple with the WebUrl field if it's non-nil, zero value otherwise
   206  and a boolean to check if the value has been set.
   207  
   208  ### SetWebUrl
   209  
   210  `func (o *PipelineItem) SetWebUrl(v string)`
   211  
   212  SetWebUrl sets WebUrl field to given value.
   213  
   214  ### HasWebUrl
   215  
   216  `func (o *PipelineItem) HasWebUrl() bool`
   217  
   218  HasWebUrl returns a boolean if a field has been set.
   219  
   220  ### GetOrganization
   221  
   222  `func (o *PipelineItem) GetOrganization() string`
   223  
   224  GetOrganization returns the Organization field if non-nil, zero value otherwise.
   225  
   226  ### GetOrganizationOk
   227  
   228  `func (o *PipelineItem) GetOrganizationOk() (*string, bool)`
   229  
   230  GetOrganizationOk returns a tuple with the Organization field if it's non-nil, zero value otherwise
   231  and a boolean to check if the value has been set.
   232  
   233  ### SetOrganization
   234  
   235  `func (o *PipelineItem) SetOrganization(v string)`
   236  
   237  SetOrganization sets Organization field to given value.
   238  
   239  ### HasOrganization
   240  
   241  `func (o *PipelineItem) HasOrganization() bool`
   242  
   243  HasOrganization returns a boolean if a field has been set.
   244  
   245  
   246  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   247  
   248