Interface SendRequestOptions

interface SendRequestOptions {
    data: {
        account_id: string;
        hook_api_version?: string;
        title?: string;
    };
}

Properties

Properties

data: {
    account_id: string;
    hook_api_version?: string;
    title?: string;
}