
org.infobip.mobile.messaging.api.appinstance.UserPersonalizeBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-mobile-messaging-api-java Show documentation
Show all versions of infobip-mobile-messaging-api-java Show documentation
Mobile Messaging SDK for Android
The newest version!
package org.infobip.mobile.messaging.api.appinstance;
import org.infobip.mobile.messaging.api.support.http.serialization.JsonSerializer;
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class UserPersonalizeBody {
private static final JsonSerializer serializer = new JsonSerializer(false);
private Map userIdentity;
private Map userAttributes;
@Override
public String toString() {
return serializer.serialize(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy