/* Options: Date: 2025-10-27 22:29:40 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CustomersVerifyReviewById.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/customers/review/{Id}", Verbs="GET") @DataContract public static class CustomersVerifyReviewById implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @DataMember(Order=2) public UUID PublicAccessGuid = null; public Long getId() { return Id; } public CustomersVerifyReviewById setId(Long value) { this.Id = value; return this; } public UUID getPublicAccessGuid() { return PublicAccessGuid; } public CustomersVerifyReviewById setPublicAccessGuid(UUID value) { this.PublicAccessGuid = value; return this; } private static Object responseType = CustomersByIdResponse.class; public Object getResponseType() { return responseType; } } public static class CustomersByIdResponse { @DataMember(Order=1) public Long Id = null; @DataMember(Order=23) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public CustomersByIdResponse setId(Long value) { this.Id = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public CustomersByIdResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }