com.urbanairship.api.channel.parse.ChannelUninstallDeviceSerializer 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.channel.parse;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.urbanairship.api.channel.model.ChannelUninstallDevice;
import java.io.IOException;
public class ChannelUninstallDeviceSerializer extends JsonSerializer {
@Override
public void serialize(ChannelUninstallDevice ChannelUninstallDevice, JsonGenerator jgen, SerializerProvider provider) throws IOException {
jgen.writeStartObject();
jgen.writeObjectField("channel_id", ChannelUninstallDevice.getChannelId());
jgen.writeObjectField("device_type", ChannelUninstallDevice.getChannelType().getIdentifier());
jgen.writeEndObject();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy