Skip to content

Latest commit

 

History

History
155 lines (84 loc) · 3.98 KB

PathInput.md

File metadata and controls

155 lines (84 loc) · 3.98 KB

PathInput

Properties

Name Type Description Notes
Value string
Type Pointer to string [optional] [default to "path"]
Created Pointer to time.Time [optional]
Context Pointer to []map[string]interface{} [optional] [default to []]
LastAnalysis Pointer to map[string]time.Time [optional] [default to {}]

Methods

NewPathInput

func NewPathInput(value string, ) *PathInput

NewPathInput instantiates a new PathInput 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

NewPathInputWithDefaults

func NewPathInputWithDefaults() *PathInput

NewPathInputWithDefaults instantiates a new PathInput 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

GetValue

func (o *PathInput) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *PathInput) GetValueOk() (*string, bool)

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

SetValue

func (o *PathInput) SetValue(v string)

SetValue sets Value field to given value.

GetType

func (o *PathInput) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *PathInput) GetTypeOk() (*string, bool)

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

SetType

func (o *PathInput) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *PathInput) HasType() bool

HasType returns a boolean if a field has been set.

GetCreated

func (o *PathInput) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *PathInput) GetCreatedOk() (*time.Time, bool)

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

SetCreated

func (o *PathInput) SetCreated(v time.Time)

SetCreated sets Created field to given value.

HasCreated

func (o *PathInput) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetContext

func (o *PathInput) GetContext() []map[string]interface{}

GetContext returns the Context field if non-nil, zero value otherwise.

GetContextOk

func (o *PathInput) GetContextOk() (*[]map[string]interface{}, bool)

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

SetContext

func (o *PathInput) SetContext(v []map[string]interface{})

SetContext sets Context field to given value.

HasContext

func (o *PathInput) HasContext() bool

HasContext returns a boolean if a field has been set.

GetLastAnalysis

func (o *PathInput) GetLastAnalysis() map[string]time.Time

GetLastAnalysis returns the LastAnalysis field if non-nil, zero value otherwise.

GetLastAnalysisOk

func (o *PathInput) GetLastAnalysisOk() (*map[string]time.Time, bool)

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

SetLastAnalysis

func (o *PathInput) SetLastAnalysis(v map[string]time.Time)

SetLastAnalysis sets LastAnalysis field to given value.

HasLastAnalysis

func (o *PathInput) HasLastAnalysis() bool

HasLastAnalysis returns a boolean if a field has been set.

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