videosphere
    Preparing search index...

    Defines the shape of create connected account data.

    interface CreateConnectedAccountData {
        userId: string;
        platform: ConnectedAccountPlatform;
        accessToken: string;
        refreshToken: string;
        tokenExpiry: string;
        platformUserId: string;
        platformName: string;
        sftpHost?: string;
        sftpPort?: number;
        sftpRemotePath?: string;
        sftpAuthMethod?: SftpAuthMethod;
        sftpHostKeyFingerprint?: string;
        smbHost?: string;
        smbShare?: string;
        smbDomain?: string;
        smbRemotePath?: string;
        googleDriveBackupFolderPath?: string;
        facebookTargetType?: "page" | "profile";
        facebookPageId?: string;
    }
    Index

    Properties

    userId: string
    accessToken: string
    refreshToken: string
    tokenExpiry: string
    platformUserId: string
    platformName: string
    sftpHost?: string
    sftpPort?: number
    sftpRemotePath?: string
    sftpAuthMethod?: SftpAuthMethod
    sftpHostKeyFingerprint?: string
    smbHost?: string
    smbShare?: string
    smbDomain?: string
    smbRemotePath?: string
    googleDriveBackupFolderPath?: string
    facebookTargetType?: "page" | "profile"
    facebookPageId?: string