/* Options: Date: 2024-04-27 12:11:20 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateOrganization.* //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="/orgs", Verbs="POST") public static class CreateOrganization implements IReturn, IPost { public String name = null; public String slug = null; public String description = null; public Long refId = null; public String refSource = null; public String refUrn = null; public String getName() { return name; } public CreateOrganization setName(String value) { this.name = value; return this; } public String getSlug() { return slug; } public CreateOrganization setSlug(String value) { this.slug = value; return this; } public String getDescription() { return description; } public CreateOrganization setDescription(String value) { this.description = value; return this; } public Long getRefId() { return refId; } public CreateOrganization setRefId(Long value) { this.refId = value; return this; } public String getRefSource() { return refSource; } public CreateOrganization setRefSource(String value) { this.refSource = value; return this; } public String getRefUrn() { return refUrn; } public CreateOrganization setRefUrn(String value) { this.refUrn = value; return this; } private static Object responseType = CreateOrganizationResponse.class; public Object getResponseType() { return responseType; } } public static class CreateOrganizationResponse { public Integer id = null; public String slug = null; public ResponseStatus responseStatus = null; public Integer getId() { return id; } public CreateOrganizationResponse setId(Integer value) { this.id = value; return this; } public String getSlug() { return slug; } public CreateOrganizationResponse setSlug(String value) { this.slug = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public CreateOrganizationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }