scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
15 lines (14 loc) • 533 B
TypeScript
import { BaseEntity } from '../../general';
import { EGlobalSettingsType } from '../enums';
import { IGoogleAuthSettings } from '../interfaces';
export declare class GoogleAuthSettingsEntity extends BaseEntity implements IGoogleAuthSettings {
authProviderX509CertUrl: string;
authUri: string;
googleClientId: string;
googleSecretKey: string;
javascriptOrigins: string[];
redirectUris: string[];
tokenUri: string;
type: EGlobalSettingsType;
constructor(data?: Partial<GoogleAuthSettingsEntity>);
}