(* Options: Date: 2025-04-04 17:46:37 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CreateUuidAsync.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.xEric.Core.Services.Contracts.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net ///<summary> ///Specifies a base service to generate a Universal Unique Identifier. ///</summary> [<Api(Description="Specifies a base service to generate a Universal Unique Identifier.")>] [<AllowNullLiteral>] type CreateUuidBase() = interface IGet ///<summary> ///Represent a base response that encapsulate any ERiC API function return value. ///</summary> [<Api(Description="Represent a base response that encapsulate any ERiC API function return value.")>] [<AllowNullLiteral>] type EricFehlerCodeResponse() = inherit ServiceReponseBase() ///<summary> ///The status code that the ERiC API function returns. ///</summary> [<ApiMember(Description="The status code that the ERiC API function returns.")>] member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set ///<summary> ///The status message that the ERiC API function returns. ///</summary> [<ApiMember(Description="The status message that the ERiC API function returns.")>] member val StatusText:String = null with get,set ///<summary> ///Represents a type that encaspulates a Universal Unique Identifier (UUID). ///</summary> [<Api(Description="Represents a type that encaspulates a Universal Unique Identifier (UUID).")>] [<AllowNullLiteral>] type UuidResponse() = inherit EricFehlerCodeResponse() ///<summary> ///The generated Universal Unique Identifier. ///</summary> [<ApiMember(Description="The generated Universal Unique Identifier.")>] member val UUID:String = null with get,set ///<summary> ///An asynchronous service to generate a Universal Unique Identifier. ///</summary> [<Route("/CreateUuidAsync", "GET")>] [<Api(Description="An asynchronous service to generate a Universal Unique Identifier.")>] [<AllowNullLiteral>] type CreateUuidAsync() = inherit CreateUuidBase() interface IReturn<UuidResponse>