cecon-interfaces
Version:
Interfaces de Projetos Cecon
23 lines (22 loc) • 571 B
TypeScript
import { EAppActivationMode, EPayioAppSlug } from '../enums';
export interface IPayioApp {
active: boolean;
activationMode: EAppActivationMode;
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[];
accessToken: string | null;
updatedAt: Date;
version: string;
}