mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
16 lines (15 loc) • 413 B
TypeScript
import { EPayuioAppSlug } from '../enums';
import { IPayioApp } from '../interfaces/i-app';
export declare class PayioAppEntity implements IPayioApp {
active: boolean;
description: string;
downloadUrl: string;
id: string;
name: string;
price: number;
secret: string;
slug: EPayuioAppSlug;
tags: string[];
version: string;
constructor(data?: Partial<PayioAppEntity>);
}