http://schemas.datacontract.org/2004/07/Microsoft.MT.Web.Service.V2
http://schemas.datacontract.org/2004/07/Microsoft.MT.Web.Service.V2 / Translation Complex Type
In This Topic
    Translation Complex Type
    In This Topic
    Namespace http://schemas.datacontract.org/2004/07/Microsoft.MT.Web.Service.V2
    Diagram
    TranslatedText Element Sequence Element Rating Element OriginalText Element Sequence Translation Complex Type
    Overview
    Sequence
    OriginalText xs:string
    Original text that was matched for this result. Only returned if the matched original text was different than the input text. Used to return the source text of a fuzzy match. Not returned for Microsoft Translator results.
    Rating optional xs:int
    Indicates the authority of the person making the quality decision. Machine Translation results will have a rating of 5. Anonymously provided translations will generally have a rating of 1 to 4, whilst authoritatively provided translations will generally have a rating of 6 to 10.
    Sequence optional xs:int
    TranslatedText xs:string
    The translated text.
    Used By
    Source
    <xs:complexType name="Translation" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:sequence>
        <xs:element name="OriginalText" nillable="true" type="xs:string" />
        <xs:element minOccurs="0" name="Rating" type="xs:int">
          <xs:annotation>
            <xs:appinfo>
              <DefaultValue EmitDefaultValue="false" xmlns="http://schemas.microsoft.com/2003/10/Serialization/" />
            </xs:appinfo>
          </xs:annotation>
        </xs:element>
        <xs:element minOccurs="0" name="Sequence" type="xs:int">
          <xs:annotation>
            <xs:appinfo>
              <DefaultValue EmitDefaultValue="false" xmlns="http://schemas.microsoft.com/2003/10/Serialization/" />
            </xs:appinfo>
          </xs:annotation>
        </xs:element>
        <xs:element name="TranslatedText" nillable="true" type="xs:string" />
      </xs:sequence>
    </xs:complexType>
    See Also