/* Options: Date: 2026-08-01 04:23:45 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: ClientWorkerRestrictionSetRequest.* //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/coverage/restriction", Verbs="POST") open class ClientWorkerRestrictionSetRequest : IReturn { open var BranchId:UUID? = null open var ClientContactID:Int? = null open var WorkerContactID:Int? = null open var RestrictionLevel:String? = null open var Reason:String? = null open var SourceRatingID:Int? = null companion object { private val responseType = ClientWorkerRestrictionsResponse::class.java } override fun getResponseType(): Any? = ClientWorkerRestrictionSetRequest.responseType } open class ClientWorkerRestrictionsResponse { open var Restrictions:ArrayList = ArrayList() open var Clients:ArrayList = ArrayList() open var Workers:ArrayList = ArrayList() open var ResponseStatus:ResponseStatus? = null } open class ClientWorkerRestriction { open var ClientWorkerRestrictionID:Int? = null open var BranchId:UUID? = null open var ClientContactID:Int? = null open var WorkerContactID:Int? = null open var RestrictionLevel:String? = null open var Reason:String? = null open var SourceRatingID:Int? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null open var ClientName:String? = null open var WorkerName:String? = null open var LevelLabel:String? = null } open class RestrictionParty { open var ContactId:Int? = null open var Name:String? = null }