@sourceloop/ctrl-plane-subscription-service
Version:
Subscription management microservice for SaaS control plane.
16 lines (15 loc) • 392 B
TypeScript
import { Entity } from '@loopback/repository';
import { Options } from 'loopback4-billing';
export declare class AddressDto extends Entity {
firstName: string;
lastName: string;
email: string;
company?: string;
phone?: string;
city: string;
state: string;
zip: string;
country: string;
options?: Options;
constructor(data?: Partial<AddressDto>);
}