Interface POSTExecuteWebhookResponse

interface POSTExecuteWebhookResponse {
    channelId: string;
    content: {
        document: {
            data: {
                profile: {
                    name: string;
                    profilePicture: string;
                };
            };
            nodes: {
                data: object;
                nodes: {
                    leaves: {
                        marks: string[];
                        object: string;
                        text: string;
                    }[];
                    object: string;
                }[];
                object: string;
                type: string;
            }[];
        };
        object: string;
    };
    createdAt: string;
    createdBy: string;
    id: string;
    isOptimistic: boolean;
    isUploadPending: boolean;
    type: string;
    webhookId: string;
}

Properties

channelId: string
content: {
    document: {
        data: {
            profile: {
                name: string;
                profilePicture: string;
            };
        };
        nodes: {
            data: object;
            nodes: {
                leaves: {
                    marks: string[];
                    object: string;
                    text: string;
                }[];
                object: string;
            }[];
            object: string;
            type: string;
        }[];
    };
    object: string;
}
createdAt: string
createdBy: string
id: string
isOptimistic: boolean
isUploadPending: boolean
type: string
webhookId: string