Add document:upload operation to Salesforce Node (#2030)

This commit is contained in:
Ricardo Espinoza
2021-07-29 08:11:04 -04:00
committed by GitHub
parent 1faaef1171
commit 9a7c25aacd
4 changed files with 192 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
export interface IAttachment {
ParentId?: string;
Name?: string;
Body?: string;
OwnerId?: string;
IsPrivate?: boolean;
ContentType?: string;
Description?: string;
Body?: string;
}