License

Copyright Paysafe 2024. All rights reserved.

interface DeliveryAddress {
    address1: string;
    address2?: string;
    address3?: string;
    city: string;
    countryCode: string;
    postalCode: string;
    state?: string;
}

Properties

address1: string
address2?: string
address3?: string
city: string
countryCode: string
postalCode: string
state?: string

Generated using TypeDoc