Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.01 KB

Ftp.md

File metadata and controls

31 lines (24 loc) · 1.01 KB

Ftp

Properties

Name Type Description Notes
user_name str
password str
host str
port int
encryption str Default TLS_IF_AVAILABLE [optional]

Example

from phrasetms_client.models.ftp import Ftp

# TODO update the JSON string below
json = "{}"
# create an instance of Ftp from a JSON string
ftp_instance = Ftp.from_json(json)
# print the JSON string representation of the object
print Ftp.to_json()

# convert the object into a dict
ftp_dict = ftp_instance.to_dict()
# create an instance of Ftp from a dict
ftp_from_dict = Ftp.from_dict(ftp_dict)

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