/* Options: Date: 2025-02-05 07:00:08 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CustomAttributeService.SaveAttributesRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/api/CustomAttribute/SaveAttributes", Verbs="POST,GET") open class SaveAttributesRequest : IReturnVoid { var Id:Int? = null var CustomAttributeValues:ArrayList = ArrayList() } open class CustomAttributeValue { var CustomAttributeId:Int? = null var CustomAttributeValueId:Int? = null var InstanceId:Int? = null var StoredValue:String? = null var TypeName:String? = null var ReadOnly:Boolean? = null }