/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface MarkerPartialUpdate */ export interface MarkerPartialUpdate { /** * * @type {string} * @memberof MarkerPartialUpdate */ title?: string; /** * * @type {string} * @memberof MarkerPartialUpdate */ text?: string; /** * * @type {number} * @memberof MarkerPartialUpdate */ tIn?: number; /** * * @type {number} * @memberof MarkerPartialUpdate */ tOut?: number; /** * * @type {number} * @memberof MarkerPartialUpdate */ asset?: number; } export declare function MarkerPartialUpdateFromJSON(json: any): MarkerPartialUpdate; export declare function MarkerPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): MarkerPartialUpdate; export declare function MarkerPartialUpdateToJSON(value?: MarkerPartialUpdate | null): any;