V2AuthSignsilentRecordResponse.go 524 B

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