ApplicableTradeCurrencyExchange.java
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* Copyright 2018 bejson.com
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableTradeCurrencyExchange {
@XmlElement(name = "SourceCurrencyCode",required = false)
private String SourceCurrencyCode;
@XmlElement(name = "TargetCurrencyCode",required = false)
private String TargetCurrencyCode;
@XmlElement(name = "MarketID",required = false)
private String MarketID;
@XmlElement(name = "ConversionRate",required = false)
private String ConversionRate;
public void setSourceCurrencyCode(String SourceCurrencyCode) {
this.SourceCurrencyCode = SourceCurrencyCode;
}
public String getSourceCurrencyCode() {
return SourceCurrencyCode;
}
public void setTargetCurrencyCode(String TargetCurrencyCode) {
this.TargetCurrencyCode = TargetCurrencyCode;
}
public String getTargetCurrencyCode() {
return TargetCurrencyCode;
}
public void setMarketID(String MarketID) {
this.MarketID = MarketID;
}
public String getMarketID() {
return MarketID;
}
public void setConversionRate(String ConversionRate) {
this.ConversionRate = ConversionRate;
}
public String getConversionRate() {
return ConversionRate;
}
}