(* Options: Date: 2024-12-15 20:49:38 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: UpdatePersonRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces.Resources open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type PutPatchOperationUnTenanted<'TResponse>() = interface IPatch interface IPut [] type UserAccountName() = member val FirstName:String = null with get,set member val LastName:String = null with get,set [] 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 [] type IIdentifiableResource = abstract Id:String with get,set [] type UpdatePersonResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Person:Person = null with get,set [] [] type UpdatePersonRequest() = inherit PutPatchOperationUnTenanted() interface IReturn member val Id:String = null with get,set member val PhoneNumber:String = null with get,set member val Timezone:String = null with get,set