  package CosTrading.RegisterPackage;
  final public class OfferInfo {
    public org.omg.CORBA.Object reference;
    public java.lang.String type;
    public CosTrading.Property[] properties;
    public OfferInfo() {
    }
    public OfferInfo(
      org.omg.CORBA.Object reference,
      java.lang.String type,
      CosTrading.Property[] properties
    ) {
      this.reference = reference;
      this.type = type;
      this.properties = properties;
    }
    public java.lang.String toString() {
      org.omg.CORBA.Any any = org.omg.CORBA.ORB.init().create_any();
      CosTrading.RegisterPackage.OfferInfoHelper.insert(any, this);
      return any.toString();
    }
  }
