| 1234567891011 |
- package contract_response
- type ContractSyncDuplicateResponse struct {
- // 【原文件在公有云平台的文件id】原文件在公有云平台的文件id
- OldId string `json:"oldId,omitempty"`
- // 【文件导入私有云后,冲突情况下私有云自动为其重新生成的文件id】文件导入私有云后,冲突情况下私有云自动为其重新生成的文件id
- NewId string `json:"newId,omitempty"`
- // 【文件主题名称】文件主题名称
- Subject string `json:"subject,omitempty"`
- }
|