@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
26 lines (25 loc) • 684 B
TypeScript
import { Address } from './address';
import { Contact } from './contact';
export declare class ShippingLocation {
'address'?: Address | null;
'contact'?: Contact | null;
/**
* The unique identifier of the shipping location, for use as `shippingLocationId` when creating an order.
*/
'id'?: string;
/**
* The unique name of the shipping location.
*/
'name'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}