/**
 * Platform
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * NearbyLogRequest
 * @export
 * @interface NearbyLogRequest
 */
export interface NearbyLogRequest {
    /**
     * edge id, -1 means all
     * @type {string}
     * @memberof NearbyLogRequest
     */
    edgeId?: string;
    /**
     * nearby size
     * @type {number}
     * @memberof NearbyLogRequest
     */
    nearbyNum?: number;
    /**
     * replica id
     * @type {string}
     * @memberof NearbyLogRequest
     */
    replicaId?: string;
    /**
     * run id
     * @type {string}
     * @memberof NearbyLogRequest
     */
    runId?: string;
    /**
     *
     * @type {Array<object>}
     * @memberof NearbyLogRequest
     */
    sortValue?: Array<object>;
    /**
     *
     * @type {Array<object>}
     * @memberof NearbyLogRequest
     */
    sortValues?: Array<object>;
    /**
     * time zone
     * @type {string}
     * @memberof NearbyLogRequest
     */
    timeZone?: string;
    /**
     * timestamp
     * @type {number}
     * @memberof NearbyLogRequest
     */
    timestamp?: number;
    /**
     * log type, 1:train, 2:deploy, 3:federate
     * @type {number}
     * @memberof NearbyLogRequest
     */
    type?: number;
}
/**
 * Check if a given object implements the NearbyLogRequest interface.
 */
export declare function instanceOfNearbyLogRequest(value: object): value is NearbyLogRequest;
export declare function NearbyLogRequestFromJSON(json: any): NearbyLogRequest;
export declare function NearbyLogRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NearbyLogRequest;
export declare function NearbyLogRequestToJSON(json: any): NearbyLogRequest;
export declare function NearbyLogRequestToJSONTyped(value?: NearbyLogRequest | null, ignoreDiscriminator?: boolean): any;
