mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
10 lines (9 loc) • 388 B
TypeScript
import { ESubsStatus } from '../../../general';
import { IPayioJwtPayloadSubscription } from '../interfaces/i-payload-subscription';
export declare class PayioJwtPayloadSubscriptionEntity implements IPayioJwtPayloadSubscription {
expiresAt: number;
id: string;
status: ESubsStatus;
usedTrial: boolean;
constructor(data?: Partial<PayioJwtPayloadSubscriptionEntity>);
}