Package video.api.client.api.models
Class WebhooksCreationPayload
- java.lang.Object
-
- video.api.client.api.models.WebhooksCreationPayload
-
- All Implemented Interfaces:
Serializable
public class WebhooksCreationPayload extends Object implements Serializable
WebhooksCreationPayload- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_EVENTSstatic StringSERIALIZED_NAME_URL
-
Constructor Summary
Constructors Constructor Description WebhooksCreationPayload()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebhooksCreationPayloadaddEventsItem(String eventsItem)booleanequals(Object o)WebhooksCreationPayloadevents(List<String> events)List<String>getEvents()A list of the webhooks that you are subscribing to.StringgetUrl()The the url to which HTTP notifications are sent.inthashCode()voidsetEvents(List<String> events)voidsetUrl(String url)StringtoString()WebhooksCreationPayloadurl(String url)
-
-
-
Field Detail
-
SERIALIZED_NAME_EVENTS
public static final String SERIALIZED_NAME_EVENTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_URL
public static final String SERIALIZED_NAME_URL
- See Also:
- Constant Field Values
-
-
Method Detail
-
events
public WebhooksCreationPayload events(List<String> events)
-
addEventsItem
public WebhooksCreationPayload addEventsItem(String eventsItem)
-
getEvents
public List<String> getEvents()
A list of the webhooks that you are subscribing to. Currently \"video.encoding.quality.completed\" is the only option. video.encoding.quality.completed - a video encoding quality is ready for the video (for example the 720p quality hls encoding video is ready.)- Returns:
- events
-
url
public WebhooksCreationPayload url(String url)
-
getUrl
public String getUrl()
The the url to which HTTP notifications are sent. It could be any http or https URL.- Returns:
- url
-
setUrl
public void setUrl(String url)
-
-