com.plaid.client.request.AssetReportAuditCopyCreateRequest 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.BaseClientRequest;
public final class AssetReportAuditCopyCreateRequest extends BaseClientRequest {
private String assetReportToken;
private String auditorId;
public AssetReportAuditCopyCreateRequest(String assetReportToken, String auditorId) {
this.assetReportToken = assetReportToken;
this.auditorId = auditorId;
}
}