/** @description Basic structure for a resource to download */
export class ResourceDownload {
  /** @deprecated This property is not used by the platform */
  href?: string;
  /** @description Base64 encoded data for the resource */
  data?: string;
}
