Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.83 KB

File metadata and controls

108 lines (59 loc) · 2.83 KB

ContextData

Properties

Name Type Description Notes
Envs Pointer to []EnvData Environment variables data [optional]
Files Pointer to []File File path information [optional]
Variables Pointer to []Variable Variables data for config context [optional]

Methods

NewContextData

func NewContextData() *ContextData

NewContextData instantiates a new ContextData 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

NewContextDataWithDefaults

func NewContextDataWithDefaults() *ContextData

NewContextDataWithDefaults instantiates a new ContextData 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

GetEnvs

func (o *ContextData) GetEnvs() []EnvData

GetEnvs returns the Envs field if non-nil, zero value otherwise.

GetEnvsOk

func (o *ContextData) GetEnvsOk() (*[]EnvData, bool)

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

SetEnvs

func (o *ContextData) SetEnvs(v []EnvData)

SetEnvs sets Envs field to given value.

HasEnvs

func (o *ContextData) HasEnvs() bool

HasEnvs returns a boolean if a field has been set.

GetFiles

func (o *ContextData) GetFiles() []File

GetFiles returns the Files field if non-nil, zero value otherwise.

GetFilesOk

func (o *ContextData) GetFilesOk() (*[]File, bool)

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

SetFiles

func (o *ContextData) SetFiles(v []File)

SetFiles sets Files field to given value.

HasFiles

func (o *ContextData) HasFiles() bool

HasFiles returns a boolean if a field has been set.

GetVariables

func (o *ContextData) GetVariables() []Variable

GetVariables returns the Variables field if non-nil, zero value otherwise.

GetVariablesOk

func (o *ContextData) GetVariablesOk() (*[]Variable, bool)

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

SetVariables

func (o *ContextData) SetVariables(v []Variable)

SetVariables sets Variables field to given value.

HasVariables

func (o *ContextData) HasVariables() bool

HasVariables returns a boolean if a field has been set.

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