/* Options: Date: 2025-12-06 07:27:58 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Subscriptions.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/v1/Subscriptions", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/Subscriptions/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class Subscriptions extends SubscriptionObject implements IReturn { public UUID ApiKey = null; public UUID getApiKey() { return ApiKey; } public Subscriptions setApiKey(UUID value) { this.ApiKey = value; return this; } private static Object responseType = SubscriptionsResponse.class; public Object getResponseType() { return responseType; } } public static class SubscriptionsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Subscriptions = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SubscriptionsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSubscriptions() { return Subscriptions; } public SubscriptionsResponse setSubscriptions(ArrayList value) { this.Subscriptions = value; return this; } } public static class SubscriptionObject { public UUID Id = null; public String Name = null; public String Description = null; public Double Cost = null; public Date BeginDate = null; public Date EndDate = null; public UUID getId() { return Id; } public SubscriptionObject setId(UUID value) { this.Id = value; return this; } public String getName() { return Name; } public SubscriptionObject setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SubscriptionObject setDescription(String value) { this.Description = value; return this; } public Double getCost() { return Cost; } public SubscriptionObject setCost(Double value) { this.Cost = value; return this; } public Date getBeginDate() { return BeginDate; } public SubscriptionObject setBeginDate(Date value) { this.BeginDate = value; return this; } public Date getEndDate() { return EndDate; } public SubscriptionObject setEndDate(Date value) { this.EndDate = value; return this; } } }