Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.13 KB

File metadata and controls

108 lines (59 loc) · 3.13 KB

ConditionHeaderCondition

Properties

Name Type Description Notes
Header Pointer to string The request header name [optional]
Value Pointer to string The request header value [optional]
ExactMatch Pointer to bool Whether or not to perform an exact match of the request header and value [optional]

Methods

NewConditionHeaderCondition

func NewConditionHeaderCondition() *ConditionHeaderCondition

NewConditionHeaderCondition instantiates a new ConditionHeaderCondition 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

NewConditionHeaderConditionWithDefaults

func NewConditionHeaderConditionWithDefaults() *ConditionHeaderCondition

NewConditionHeaderConditionWithDefaults instantiates a new ConditionHeaderCondition 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

GetHeader

func (o *ConditionHeaderCondition) GetHeader() string

GetHeader returns the Header field if non-nil, zero value otherwise.

GetHeaderOk

func (o *ConditionHeaderCondition) GetHeaderOk() (*string, bool)

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

SetHeader

func (o *ConditionHeaderCondition) SetHeader(v string)

SetHeader sets Header field to given value.

HasHeader

func (o *ConditionHeaderCondition) HasHeader() bool

HasHeader returns a boolean if a field has been set.

GetValue

func (o *ConditionHeaderCondition) GetValue() string

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

GetValueOk

func (o *ConditionHeaderCondition) 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 *ConditionHeaderCondition) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *ConditionHeaderCondition) HasValue() bool

HasValue returns a boolean if a field has been set.

GetExactMatch

func (o *ConditionHeaderCondition) GetExactMatch() bool

GetExactMatch returns the ExactMatch field if non-nil, zero value otherwise.

GetExactMatchOk

func (o *ConditionHeaderCondition) GetExactMatchOk() (*bool, bool)

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

SetExactMatch

func (o *ConditionHeaderCondition) SetExactMatch(v bool)

SetExactMatch sets ExactMatch field to given value.

HasExactMatch

func (o *ConditionHeaderCondition) HasExactMatch() bool

HasExactMatch returns a boolean if a field has been set.

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