(* Options: Date: 2024-12-29 02:18:36 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: InstitutionRelationshipsUpdateRequest.* //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 InstitutionRelationshipRequest() = member val related_institution_id:Int32 = new Int32() with get,set member val relationship_type:String = null with get,set member val notes:String = null with get,set [] [] type InstitutionRelationshipsUpdateRequest() = interface IReturn member val institution_id:Int32 = new Int32() with get,set member val related_institutions:ResizeArray = new ResizeArray() with get,set member val authorizing_uuid:String = null with get,set