36 lines
563 B
Java
36 lines
563 B
Java
package com.example.message;
|
|
|
|
import java.util.List;
|
|
|
|
public class OrgId {
|
|
|
|
private String anyBIC;
|
|
private String lEI;
|
|
private List<Othr> othr;
|
|
|
|
public String getAnyBIC() {
|
|
return anyBIC;
|
|
}
|
|
|
|
public void setAnyBIC(String anyBIC) {
|
|
this.anyBIC = anyBIC;
|
|
}
|
|
|
|
public String getLEI() {
|
|
return lEI;
|
|
}
|
|
|
|
public void setLEI(String lEI) {
|
|
this.lEI = lEI;
|
|
}
|
|
|
|
public List<Othr> getOthr() {
|
|
return othr;
|
|
}
|
|
|
|
public void setOthr(List<Othr> othr) {
|
|
this.othr = othr;
|
|
}
|
|
|
|
}
|