/* Options: Date: 2024-06-26 08:26:11 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: QvicklyApiSettingsQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class QvicklyApiSettingsQueryResponse { /** @description The company id */ // @ApiMember(Description="The company id") public CompanyId: string; /** @description The Qvickly id */ // @ApiMember(Description="The Qvickly id") public Id: number; /** @description The Qvickly secret */ // @ApiMember(Description="The Qvickly secret") public Secret: string; /** @description The Qvickly receiver email */ // @ApiMember(Description="The Qvickly receiver email") public ReceiverEmail: string; /** @description The Qvickly receiver firstname */ // @ApiMember(Description="The Qvickly receiver firstname") public ReceiverFirstname: string; /** @description The Qvickly receiver lastname */ // @ApiMember(Description="The Qvickly receiver lastname") public ReceiverLastname: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment/billmate/apisettings", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class QvicklyApiSettingsQuery implements IReturn, ICompany { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'QvicklyApiSettingsQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new QvicklyApiSettingsQueryResponse(); } }