All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.oauth.response.OpenId Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.oauth.response;

import com.fasterxml.jackson.annotation.JsonProperty;

public class OpenId extends ErrorResponse{

    @JsonProperty("openId")
    private String openId;

    public String getOpenId() { return openId; }

    public void setOpenId(String openId) { this.openId = openId;}

    @Override
    public String toString() {
        return "OpenId{" +
                "openId = '" + openId + '\'' +
                "}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy