/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * JSON schema for a log entry * @export * @interface LogEntry */ export interface LogEntry { /** * The label for the message to log, which determines grouping in cloudwatch. * @type {string} * @memberof LogEntry */ label?: string; /** * The message to log. * @type {string} * @memberof LogEntry */ message?: string; /** * The optional stacktrace to log. * @type {string} * @memberof LogEntry */ stacktrace?: string; } /** * Check if a given object implements the LogEntry interface. */ export declare function instanceOfLogEntry(value: object): value is LogEntry; export declare function LogEntryFromJSON(json: any): LogEntry; export declare function LogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogEntry; export declare function LogEntryToJSON(json: any): LogEntry; export declare function LogEntryToJSONTyped(value?: LogEntry | null, ignoreDiscriminator?: boolean): any;