cn.authing.sdk.java.dto.TriggerWebhookData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import cn.authing.sdk.java.dto.Any;
public class TriggerWebhookData {
/**
* 原来接口返回的 response 数据
*/
@JsonProperty("response")
private Any response;
public Any getResponse() {
return response;
}
public void setResponse(Any response) {
this.response = response;
}
}