(* Options:
Date: 2025-04-11 03:21:04
Version: 6.10
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://staging-api.billiecart.com.au

//GlobalNamespace: 
//MakeDataContractsExtensible: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion: 
//ExportValueTypes: False
IncludeTypes: GetPersonRequest.*
//ExcludeTypes: 
//InitializeCollections: True
//AddNamespaces: 
*)

namespace Application.Interfaces

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type GetOperationUnTenanted<'TResponse>() = 
        interface IGet
        member val Embed:String = null with get,set

    [<AllowNullLiteral>]
    type IHasGetOptions = 
        abstract Embed:String with get,set

    [<AllowNullLiteral>]
    type UserAccountName() = 
        member val FirstName:String = null with get,set
        member val LastName:String = null with get,set

    [<AllowNullLiteral>]
    type Person() = 
        member val Name:UserAccountName = null with get,set
        member val DisplayName:String = null with get,set
        member val Email:String = null with get,set
        member val PhoneNumber:String = null with get,set
        member val Timezone:String = null with get,set
        member val DefaultOrganisationId:String = null with get,set
        member val Id:String = null with get,set

    [<AllowNullLiteral>]
    type IIdentifiableResource = 
        abstract Id:String with get,set

    [<AllowNullLiteral>]
    type GetPersonResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val Person:Person = null with get,set

    [<Route("/persons/{Id}", "GET")>]
    [<AllowNullLiteral>]
    type GetPersonRequest() = 
        inherit GetOperationUnTenanted<GetPersonResponse>()
        interface IReturn<GetPersonResponse>
        member val Id:String = null with get,set