- package v2auth_response
- import (
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- type V2AuthSignsilentRecordResponse struct {
- ApplyCompany *common.AuthCompanyResponse `json:"applyCompany"`
- // 【授权结束时间】授权结束时间
- AuthEndDate string `json:"authEndDate"`
- // 【授权范围】授权范围
- AuthScope string `json:"authScope"`
- // 【授权状态】授权状态。生效中(EFFECT)、已过期(EXPIRED)、已取消(CANCEL)
- Status string `json:"status"`
- }
|