(* Options: Date: 2024-10-06 10:27:11 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DirectoryBrowseRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace regis.ClassLibrary.Requests open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DirectoryPersonBrowseResponse() = member val directory_uuid:String = null with get,set member val imageBase64:String = null with get,set member val name:String = null with get,set member val is_active:Boolean = new Boolean() with get,set [] type DirectoryBrowseResponse() = member val persons:ResizeArray = new ResizeArray() with get,set member val total_items:Int32 = new Int32() with get,set member val current_page:Int32 = new Int32() with get,set [] [] type DirectoryBrowseRequest() = interface IReturn member val page:Int32 = new Int32() with get,set