Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.12 KB

EnvironmentSummary.md

File metadata and controls

114 lines (61 loc) · 3.12 KB

EnvironmentSummary

Properties

Name Type Description Notes
Links map[string]Link The location and content type of related resources
Key string A project-unique key for the environment
Name string A human-friendly name for the environment
Color string The color used to indicate this environment in the UI

Methods

NewEnvironmentSummary

func NewEnvironmentSummary(links map[string]Link, key string, name string, color string, ) *EnvironmentSummary

NewEnvironmentSummary instantiates a new EnvironmentSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewEnvironmentSummaryWithDefaults

func NewEnvironmentSummaryWithDefaults() *EnvironmentSummary

NewEnvironmentSummaryWithDefaults instantiates a new EnvironmentSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetLinks

func (o *EnvironmentSummary) GetLinks() map[string]Link

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *EnvironmentSummary) GetLinksOk() (*map[string]Link, bool)

GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLinks

func (o *EnvironmentSummary) SetLinks(v map[string]Link)

SetLinks sets Links field to given value.

GetKey

func (o *EnvironmentSummary) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *EnvironmentSummary) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetKey

func (o *EnvironmentSummary) SetKey(v string)

SetKey sets Key field to given value.

GetName

func (o *EnvironmentSummary) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *EnvironmentSummary) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *EnvironmentSummary) SetName(v string)

SetName sets Name field to given value.

GetColor

func (o *EnvironmentSummary) GetColor() string

GetColor returns the Color field if non-nil, zero value otherwise.

GetColorOk

func (o *EnvironmentSummary) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetColor

func (o *EnvironmentSummary) SetColor(v string)

SetColor sets Color field to given value.

[Back to Model list] [Back to API list] [Back to README]