/* Options: Date: 2026-06-13 03:56: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: DocumentSharePolicyRequest.* //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/documentshare/policy", Verbs="GET,PUT,OPTIONS") open class DocumentSharePolicyRequest : IReturn { open var HighTierNoSmsFallback:String? = null open var DefaultExpiryHours:Int? = null open var MaxExpiryHours:Int? = null open var DefaultMaxViews:Int? = null open var AllowAdhocEmail:Boolean? = null companion object { private val responseType = DocumentSharePolicyResponse::class.java } override fun getResponseType(): Any? = DocumentSharePolicyRequest.responseType } open class DocumentSharePolicyResponse { open var ResponseStatus:ResponseStatus? = null open var Policy:DocumentSharePolicy? = null } open class DocumentSharePolicy { open var DocumentSharePolicyId:Int? = null open var HighTierNoSmsFallback:String? = null open var DefaultExpiryHours:Int? = null open var MaxExpiryHours:Int? = null open var DefaultMaxViews:Int? = null open var AllowAdhocEmail:Boolean? = null open var UpdatedAtUtc:Date? = null open var UpdatedByUserId:UUID? = null }