control-see
Version:
Control Util Documentos Electronicos SUNAT
27 lines • 754 B
JavaScript
export class AgentParty {
get partyIdentification() {
return this._partyIdentification;
}
set partyIdentification(partyIdentification) {
this._partyIdentification = partyIdentification;
}
get partyName() {
return this._partyName;
}
set partyName(partyName) {
this._partyName = partyName;
}
get postalAddress() {
return this._postalAddress;
}
set postalAddress(postalAddress) {
this._postalAddress = postalAddress;
}
get partyLegalEntity() {
return this._partyLegalEntity;
}
set partyLegalEntity(partyLegalEntity) {
this._partyLegalEntity = partyLegalEntity;
}
}
//# sourceMappingURL=AgentParty.js.map