/* Options: Date: 2026-01-29 14:58:36 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: VippsLoginCallbackRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using ConsumerApi; namespace ConsumerApi { [Route("/vipps/login/callback", "GET")] public partial class VippsLoginCallbackRequest : IReturn, IGet { public string State { get; set; } public string? Code { get; set; } public string? Scope { get; set; } public string? Error { get; set; } public string? ErrorDescription { get; set; } public string? ErrorHint { get; set; } } public partial class VippsLoginCallbackResponse { public VippsUserInfo? VippsUserInfo { get; set; } public string? NextRelativeUrl { get; set; } } public partial class VippsAddress { public VippsAddressType AddressType { get; set; } public string Country { get; set; } public string Formatted { get; set; } public string PostalCode { get; set; } public string Region { get; set; } public string StreetAddress { get; set; } } public enum VippsAddressType { Home, Work, Other, } public partial class VippsUserInfo { public VippsAddress Address { get; set; } public DateTimeOffset Birthdate { get; set; } public string? Email { get; set; } public bool? EmailVerified { get; set; } public string FamilyName { get; set; } public string GivenName { get; set; } public string Name { get; set; } public string PhoneNumber { get; set; } public string SessionIdentifier { get; set; } public string SubjectIdentifier { get; set; } } }