package common type RequestData struct { ContractRequest *ContractRequest `json:"contractRequest"` // core:true 【附件类型】附件类型 【作用】 1、普通附件:所有签署方可查看 2、内部附件:仅发起方可查看 【传参】 取值范围:ATTACHMENT(普通附件),SPONSOR_FILE(内部附件)。 AttachmentType string `json:"attachmentType"` // core:true 【附件文档类型】附件文档格式 【传参】 取值范围:pdf,doc,docx,wps,rtf,png,gif,jpg,jpeg,tiff,html,htm,xls,xlsx,txt,ofd,dwg。 【特殊说明】 通过文件名取不到文件类型时使用字段传值类型 FileType string `json:"fileType,omitempty"` UserRequest *NameUserInfoRequest `json:"userRequest,omitempty"` }