bunnyshell.com/sdk@v0.16.0/docs/ProjectCollection.md (about) 1 # ProjectCollection 2 3 ## Properties 4 5 Name | Type | Description | Notes 6 ------------ | ------------- | ------------- | ------------- 7 **Id** | Pointer to **string** | Project identifier. | [optional] [readonly] 8 **Name** | Pointer to **string** | Project name. | [optional] [readonly] 9 **TotalEnvironments** | Pointer to **int32** | Environment identifier. | [optional] [readonly] 10 **Organization** | Pointer to **string** | Organization identifier. | [optional] [readonly] 11 12 ## Methods 13 14 ### NewProjectCollection 15 16 `func NewProjectCollection() *ProjectCollection` 17 18 NewProjectCollection instantiates a new ProjectCollection object 19 This constructor will assign default values to properties that have it defined, 20 and makes sure properties required by API are set, but the set of arguments 21 will change when the set of required properties is changed 22 23 ### NewProjectCollectionWithDefaults 24 25 `func NewProjectCollectionWithDefaults() *ProjectCollection` 26 27 NewProjectCollectionWithDefaults instantiates a new ProjectCollection object 28 This constructor will only assign default values to properties that have it defined, 29 but it doesn't guarantee that properties required by API are set 30 31 ### GetId 32 33 `func (o *ProjectCollection) GetId() string` 34 35 GetId returns the Id field if non-nil, zero value otherwise. 36 37 ### GetIdOk 38 39 `func (o *ProjectCollection) GetIdOk() (*string, bool)` 40 41 GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise 42 and a boolean to check if the value has been set. 43 44 ### SetId 45 46 `func (o *ProjectCollection) SetId(v string)` 47 48 SetId sets Id field to given value. 49 50 ### HasId 51 52 `func (o *ProjectCollection) HasId() bool` 53 54 HasId returns a boolean if a field has been set. 55 56 ### GetName 57 58 `func (o *ProjectCollection) GetName() string` 59 60 GetName returns the Name field if non-nil, zero value otherwise. 61 62 ### GetNameOk 63 64 `func (o *ProjectCollection) GetNameOk() (*string, bool)` 65 66 GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise 67 and a boolean to check if the value has been set. 68 69 ### SetName 70 71 `func (o *ProjectCollection) SetName(v string)` 72 73 SetName sets Name field to given value. 74 75 ### HasName 76 77 `func (o *ProjectCollection) HasName() bool` 78 79 HasName returns a boolean if a field has been set. 80 81 ### GetTotalEnvironments 82 83 `func (o *ProjectCollection) GetTotalEnvironments() int32` 84 85 GetTotalEnvironments returns the TotalEnvironments field if non-nil, zero value otherwise. 86 87 ### GetTotalEnvironmentsOk 88 89 `func (o *ProjectCollection) GetTotalEnvironmentsOk() (*int32, bool)` 90 91 GetTotalEnvironmentsOk returns a tuple with the TotalEnvironments field if it's non-nil, zero value otherwise 92 and a boolean to check if the value has been set. 93 94 ### SetTotalEnvironments 95 96 `func (o *ProjectCollection) SetTotalEnvironments(v int32)` 97 98 SetTotalEnvironments sets TotalEnvironments field to given value. 99 100 ### HasTotalEnvironments 101 102 `func (o *ProjectCollection) HasTotalEnvironments() bool` 103 104 HasTotalEnvironments returns a boolean if a field has been set. 105 106 ### GetOrganization 107 108 `func (o *ProjectCollection) GetOrganization() string` 109 110 GetOrganization returns the Organization field if non-nil, zero value otherwise. 111 112 ### GetOrganizationOk 113 114 `func (o *ProjectCollection) GetOrganizationOk() (*string, bool)` 115 116 GetOrganizationOk returns a tuple with the Organization field if it's non-nil, zero value otherwise 117 and a boolean to check if the value has been set. 118 119 ### SetOrganization 120 121 `func (o *ProjectCollection) SetOrganization(v string)` 122 123 SetOrganization sets Organization field to given value. 124 125 ### HasOrganization 126 127 `func (o *ProjectCollection) HasOrganization() bool` 128 129 HasOrganization returns a boolean if a field has been set. 130 131 132 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 133 134