com.facebook.ads.sdk.serverside.CustomEndpointResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of facebook-java-business-sdk Show documentation
Show all versions of facebook-java-business-sdk Show documentation
Facebook Business Solutions SDK for Java
package com.facebook.ads.sdk.serverside;
import com.google.gson.annotations.SerializedName;
/**
* Server side response to a custom endpoint
*/
public class CustomEndpointResponse {
@SerializedName("message")
public String message;
@SerializedName("response_code")
public String responseCode;
public CustomEndpointResponse(String message, String responseCode) {
this.message = message;
this.responseCode = responseCode;
}
}