UNPKG

@apideck/node

Version:
23 lines (22 loc) 634 B
/** * Apideck service provider associated with request. * @export * @interface LogService */ export interface LogService { /** * Apideck service provider id. * @type {string} * @memberof LogService */ id: string; /** * Apideck service provider name. * @type {string} * @memberof LogService */ name: string; } export declare function LogServiceFromJSON(json: any): LogService; export declare function LogServiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogService; export declare function LogServiceToJSON(value?: LogService | null): any;