Interface PaymentAddress

    interface PaymentAddress {
        addressLine: readonly string[];
        city: string;
        country: string;
        dependentLocality: string;
        organization: string;
        phone: string;
        postalCode: string;
        recipient: string;
        region: string;
        sortingCode: string;
        toJSON(): any;
    }

    Properties

    addressLine: readonly string[]
    city: string
    country: string
    dependentLocality: string
    organization: string
    phone: string
    postalCode: string
    recipient: string
    region: string
    sortingCode: string

    Methods