Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.13 KB

MysqlDbAccess.md

File metadata and controls

82 lines (45 loc) · 2.13 KB

MysqlDbAccess

Properties

Name Type Description Notes
Host Pointer to string [optional]
Password Pointer to string [optional]

Methods

NewMysqlDbAccess

func NewMysqlDbAccess() *MysqlDbAccess

NewMysqlDbAccess instantiates a new MysqlDbAccess 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

NewMysqlDbAccessWithDefaults

func NewMysqlDbAccessWithDefaults() *MysqlDbAccess

NewMysqlDbAccessWithDefaults instantiates a new MysqlDbAccess 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

GetHost

func (o *MysqlDbAccess) GetHost() string

GetHost returns the Host field if non-nil, zero value otherwise.

GetHostOk

func (o *MysqlDbAccess) GetHostOk() (*string, bool)

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

SetHost

func (o *MysqlDbAccess) SetHost(v string)

SetHost sets Host field to given value.

HasHost

func (o *MysqlDbAccess) HasHost() bool

HasHost returns a boolean if a field has been set.

GetPassword

func (o *MysqlDbAccess) GetPassword() string

GetPassword returns the Password field if non-nil, zero value otherwise.

GetPasswordOk

func (o *MysqlDbAccess) GetPasswordOk() (*string, bool)

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

SetPassword

func (o *MysqlDbAccess) SetPassword(v string)

SetPassword sets Password field to given value.

HasPassword

func (o *MysqlDbAccess) HasPassword() bool

HasPassword returns a boolean if a field has been set.

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