/* Options:
Date: 2025-04-04 20:33:40
Version: 8.52
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://taxfiling.staging.pwc.de
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: CreateUuid.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Net;
using PwC.xEric.Core.Services.Contracts.Requests;
using PwC.xEric.Core.Services.Contracts.Responses;
namespace PwC.xEric.Core.Services.Contracts.Requests
{
///
///A synchronous service to generate a Universal Unique Identifier.
///
[Route("/CreateUuid", "GET")]
[Api(Description="A synchronous service to generate a Universal Unique Identifier.")]
public partial class CreateUuid
: CreateUuidBase, IReturn
{
}
///
///Specifies a base service to generate a Universal Unique Identifier.
///
[Api(Description="Specifies a base service to generate a Universal Unique Identifier.")]
public partial class CreateUuidBase
: IGet
{
}
}
namespace PwC.xEric.Core.Services.Contracts.Responses
{
///
///Represent a base response that encapsulate any ERiC API function return value.
///
[Api(Description="Represent a base response that encapsulate any ERiC API function return value.")]
public partial class EricFehlerCodeResponse
: ServiceReponseBase
{
///
///The status code that the ERiC API function returns.
///
[ApiMember(Description="The status code that the ERiC API function returns.")]
public virtual EricFehlerCode StatusCode { get; set; }
///
///The status message that the ERiC API function returns.
///
[ApiMember(Description="The status message that the ERiC API function returns.")]
public virtual string StatusText { get; set; }
}
///
///Represents a type that encaspulates a Universal Unique Identifier (UUID).
///
[Api(Description="Represents a type that encaspulates a Universal Unique Identifier (UUID).")]
public partial class UuidResponse
: EricFehlerCodeResponse
{
///
///The generated Universal Unique Identifier.
///
[ApiMember(Description="The generated Universal Unique Identifier.")]
public virtual string UUID { get; set; }
}
}