ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
22 lines (21 loc) • 522 B
TypeScript
interface AddressData {
type: number;
addressLine1: string;
addressLine2: string;
countryCode: string;
cityTown: string;
stateRegion: string;
postalZipCode: string;
}
interface ICreateAddressData extends AddressData {
}
interface IUpdateAddressData extends AddressData {
id: number;
}
interface IMakeAddressPrimaryData {
id: number;
}
interface IDeleteAddressData {
id: number;
}
export type { ICreateAddressData, IUpdateAddressData, IMakeAddressPrimaryData, IDeleteAddressData, };