/* Options: Date: 2024-06-26 10:56:50 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateCompanySuperAdminUser.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/superadmin/administrator/", "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) export class CreateCompanySuperAdminUser implements ICompany { /** @description Enter the companyId for the customer */ // @ApiMember(Description="Enter the companyId for the customer", ParameterType="query") public CompanyId?: string; // @ApiMember(IsRequired=true) public Firstname: string; // @ApiMember(IsRequired=true) public Lastname: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateCompanySuperAdminUser'; } public getMethod() { return 'POST'; } public createResponse() {} }