/* Options: Date: 2024-10-18 17:28:30 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reportfiling.staging.pwc.de //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FakeMsCountryCodeRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export enum MSCountryCode { AT = 'AT', BE = 'BE', BG = 'BG', CY = 'CY', CZ = 'CZ', DK = 'DK', EE = 'EE', FI = 'FI', FR = 'FR', DE = 'DE', GR = 'GR', HU = 'HU', HR = 'HR', IE = 'IE', IT = 'IT', LV = 'LV', LT = 'LT', LU = 'LU', MT = 'MT', NL = 'NL', PL = 'PL', PT = 'PT', RO = 'RO', SK = 'SK', SI = 'SI', ES = 'ES', SE = 'SE', GB = 'GB', } export class FakeMsCountryCodeRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'FakeMsCountryCodeRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new MSCountryCode(); } }