com.coinbase.advanced.model.converts.UserWarning Maven / Gradle / Ivy
/*
* Copyright 2024-present Coinbase Global, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.coinbase.advanced.model.converts;
import com.fasterxml.jackson.annotation.JsonProperty;
public class UserWarning {
@JsonProperty("id")
private String id;
@JsonProperty("link")
private Link link;
@JsonProperty("context")
private Context context;
@JsonProperty("code")
private String code;
@JsonProperty("message")
private String message;
public UserWarning() {}
private UserWarning(Builder builder) {
this.id = builder.id;
this.link = builder.link;
this.context = builder.context;
this.code = builder.code;
this.message = builder.message;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Link getLink() {
return link;
}
public void setLink(Link link) {
this.link = link;
}
public Context getContext() {
return context;
}
public void setContext(Context context) {
this.context = context;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public static class Builder {
private String id;
private Link link;
private Context context;
private String code;
private String message;
public Builder() {}
public Builder id(String id) {
this.id = id;
return this;
}
public Builder link(Link link) {
this.link = link;
return this;
}
public Builder context(Context context) {
this.context = context;
return this;
}
public Builder code(String code) {
this.code = code;
return this;
}
public Builder message(String message) {
this.message = message;
return this;
}
public UserWarning build() {
return new UserWarning(this);
}
}
}