/* Options: Date: 2025-02-05 06:38:50 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CustomAttributeService.SaveAttributesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/api/CustomAttribute/SaveAttributes", Verbs="POST,GET") public static class SaveAttributesRequest implements IReturnVoid { public Integer Id = null; public ArrayList CustomAttributeValues = null; public Integer getId() { return Id; } public SaveAttributesRequest setId(Integer value) { this.Id = value; return this; } public ArrayList getCustomAttributeValues() { return CustomAttributeValues; } public SaveAttributesRequest setCustomAttributeValues(ArrayList value) { this.CustomAttributeValues = value; return this; } } public static class CustomAttributeValue { public Integer CustomAttributeId = null; public Integer CustomAttributeValueId = null; public Integer InstanceId = null; public String StoredValue = null; public String TypeName = null; public Boolean ReadOnly = null; public Integer getCustomAttributeId() { return CustomAttributeId; } public CustomAttributeValue setCustomAttributeId(Integer value) { this.CustomAttributeId = value; return this; } public Integer getCustomAttributeValueId() { return CustomAttributeValueId; } public CustomAttributeValue setCustomAttributeValueId(Integer value) { this.CustomAttributeValueId = value; return this; } public Integer getInstanceId() { return InstanceId; } public CustomAttributeValue setInstanceId(Integer value) { this.InstanceId = value; return this; } public String getStoredValue() { return StoredValue; } public CustomAttributeValue setStoredValue(String value) { this.StoredValue = value; return this; } public String getTypeName() { return TypeName; } public CustomAttributeValue setTypeName(String value) { this.TypeName = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public CustomAttributeValue setReadOnly(Boolean value) { this.ReadOnly = value; return this; } } }