Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.62 KB

JoinCond.md

File metadata and controls

108 lines (59 loc) · 2.62 KB

JoinCond

Properties

Name Type Description Notes
Field string Field to join on
Table string Joined table
Type Pointer to interface{} [optional]

Methods

NewJoinCond

func NewJoinCond(field string, table string, ) *JoinCond

NewJoinCond instantiates a new JoinCond 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

NewJoinCondWithDefaults

func NewJoinCondWithDefaults() *JoinCond

NewJoinCondWithDefaults instantiates a new JoinCond 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

GetField

func (o *JoinCond) GetField() string

GetField returns the Field field if non-nil, zero value otherwise.

GetFieldOk

func (o *JoinCond) GetFieldOk() (*string, bool)

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

SetField

func (o *JoinCond) SetField(v string)

SetField sets Field field to given value.

GetTable

func (o *JoinCond) GetTable() string

GetTable returns the Table field if non-nil, zero value otherwise.

GetTableOk

func (o *JoinCond) GetTableOk() (*string, bool)

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

SetTable

func (o *JoinCond) SetTable(v string)

SetTable sets Table field to given value.

GetType

func (o *JoinCond) GetType() interface{}

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

GetTypeOk

func (o *JoinCond) GetTypeOk() (*interface{}, 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 *JoinCond) SetType(v interface{})

SetType sets Type field to given value.

HasType

func (o *JoinCond) HasType() bool

HasType returns a boolean if a field has been set.

SetTypeNil

func (o *JoinCond) SetTypeNil(b bool)

SetTypeNil sets the value for Type to be an explicit nil

UnsetType

func (o *JoinCond) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

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