<div>How to produce wsdl level documentation on compexmodel attributes? </div><div>Is there a way right now or how where should I look into in order to be able to produce these?</div><div><br></div><div>class Order(ComplexModel):</div>

<div><br></div><div>    __namespace__ = ""</div><div>    __doc__ "Represents single Ordrer"</div><div>    OrderId = Integer.customize(min_occurs=1, max_occurs=1, nillable=False, doc="Individual order id")</div>

<div>    TimeStamp = DateTime.customize(min_occurs=1, max_occurs=1, nillable=False, doc="Order time and date")</div><div><br></div><div>    .....</div><div><br></div><div>would produce:</div><div><br></div><div>

<div><xs:complexType name="Passage"></div><div><span class="" style="white-space:pre">                              </span><xs:annotation></div><div><span class="" style="white-space:pre">                      </span>      <xs:documentation xml:lang="en">Represents single Ordrer</div>

<div><span class="" style="white-space:pre">                    </span>      </xs:documentation></div><div><span class="" style="white-space:pre">                 </span>    </xs:annotation></div><div><span class="" style="white-space:pre">                               </span></xs:element></div>

<div><span class="" style="white-space:pre">                            </span><xs:sequence></div><div><span class="" style="white-space:pre">                                        </span><xs:element name="OrderId" type="xs:integer"  ></div><div>
<span class="" style="white-space:pre">                                               </span><xs:annotation></div>
<div><span class="" style="white-space:pre">                                    </span>      <xs:documentation xml:lang="en">Individual order id</div><div><span class="" style="white-space:pre">                                       </span>      </xs:documentation></div>

<div><span class="" style="white-space:pre">                                    </span>    </xs:annotation></div><div><span class="" style="white-space:pre">                                       </span></xs:element></div><div><span class="" style="white-space:pre">                                        </span><xs:element name="TimeStamp" type="xs:dateTime"  ></div>

<div><span class="" style="white-space:pre">                                            </span><xs:annotation></div><div><span class="" style="white-space:pre">                                      </span>      <xs:documentation xml:lang="en">Order time and date </div>
<div>
<span class="" style="white-space:pre">                                       </span>      </xs:documentation></div><div><span class="" style="white-space:pre">                                 </span>    </xs:annotation></div><div><span class="" style="white-space:pre">                                       </span></xs:element></div>

<div><span class="" style="white-space:pre">                            </span></xs:sequence></div><div><span class="" style="white-space:pre">                       </span></xs:complexType></div></div>