(* Options: Date: 2024-09-19 22:44:51 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation-test.sirva.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ContainerItemsRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Client_Initiations.ServiceModel.ClientUpload open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DocumentRequestBase() = /// ///ExternalID /// [] member val ExternalId:String = null with get,set [] type ResponseBase() = member val Message:String = null with get,set member val IsSuccess:Boolean = new Boolean() with get,set [] type ContainerItemsResponse() = inherit ResponseBase() member val ContainerItems:ResizeArray = new ResizeArray() with get,set [] [] type ContainerItemsRequest() = inherit DocumentRequestBase() interface IReturn