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

com.coinbase.api.entity.OAuthCodeResponse Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
package com.coinbase.api.entity;

public class OAuthCodeResponse extends Response {
    private static final long serialVersionUID = -594668473446848581L;
    
    private String _code;

    public String getCode() {
        return _code;
    }

    public void setCode(String code) {
        _code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy