/* Options: Date: 2026-01-29 15:07:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: VippsLoginRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class VippsLoginResponse { public startUrl: string; public expiresAt?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/vipps/login", "GET") export class VippsLoginRequest implements IReturn, IGet { public nextRelativeUrl?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'VippsLoginRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new VippsLoginResponse(); } } }