/* Options: Date: 2024-06-26 11:58:26 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateCompanySuperAdminUser.* //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="/superadmin/administrator/", Verbs="POST") @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) public static class CreateCompanySuperAdminUser implements ICompany { /** * Enter the companyId for the customer */ @ApiMember(Description="Enter the companyId for the customer", ParameterType="query") public UUID CompanyId = null; @ApiMember(IsRequired=true) public String Firstname = null; @ApiMember(IsRequired=true) public String Lastname = null; public UUID getCompanyId() { return CompanyId; } public CreateCompanySuperAdminUser setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getFirstname() { return Firstname; } public CreateCompanySuperAdminUser setFirstname(String value) { this.Firstname = value; return this; } public String getLastname() { return Lastname; } public CreateCompanySuperAdminUser setLastname(String value) { this.Lastname = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }