Skip to content

Latest commit

 

History

History
executable file
·
108 lines (59 loc) · 2.6 KB

JoinOn.md

File metadata and controls

executable file
·
108 lines (59 loc) · 2.6 KB

JoinOn

Properties

Name Type Description Notes
Right Pointer to JoinCond [optional]
Left Pointer to JoinCond [optional]
Operator Pointer to string [optional]

Methods

NewJoinOn

func NewJoinOn() *JoinOn

NewJoinOn instantiates a new JoinOn 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

NewJoinOnWithDefaults

func NewJoinOnWithDefaults() *JoinOn

NewJoinOnWithDefaults instantiates a new JoinOn 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

GetRight

func (o *JoinOn) GetRight() JoinCond

GetRight returns the Right field if non-nil, zero value otherwise.

GetRightOk

func (o *JoinOn) GetRightOk() (*JoinCond, bool)

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

SetRight

func (o *JoinOn) SetRight(v JoinCond)

SetRight sets Right field to given value.

HasRight

func (o *JoinOn) HasRight() bool

HasRight returns a boolean if a field has been set.

GetLeft

func (o *JoinOn) GetLeft() JoinCond

GetLeft returns the Left field if non-nil, zero value otherwise.

GetLeftOk

func (o *JoinOn) GetLeftOk() (*JoinCond, bool)

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

SetLeft

func (o *JoinOn) SetLeft(v JoinCond)

SetLeft sets Left field to given value.

HasLeft

func (o *JoinOn) HasLeft() bool

HasLeft returns a boolean if a field has been set.

GetOperator

func (o *JoinOn) GetOperator() string

GetOperator returns the Operator field if non-nil, zero value otherwise.

GetOperatorOk

func (o *JoinOn) GetOperatorOk() (*string, bool)

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

SetOperator

func (o *JoinOn) SetOperator(v string)

SetOperator sets Operator field to given value.

HasOperator

func (o *JoinOn) HasOperator() bool

HasOperator returns a boolean if a field has been set.

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