/* Options: Date: 2026-01-29 14:58:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: VippsLoginRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/vipps/login", Verbs="GET") public static class VippsLoginRequest implements IReturn, IGet { public String nextRelativeUrl = null; public String getNextRelativeUrl() { return nextRelativeUrl; } public VippsLoginRequest setNextRelativeUrl(String value) { this.nextRelativeUrl = value; return this; } private static Object responseType = VippsLoginResponse.class; public Object getResponseType() { return responseType; } } public static class VippsLoginResponse { public String startUrl = null; public Date expiresAt = null; public String getStartUrl() { return startUrl; } public VippsLoginResponse setStartUrl(String value) { this.startUrl = value; return this; } public Date getExpiresAt() { return expiresAt; } public VippsLoginResponse setExpiresAt(Date value) { this.expiresAt = value; return this; } } }