scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
12 lines (11 loc) • 396 B
TypeScript
import { IMeliPayerAddress } from "./i-meli-payer-address";
import { IMeliPayerIdentification } from "./i-meli-payer-identification";
import { IMeliPayerPhone } from "./i-meli-payer-phone";
export interface IMeliPreferencePayer {
address: IMeliPayerAddress;
email: string;
identification: IMeliPayerIdentification;
name: string;
phone: IMeliPayerPhone;
surname: string;
}