com.urbanairship.api.createandsend.parse.notification.email.EmailTemplateSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
package com.urbanairship.api.createandsend.parse.notification.email;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.urbanairship.api.createandsend.model.notification.email.EmailTemplate;
import java.io.IOException;
public class EmailTemplateSerializer extends JsonSerializer {
@Override
public void serialize(EmailTemplate template, JsonGenerator jgen, SerializerProvider provider) throws IOException {
jgen.writeStartObject();
if (template.getTemplateId().isPresent()) {
jgen.writeStringField("template_id", template.getTemplateId().get());
if (template.getVariableDetails().isPresent()) {
jgen.writeObjectField("variable_details", template.getVariableDetails().get());
}
} else if (template.getFields().isPresent()) {
jgen.writeObjectField("fields", template.getFields().get());
if (template.getVariableDetails().isPresent()) {
jgen.writeObjectField("variable_details", template.getVariableDetails().get());
}
}
jgen.writeEndObject();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy