(* Options:
Date: 2025-04-04 23:23:58
Version: 8.52
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://taxfiling.staging.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
///
///Specifies a base service to generate a Universal Unique Identifier.
///
[]
[]
type CreateUuidBase() =
interface IGet
///
///Represent a base response that encapsulate any ERiC API function return value.
///
[]
[]
type EricFehlerCodeResponse() =
inherit ServiceReponseBase()
///
///The status code that the ERiC API function returns.
///
[]
member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set
///
///The status message that the ERiC API function returns.
///
[]
member val StatusText:String = null with get,set
///
///Represents a type that encaspulates a Universal Unique Identifier (UUID).
///
[]
[]
type UuidResponse() =
inherit EricFehlerCodeResponse()
///
///The generated Universal Unique Identifier.
///
[]
member val UUID:String = null with get,set
///
///An asynchronous service to generate a Universal Unique Identifier.
///
[]
[]
[]
type CreateUuidAsync() =
inherit CreateUuidBase()
interface IReturn