/* Options: Date: 2026-06-01 15:14:23 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateRemMessage.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class RemAttributes { public SubscriberId: number; public Owner: string; public FromAddress: string; public ToAddresses: string; public CcAddresses: string; public Subject: string; public BodyType: string; public Body: string; public AutoSignerYn: boolean; public TrMessageType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BaseResponse { public Result: boolean; public ErrorCode: number; public ErrorMessage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CreateRemMessageResponse extends BaseResponse { public RemID: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/CreateRemMessage/{ClientKey}") export class CreateRemMessage implements IReturn { public ClientKey: string; public AuthorizationID: string; public RemAddressId: number; public RemAttributesValues: RemAttributes; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateRemMessage'; } public getMethod() { return 'POST'; } public createResponse() { return new CreateRemMessageResponse(); } }