/* Options:
Date: 2025-04-14 20:32:34
Version: 8.22
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://data.regent-college.edu

//Package: 
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddImplicitVersion: 
//AddDescriptionAsComments: True
IncludeTypes: DirectoryImageRequest.*
//ExcludeTypes: 
//InitializeCollections: True
//TreatTypesAsStrings: 
//DefaultImports: java.math.*,java.util.*,net.servicestack.client.*
*/

import java.math.*
import java.util.*
import net.servicestack.client.*


@Route(Path="/directory/image", Verbs="POST")
open class DirectoryImageRequest : IReturn<ByteArray>
{
    var directory_uuid:String? = null
    var uuid:String? = null
    var large:Boolean? = null
    var medium:Boolean? = null
    var original_size:Boolean? = null
    var ignore_share:Boolean? = null
    companion object { private val responseType = ByteArray::class.java }
    override fun getResponseType(): Any? = DirectoryImageRequest.responseType
}