woodwing-assets
Version:
TypeScript client for interacting with the WoodWing Assets Server API
17 lines (16 loc) • 418 B
TypeScript
export interface UpdateAuthKeyRequest {
key: string;
subject: string;
validUntil: Date;
description?: string;
downloadOriginal?: boolean;
downloadPreview?: boolean;
requestApproval?: boolean;
requestUpload?: boolean;
containerId?: string;
containerIds?: string[];
importFolderPath?: string;
notifyEmail?: string;
sort?: string[];
downloadPresetIds?: string[];
}