> +import com.google.common.collect.ImmutableList; > + > +/** > + * Autoscale WebhookResponse. Extends Webhook with id and links. > + * > + * @see Webhook#getWebhooks() > + * @author Zack Shoylev > + */ > +public class WebhookResponse extends Webhook{ > + private final ImmutableList<Link> links; > + private final String id; > + > + @ConstructorProperties({ > + "name", "metadata", "links", "id" > + }) > + public WebhookResponse(String name, Map<String, Object> metadata, > List<Link> links, String id) {
Mark metadata as `@Nullable` here too? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/48/files#r7512840