cecon-interfaces
Version:
Interfaces de Projetos Cecon
27 lines (26 loc) • 767 B
TypeScript
import { DeveloperAppStatusEnum } from '../enums';
import { IDeveloperAppCredentials } from './i-developer-credentials';
export interface IDeveloperApp {
credentials: IDeveloperAppCredentials;
description: string | null;
developerId: string;
createdAt: Date;
updatedAt: Date;
developerName: string;
developerSlug: string;
homePageUrl: string | null;
homologatedAt: Date | null;
homologatedScopes: string[];
id: string;
imageUrl: string | null;
logoUrl: string | null;
name: string;
/**
* Reference para um appId external, como por exemplo o appId do NatiV2
*/
reference: string | null;
slug: string;
tags: string[];
softwareHouseName: string;
status: DeveloperAppStatusEnum;
}