/* Options: Date: 2026-09-22 23:39:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PhotoAnnotationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/photos/{AttachmentId}/annotation", Verbs="GET,PUT,OPTIONS") open class PhotoAnnotationRequest : IReturn { open var AttachmentId:UUID? = null open var AnnotationJson:String? = null open var FlattenedDataUrl:String? = null companion object { private val responseType = PhotoAnnotationResponse::class.java } override fun getResponseType(): Any? = PhotoAnnotationRequest.responseType } open class PhotoAnnotationResponse { open var ResponseStatus:ResponseStatus? = null open var Annotation:PhotoAnnotation? = null open var OriginalUrl:String? = null } open class PhotoAnnotation { open var PhotoAnnotationID:Int? = null open var AttachmentId:UUID? = null open var AnnotationJson:String? = null open var FlattenedAttachmentId:UUID? = null open var FlattenedUrl:String? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null }