com.plaid.client.request.ItemWebhookUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
package com.plaid.client.request;
import com.plaid.client.request.common.BaseAccessTokenRequest;
/**
* Request for /item/webhook/update endpoint.
*/
public final class ItemWebhookUpdateRequest extends BaseAccessTokenRequest {
private String webhook;
public ItemWebhookUpdateRequest(String accessToken, String webhook) {
super(accessToken);
this.webhook = webhook;
}
}