
com.megaport.api.dto.notifications.MessageGroupPreferencesDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
This library is a Java wrapper for the Megaport API.
The newest version!
package com.megaport.api.dto.notifications;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonGetter;
public class MessageGroupPreferencesDto {
private boolean subscribed;
private MessageGroup messageGroup;
private List details;
public MessageGroupPreferencesDto() {
}
public MessageGroupPreferencesDto(boolean subscribed, MessageGroup messageGroup) {
this.subscribed = subscribed;
this.messageGroup = messageGroup;
}
@JsonGetter
public boolean isSubscribed() {
return subscribed;
}
public void setSubscribed(boolean subscribed) {
this.subscribed = subscribed;
}
@JsonGetter
public MessageGroup getMessageGroup() {
return messageGroup;
}
@JsonGetter
public List getDetails() {
return details;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy