/* Options: Date: 2025-10-27 21:52:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCampaignActionInboxResponsesDetail.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/report/inboxresponses/{PublicAccessGuid}") export class GetCampaignActionInboxResponsesDetail implements IReturn { // @Required() public PublicAccessGuid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCampaignActionInboxResponsesDetail'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }