Skip to content
Snippets Groups Projects
Verified Commit c417804b authored by Ubbo Veentjer's avatar Ubbo Veentjer
Browse files

feat: tgpublish copy has destUri now, add to tgclients databinding

parent bbcd0c21
No related branches found
No related tags found
1 merge request!46Resolve "Add tgpublish API client"
......@@ -103,9 +103,10 @@ class PublishError:
"namespace": "",
}
)
type: Optional[ErrorType] = field(
type_value: Optional[ErrorType] = field(
default=None,
metadata={
"name": "type",
"type": "Element",
"namespace": "",
}
......@@ -124,9 +125,10 @@ class PublishWarning:
"namespace": "",
}
)
type: Optional[WarningType] = field(
type_value: Optional[WarningType] = field(
default=None,
metadata={
"name": "type",
"type": "Element",
"namespace": "",
}
......@@ -166,6 +168,13 @@ class PublishObject:
"type": "Attribute",
}
)
dest_uri: Optional[str] = field(
default=None,
metadata={
"name": "destUri",
"type": "Attribute",
}
)
pid: Optional[str] = field(
default=None,
metadata={
......
......@@ -21,6 +21,7 @@
<xs:element maxOccurs="unbounded" minOccurs="0" name="warning" type="publishWarning"/>
</xs:sequence>
<xs:attribute name="uri" type="xs:string"/>
<xs:attribute name="destUri" type="xs:string"/>
<xs:attribute name="pid" type="xs:string"/>
<xs:attribute name="status" type="statusType"/>
</xs:complexType>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment