
org.infobip.mobile.messaging.api.appinstance.AppInstance 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 java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class AppInstance {
private String pushRegId;
private Boolean regEnabled;
private Boolean notificationsEnabled;
private String sdkVersion;
private String appVersion;
private String os;
private String osVersion;
private String deviceManufacturer;
private String deviceModel;
private Boolean deviceSecure;
private String language;
private String deviceTimezoneOffset;
private String applicationUserId;
private String deviceName;
private Map customAttributes;
private Boolean isPrimary;
private PushServiceType pushServiceType;
private String pushServiceToken;
public AppInstance(String pushRegId) {
this.pushRegId = pushRegId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy