/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { DownloadableDataFileContentInterface } from './downloadableDataFileContentInterface'; import { DownloadableDataLinkExtensionInterface } from './downloadableDataLinkExtensionInterface'; /** * */ export interface DownloadableDataLinkInterface { /** * Sample(or link) id */ id?: number; title?: string; sortOrder: number; /** * Shareable status */ isShareable: number; /** * Price */ price: number; /** * Of downloads per user */ numberOfDownloads?: number; linkType: string; /** * relative file path */ linkFile?: string; linkFileContent?: DownloadableDataFileContentInterface; /** * Link url or null when type is 'file' */ linkUrl?: string; sampleType: string; /** * relative file path */ sampleFile?: string; sampleFileContent?: DownloadableDataFileContentInterface; /** * file URL */ sampleUrl?: string; extensionAttributes?: DownloadableDataLinkExtensionInterface; }