Name, address and tax details of a party.

PartyIdentification

interface PartyIdentification {
    address?: Address;
    partyId: string;
    taxRegistrationDetails?: TaxRegistrationDetail[];
}

Properties

address?: Address

PartyIdentification

partyId: string

Assigned Identification for the party.

PartyIdentification

taxRegistrationDetails?: TaxRegistrationDetail[]

Tax registration details of the entity.

PartyIdentification