/* Options: Date: 2026-01-12 02:46:55 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qa-business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CloneAdRequest.* //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 BusinessApi { @Route(Path="/ad/clone", Verbs="POST") public static class CloneAdRequest implements IReturn, IPost, IHasAdId { public Long adId = null; public Long getAdId() { return adId; } public CloneAdRequest setAdId(Long value) { this.adId = value; return this; } private static Object responseType = CloneAdResponse.class; public Object getResponseType() { return responseType; } } public static class CloneAdResponse { public Long newAdId = null; public UUID newAdGuid = null; public Long getNewAdId() { return newAdId; } public CloneAdResponse setNewAdId(Long value) { this.newAdId = value; return this; } public UUID getNewAdGuid() { return newAdGuid; } public CloneAdResponse setNewAdGuid(UUID value) { this.newAdGuid = value; return this; } } public static interface IHasAdId { public Long adId = null; } }