cecon-interfaces
Version:
Interfaces de Projetos Cecon
25 lines (24 loc) • 699 B
TypeScript
import { EAppActivationMode, EPayioAppSlug } from '../enums';
import { IPayioApp } from '../interfaces/i-app';
export declare class PayioAppEntity implements IPayioApp {
accessToken: string | null;
activationMode: EAppActivationMode;
active: boolean;
clientKey: string | null;
clientSecret: string | null;
createdAt: Date;
description: string;
downloadUrl: string;
expiresAt: Date | null;
expiresIn: number | null;
id: string;
name: string;
price: number;
refreshToken: string | null;
secret: string;
slug: EPayioAppSlug;
tags: string[];
updatedAt: Date;
version: string;
constructor(data?: Partial<PayioAppEntity>);
}