Google Apps Script API
    Preparing search index...
    interface DraftsCollection {
        create(resource: Draft, userId: string): Draft;
        create(resource: Draft, userId: string, mediaData: any): Draft;
        get(userId: string, id: string): Draft;
        get(userId: string, id: string, optionalArgs: object): Draft;
        list(userId: string): ListDraftsResponse;
        list(userId: string, optionalArgs: object): ListDraftsResponse;
        remove(userId: string, id: string): void;
        send(resource: Draft, userId: string): Message;
        send(resource: Draft, userId: string, mediaData: any): Message;
        update(resource: Draft, userId: string, id: string): Draft;
        update(resource: Draft, userId: string, id: string, mediaData: any): Draft;
    }
    Index

    Methods