/* Options: Date: 2026-04-05 18:17:48 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDealRecapTitleAndTermsForEntity.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Get-Deal-Recap-Title-And-Terms-For-Entity", Verbs="GET") public static class GetDealRecapTitleAndTermsForEntity implements IReturn { public Integer EntityId = null; public Integer getEntityId() { return EntityId; } public GetDealRecapTitleAndTermsForEntity setEntityId(Integer value) { this.EntityId = value; return this; } private static Object responseType = GetDealRecapTitleAndTermsForEntityViewModel.class; public Object getResponseType() { return responseType; } } public static class GetDealRecapTitleAndTermsForEntityViewModel { public String Title = null; public String Terms = null; public String getTitle() { return Title; } public GetDealRecapTitleAndTermsForEntityViewModel setTitle(String value) { this.Title = value; return this; } public String getTerms() { return Terms; } public GetDealRecapTitleAndTermsForEntityViewModel setTerms(String value) { this.Terms = value; return this; } } }