/** * 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 TimelineExportRequest */ export interface TimelineExportRequest { /** * * @type {object} * @memberof TimelineExportRequest */ project: object; /** * * @type {string} * @memberof TimelineExportRequest */ sequence?: string; /** * * @type {string} * @memberof TimelineExportRequest */ format: string; } export declare function TimelineExportRequestFromJSON(json: any): TimelineExportRequest; export declare function TimelineExportRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimelineExportRequest; export declare function TimelineExportRequestToJSON(value?: TimelineExportRequest | null): any;