Class RegistrationUpdateModel
- java.lang.Object
-
- com.adobe.aio.event.management.model.RegistrationUpdateModel
-
- Direct Known Subclasses:
RegistrationCreateModel
public class RegistrationUpdateModel extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RegistrationUpdateModel.Builder<T extends RegistrationUpdateModel.Builder>
-
Field Summary
Fields Modifier and Type Field Description protected String
deliveryType
protected String
description
protected Boolean
enabled
protected Set<EventsOfInterestInputModel>
eventsOfInterestInputModels
protected String
name
protected String
runtimeAction
protected String
webhookUrl
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RegistrationUpdateModel.Builder
builder()
boolean
equals(Object o)
String
getDeliveryType()
String
getDescription()
Set<EventsOfInterestInputModel>
getEventsOfInterests()
String
getName()
String
getRuntimeAction()
String
getWebhookUrl()
int
hashCode()
Boolean
isEnabled()
String
toString()
-
-
-
Field Detail
-
name
protected String name
-
description
protected String description
-
webhookUrl
protected String webhookUrl
-
eventsOfInterestInputModels
protected Set<EventsOfInterestInputModel> eventsOfInterestInputModels
-
deliveryType
protected String deliveryType
-
runtimeAction
protected String runtimeAction
-
enabled
protected Boolean enabled
-
-
Method Detail
-
getName
public String getName()
-
getDescription
public String getDescription()
-
getWebhookUrl
public String getWebhookUrl()
-
getEventsOfInterests
public Set<EventsOfInterestInputModel> getEventsOfInterests()
-
isEnabled
public Boolean isEnabled()
-
getDeliveryType
public String getDeliveryType()
-
getRuntimeAction
public String getRuntimeAction()
-
builder
public static RegistrationUpdateModel.Builder builder()
-
-