/** * 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. */ import { CloudConnection } from './'; /** * * @export * @interface AssetCloudLink */ export interface AssetCloudLink { /** * * @type {number} * @memberof AssetCloudLink */ id: number; /** * * @type {CloudConnection} * @memberof AssetCloudLink */ connection: CloudConnection; /** * * @type {string} * @memberof AssetCloudLink */ readonly presignedAssetUrl: string | null; /** * * @type {Date} * @memberof AssetCloudLink */ readonly createdAt: Date; /** * * @type {number} * @memberof AssetCloudLink */ asset: number; } export declare function AssetCloudLinkFromJSON(json: any): AssetCloudLink; export declare function AssetCloudLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetCloudLink; export declare function AssetCloudLinkToJSON(value?: AssetCloudLink | null): any;