Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 3.64 KB

File metadata and controls

160 lines (87 loc) · 3.64 KB

S3Ftp

Properties

Name Type Description Notes
Host Pointer to string [optional]
Port Pointer to int32 [optional]
Login Pointer to string [optional]
Password Pointer to string [optional]
Status Pointer to string [optional]

Methods

NewS3Ftp

func NewS3Ftp() *S3Ftp

NewS3Ftp instantiates a new S3Ftp 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

NewS3FtpWithDefaults

func NewS3FtpWithDefaults() *S3Ftp

NewS3FtpWithDefaults instantiates a new S3Ftp 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 *S3Ftp) GetHost() string

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

GetHostOk

func (o *S3Ftp) 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 *S3Ftp) SetHost(v string)

SetHost sets Host field to given value.

HasHost

func (o *S3Ftp) HasHost() bool

HasHost returns a boolean if a field has been set.

GetPort

func (o *S3Ftp) GetPort() int32

GetPort returns the Port field if non-nil, zero value otherwise.

GetPortOk

func (o *S3Ftp) GetPortOk() (*int32, bool)

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

SetPort

func (o *S3Ftp) SetPort(v int32)

SetPort sets Port field to given value.

HasPort

func (o *S3Ftp) HasPort() bool

HasPort returns a boolean if a field has been set.

GetLogin

func (o *S3Ftp) GetLogin() string

GetLogin returns the Login field if non-nil, zero value otherwise.

GetLoginOk

func (o *S3Ftp) GetLoginOk() (*string, bool)

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

SetLogin

func (o *S3Ftp) SetLogin(v string)

SetLogin sets Login field to given value.

HasLogin

func (o *S3Ftp) HasLogin() bool

HasLogin returns a boolean if a field has been set.

GetPassword

func (o *S3Ftp) GetPassword() string

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

GetPasswordOk

func (o *S3Ftp) 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 *S3Ftp) SetPassword(v string)

SetPassword sets Password field to given value.

HasPassword

func (o *S3Ftp) HasPassword() bool

HasPassword returns a boolean if a field has been set.

GetStatus

func (o *S3Ftp) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *S3Ftp) GetStatusOk() (*string, bool)

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

SetStatus

func (o *S3Ftp) SetStatus(v string)

SetStatus sets Status field to given value.

HasStatus

func (o *S3Ftp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

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