interface TransactionMembers {
    connectionStrategy: string;
    countryCode: null | string;
    countryPrefix: null | string;
    hasAlternateConnections: boolean;
    hasCurrentConnection: boolean;
    hasErrors: boolean;
    locale: string;
    state: string;
    getAlternateConnections(): null | (Connection | EnterpriseConnection)[];
    getCurrentConnection(): Connection;
    getErrors(): null | Error[];
}

Hierarchy (view full)

Properties

connectionStrategy: string
countryCode: null | string
countryPrefix: null | string
hasAlternateConnections: boolean
hasCurrentConnection: boolean
hasErrors: boolean
locale: string
state: string

Methods