@sourceloop/ctrl-plane-subscription-service
Version:
Subscription management microservice for SaaS control plane.
16 lines (15 loc) • 391 B
TypeScript
import { AnyObject, Model } from '@loopback/repository';
export declare class PaymentSourceDto extends Model {
id?: string;
customerId: string;
card?: ICard;
options?: AnyObject;
constructor(data?: Partial<PaymentSourceDto>);
}
export interface ICard {
gatewayAccountId: string;
number: string;
expiryMonth: number;
expiryYear: number;
cvv: string;
}