View Javadoc
1   package org.oxerr.chbtc.dto;
2   
3   import com.fasterxml.jackson.annotation.JsonProperty;
4   
5   public class OrderResponse extends CHBTCError {
6   
7   	private static final long serialVersionUID = 2014063001L;
8   
9   	private final long id;
10  
11  	public OrderResponse(
12  			@JsonProperty("code") final int code,
13  			@JsonProperty("message") final String message,
14  			@JsonProperty("id") final long id) {
15  		super(code, message);
16  		this.id = id;
17  	}
18  
19  	public long getId() {
20  		return id;
21  	}
22  
23  }