export Orchestration

interface Orchestration {
    account_id?: null | string;
    created_at?: string;
    funding_source?: FundingSource;
    id?: null | string;
    mode?: OrchestrationMode;
    payment_pushes?: null | PaymentPushCreateDeets[];
    short_id?: null | string;
    status?: OrchestrationStatus;
    user_id?: null | string;
}

Properties

account_id?: null | string
created_at?: string
funding_source?: FundingSource
id?: null | string
payment_pushes?: null | PaymentPushCreateDeets[]
short_id?: null | string
user_id?: null | string