/* Options: Date: 2026-05-19 09:49:21 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetPromoterType.* //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="/warranty/promotertype", Verbs="GET") public static class GetPromoterType implements IReturn { private static Object responseType = GetPromoterTypeResponse.class; public Object getResponseType() { return responseType; } } public static class GetPromoterTypeResponse extends ArrayList { } public static class PromoterTypeItem { /** * Code of Promoter Type */ @ApiMember(Description="Code of Promoter Type", IsRequired=true) public String code = null; /** * Description of Promoter Type */ @ApiMember(Description="Description of Promoter Type", IsRequired=true) public String description = null; public String getCode() { return code; } public PromoterTypeItem setCode(String value) { this.code = value; return this; } public String getDescription() { return description; } public PromoterTypeItem setDescription(String value) { this.description = value; return this; } } }