scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
14 lines (13 loc) • 353 B
TypeScript
import { EGlobalSettingsType } from "../enums/global-settings-type.enum";
export interface IMeliSettings {
accessToken: string;
acessToken_test: string;
public_key: string;
public_key_test: string;
client_secret: string;
active: boolean;
type: EGlobalSettingsType;
id: string;
createdAt: Date;
updatedAt: Date;
}