/* Options:
Date: 2025-04-11 12:28:03
SwiftVersion: 5.0
Version: 8.22
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://data.regent-college.edu

//BaseClass: 
//AddModelExtensions: True
//AddServiceStackTypes: True
IncludeTypes: PersonKeyRequest.*
//ExcludeTypes: 
//ExcludeGenericBaseTypes: False
//AddResponseStatus: False
//AddImplicitVersion: 
//AddDescriptionAsComments: True
//InitializeCollections: True
//TreatTypesAsStrings: 
//DefaultImports: Foundation,ServiceStack
*/

import Foundation
import ServiceStack

// @Route("/person/keys", "POST")
public class PersonKeyRequest : IReturn, Codable
{
    public typealias Return = PersonKeyResponse

    public var regent_id:Int
    public var uuid:String
    public var regent_login:String
    public var regent_network_login:String

    required public init(){}
}

public class PersonKeyResponse : Codable
{
    public var responseStatus:ResponseStatus
    public var regent_id:Int
    public var re_id:Int
    public var sugar_id:String
    public var uuid:String
    public var student_id:Int?
    public var regent_login:String

    required public init(){}
}