/**
 * The request as defined in OpenApi Spec.
 * @export
 * @interface LogOperation
 */
export interface LogOperation {
    /**
     * The OpenApi Operation Id associated with the request
     * @type {string}
     * @memberof LogOperation
     */
    id: string;
    /**
     * The OpenApi Operation name associated with the request
     * @type {string}
     * @memberof LogOperation
     */
    name: string;
}
export declare function LogOperationFromJSON(json: any): LogOperation;
export declare function LogOperationFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogOperation;
export declare function LogOperationToJSON(value?: LogOperation | null): any;
