Documentation
    Preparing search index...
    Party: {
        Participants: {
            Participant: {
                AggregatorParticipant: {
                    _attributes: { SequenceNumber: string };
                    AggregatorID: string;
                    Name: string;
                };
            };
        };
        Sender: {
            TravelAgencySender: {
                AgencyID: number;
                Contacts: {
                    Contact: {
                        AddressContact: {
                            CityName: string;
                            CountryCode: string;
                            Street: string;
                        };
                        EmailContact: { Address: string };
                        Name: { Given: string; Surname: string };
                        PhoneContact: { Application: string; Number: string };
                    };
                };
                IATA_Number: string;
                Name: string;
            };
        };
    } = ...

    Type Declaration

    • Participants: {
          Participant: {
              AggregatorParticipant: {
                  _attributes: { SequenceNumber: string };
                  AggregatorID: string;
                  Name: string;
              };
          };
      }
    • Sender: {
          TravelAgencySender: {
              AgencyID: number;
              Contacts: {
                  Contact: {
                      AddressContact: {
                          CityName: string;
                          CountryCode: string;
                          Street: string;
                      };
                      EmailContact: { Address: string };
                      Name: { Given: string; Surname: string };
                      PhoneContact: { Application: string; Number: string };
                  };
              };
              IATA_Number: string;
              Name: string;
          };
      }