/* Options: Date: 2025-08-05 02:10:25 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RestoreDataItem.* //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="/recycle-bin/dataItems", Verbs="PUT") public static class RestoreDataItem { public DataItemIdentification ItemIdentification = null; public DataItemIdentification getItemIdentification() { return ItemIdentification; } public RestoreDataItem setItemIdentification(DataItemIdentification value) { this.ItemIdentification = value; return this; } } public static class DataItemIdentification { public UUID Id = null; public String TypeName = null; public String ProviderName = null; public UUID getId() { return Id; } public DataItemIdentification setId(UUID value) { this.Id = value; return this; } public String getTypeName() { return TypeName; } public DataItemIdentification setTypeName(String value) { this.TypeName = value; return this; } public String getProviderName() { return ProviderName; } public DataItemIdentification setProviderName(String value) { this.ProviderName = value; return this; } } }