Interface AsukaPaidExportConsumeConfig

interface AsukaPaidExportConsumeConfig {
    credentials?: RequestCredentials;
    creditCost?: number;
    handler?: ((input: AsukaPaidExportConsumeInput & {
        licenseToken?: null | string;
        token?: null | string;
    }) => Promise<AsukaPaidExportConsumeResult>);
    headers?: Record<string, string>;
}

Properties

credentials?: RequestCredentials
creditCost?: number
handler?: ((input: AsukaPaidExportConsumeInput & {
    licenseToken?: null | string;
    token?: null | string;
}) => Promise<AsukaPaidExportConsumeResult>)
headers?: Record<string, string>