Interface GatewayOptions

interface GatewayOptions {
    cacheKey?: string;
    cacheTtl?: number;
    collectLog?: boolean;
    id: string;
    metadata?: Record<string, null | string | number | bigint | boolean>;
    skipCache?: boolean;
}

Hierarchy

  • GatewayOptions
    • GatewayOptions

Properties

cacheKey?: string
cacheTtl?: number
collectLog?: boolean
id: string
metadata?: Record<string, null | string | number | bigint | boolean>
skipCache?: boolean