/* Options: Date: 2024-11-21 11:46:12 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UnsubscribeNewsletter.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/newsletter/unsubscribe", Verbs="POST") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class UnsubscribeNewsletter implements IReturn> { public String Token = null; public UUID Uid = null; public String getToken() { return Token; } public UnsubscribeNewsletter setToken(String value) { this.Token = value; return this; } public UUID getUid() { return Uid; } public UnsubscribeNewsletter setUid(UUID value) { this.Uid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }