Skip to content

FileRepositoryProtocolFTP16

Bases: OCIType

Attributes of the FTP protocol when the file repository interface is using FTP.

Attributes:

ftp_passive (bool):

net_address (str):

ftp_remote_verification (bool):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class FileRepositoryProtocolFTP16(OCIType):
    """Attributes of the FTP protocol when the file repository interface is using FTP.

    Attributes:

        ftp_passive (bool):

        net_address (str):

        ftp_remote_verification (bool):

    """

    ftp_passive: bool = field(metadata={"alias": "ftpPassive"})

    net_address: str = field(metadata={"alias": "netAddress"})

    ftp_remote_verification: bool = field(metadata={"alias": "ftpRemoteVerification"})