/** * DTO for creating an image */ export interface SdPlatformRequestImageCreate { /** The image alt description */ alt?: string; /** An optional alias to use for the image */ alias?: string; /** * base 64 encoded representation of image * Examples: * * "data:image/png;base64,ACTUAL_BASE64_ENCODED_IMAGE" * * "ACTUAL_BASE64_ENCODED_IMAGE" */ imageData: string; } //# sourceMappingURL=SdPlatformRequestImage.d.ts.map