interface Feed<T> {
    autoPoll?: boolean;
    credentialRequest: CredentialRequest;
    description: string;
    id: string;
    inputPCDType?: PCDTypeNameOf<T>;
    name: string;
    partialArgs?: ArgsOf<T>;
    permissions: PCDFolderPermission[];
}

Type Parameters

Properties

autoPoll?: boolean

If false, the feed will not automatically poll for updates.

Default

true
credentialRequest: CredentialRequest
description: string
id: string
inputPCDType?: PCDTypeNameOf<T>
name: string
partialArgs?: ArgsOf<T>
permissions: PCDFolderPermission[]

Generated using TypeDoc