(* Options:
Date: 2025-04-13 19:16:04
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: SectionGuestUpdateRequest.*
//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

    [<Route("/Sections/Guest/Update/{uuid}", "POST")>]
    [<AllowNullLiteral>]
    type SectionGuestUpdateRequest() = 
        interface IReturn<ResponseStatus>
        member val uuid:String = null with get,set
        member val authorizing_uuid:String = null with get,set
        member val guest_regent_ids:ResizeArray<Int32> = new ResizeArray<Int32>() with get,set