/* Options: Date: 2024-07-03 13:00:31 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCompanySuperAdminUser.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/superadmin/administrator/", "GET") // @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) export class GetCompanySuperAdminUser implements ICompany { /** @description Enter the companyId for the customer */ // @ApiMember(Description="Enter the companyId for the customer", ParameterType="query") public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCompanySuperAdminUser'; } public getMethod() { return 'GET'; } public createResponse() {} }