@cfxlabsinc/b2b-services
    Preparing search index...

    A Victor ledger program as exposed to admin callers. id is the row's external id (vprog_…); victorLedgerProgramId is the opaque Victor token that FBO victor_account rows carry and that drives virtual-account creation. beneficiaryName overrides the bank template beneficiary for this program's virtual accounts (null falls back to the bank template).

    type VictorProgram = {
        active: boolean;
        beneficiaryName: string | null;
        createdAt: Date;
        deletedAt: Date | null;
        description: string | null;
        id: string;
        name: string;
        updatedAt: Date;
        victorLedgerProgramId: string;
    }
    Index

    Properties

    active: boolean
    beneficiaryName: string | null
    createdAt: Date
    deletedAt: Date | null
    description: string | null
    id: string
    name: string
    updatedAt: Date
    victorLedgerProgramId: string