/* Options: Date: 2024-07-03 13:11:41 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: TestQvicklyApiSettingsQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class QvicklyApiSettingsTestResponse { /** @description If the settings works or not */ // @ApiMember(Description="If the settings works or not") public Success: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment/billmate/apisettings/test", "POST") // @ValidateRequest(Validator="IsAuthenticated") export class TestQvicklyApiSettingsQuery 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; /** @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); } public getTypeName() { return 'TestQvicklyApiSettingsQuery'; } public getMethod() { return 'POST'; } public createResponse() { return new QvicklyApiSettingsTestResponse(); } }