scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
27 lines (26 loc) • 735 B
TypeScript
import { IIuguCustomer } from '../interfaces';
import { IuguPaymentTokenEntity } from './payment-token.entity';
export declare class IuguCustomerEntity implements IIuguCustomer {
ccEmails: string;
city: string;
complement: string;
cpfCnpj: string;
createdAt: Date;
customVariables: Array<any>;
defaultPaymentMethodId: string;
district: string;
email: string;
id: string;
name: string;
notes: string;
number: string;
paymentMethods: IuguPaymentTokenEntity[];
phone: string;
phonePrefix: string;
proxyPaymentsFromCustomerId: string;
state: string;
street: string;
updatedAt: Date;
zipCode: string;
constructor(data?: Partial<IuguCustomerEntity>);
}