123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- package models
- type ApifoxModal struct {
- ErrorCode interface{} `json:"errorCode"`
- ErrorMsg interface{} `json:"errorMsg"`
- Result []Result `json:"result"`
- Success bool `json:"success"`
- Timestamp int64 `json:"timestamp"`
- }
- type Result struct {
- ActivityJoinType string `json:"activityJoinType"`
- Banner string `json:"banner"`
- BusinessCardOpen string `json:"businessCardOpen"`
- BusinessCardRequired string `json:"businessCardRequired"`
- CertificateInformationOpen string `json:"certificateInformationOpen"`
- CertificateInformationRequired string `json:"certificateInformationRequired"`
- CompanyCodeOpen string `json:"companyCodeOpen"`
- CompanyCodeRequired string `json:"companyCodeRequired"`
- CompanyInfo string `json:"companyInfo"`
- CompanyShortNameOpen string `json:"companyShortNameOpen"`
- CompanyShortNameRequired string `json:"companyShortNameRequired"`
- End string `json:"end"`
- ID string `json:"id"`
- IndustrySwName string `json:"industrySwName"`
- InviteeOpen *string `json:"inviteeOpen"`
- InviteeRequired *string `json:"inviteeRequired"`
- JobNameOpen string `json:"jobNameOpen"`
- JobNameRequired string `json:"jobNameRequired"`
- MailOpen string `json:"mailOpen"`
- MailRequired string `json:"mailRequired"`
- PersonNameOpen string `json:"personNameOpen"`
- PersonNameRequired string `json:"personNameRequired"`
- PersonTelephoneOpen string `json:"personTelephoneOpen"`
- PersonTelephoneRequired string `json:"personTelephoneRequired"`
- SignUpEnd string `json:"signUpEnd"`
- SignUpStart string `json:"signUpStart"`
- Start string `json:"start"`
- SyncFlag string `json:"syncFlag"`
- Title string `json:"title"`
- Type string `json:"type"`
- URL string `json:"url"`
- }
- type ApifoxModalDetail struct {
- ErrorCode interface{} `json:"errorCode"`
- ErrorMsg interface{} `json:"errorMsg"`
- Result Result `json:"result"`
- Success bool `json:"success"`
- Timestamp int64 `json:"timestamp"`
- }
- type ResultDetail struct {
- GuestIntroduceType string `json:"guestIntroduceType"`
- GuestPersonList []UserList `json:"guestPersonList"`
- GuestPicURL string `json:"guestPicUrl"`
- }
- type UserList struct {
- CompanyName string `json:"companyName"`
- HeadPortraitURL string `json:"headPortraitUrl"`
- ID string `json:"id"`
- JobName string `json:"jobName"`
- PersonIntroduction *string `json:"personIntroduction"`
- PersonName string `json:"personName"`
- }
- type ApifoxModaldetail struct {
- ErrorCode interface{} `json:"errorCode"`
- ErrorMsg interface{} `json:"errorMsg"`
- Resultdetail Resultdetail `json:"result"`
- Success bool `json:"success"`
- Timestamp int64 `json:"timestamp"`
- }
- type Resultdetail struct {
- GuestIntroduceType string `json:"guestIntroduceType"`
- GuestPersonList []嘉宾列表 `json:"guestPersonList"`
- GuestPicURL string `json:"guestPicUrl"`
- }
- type 嘉宾列表 struct {
- CompanyName string `json:"companyName"`
- HeadPortraitURL string `json:"headPortraitUrl"`
- ID string `json:"id"`
- JobName string `json:"jobName"`
- PersonIntroduction *string `json:"personIntroduction"`
- PersonName string `json:"personName"`
- }
- type ApifoxModaluser struct {
- ErrorCode interface{} `json:"errorCode"`
- ErrorMsg interface{} `json:"errorMsg"`
- Result []Resultuser `json:"result"`
- Success bool `json:"success"`
- Timestamp int64 `json:"timestamp"`
- }
- type Resultuser111 struct {
- DeviceType *int64 `json:"deviceType"`
- Duration string `json:"duration"`
- EndTime string `json:"endTime"`
- ID string `json:"id,omitempty"`
- PersonTelephone string `json:"personTelephone,omitempty"`
- StartTime string `json:"startTime"`
- Status string `json:"status"`
- UserID string `json:"userId,omitempty"`
- }
- type Resultuser struct {
- DeviceType string `json:"deviceType"`
- Duration string `json:"duration"`
- DurationInteract string `json:"durationInteract"`
- DurationLive string `json:"durationLive"`
- DurationReview string `json:"durationReview"`
- EndTime string `json:"endTime"`
- EndTimeInteract string `json:"endTimeInteract"`
- EndTimeLive string `json:"endTimeLive"`
- EndTimeReview string `json:"endTimeReview"`
- ID string `json:"id"`
- JobName string `json:"jobName"`
- MobileCountryCode string `json:"mobileCountryCode"`
- PersonName string `json:"personName"`
- PersonTelephone string `json:"personTelephone"`
- StartTime string `json:"startTime"`
- StartTimeInteract string `json:"startTimeInteract"`
- StartTimeLive string `json:"startTimeLive"`
- StartTimeReview string `json:"startTimeReview"`
- Status string `json:"status"`
- UserID string `json:"userId,omitempty"`
- }
- type ApifoxModalUserTgc struct {
- Result 结果Map `json:"result"`
- Success bool `json:"success"`
- }
- type 结果Map struct {
- Tgc string `json:"tgc"`
- UserID string `json:"userId"`
- }
- type ApifoxModalSingUpClass struct {
- ErrorCode *string `json:"errorCode"`
- ErrorMsg *string `json:"errorMsg"`
- Result SingUpMap `json:"result"`
- Success bool `json:"success"`
- Timestamp float64 `json:"timestamp"`
- }
- type SingUpMap struct {
- Msg string `json:"msg"`
- }
- type ApifoxgetOriginalLink struct {
- Result string `json:"result"`
- Success bool `json:"success"`
- ErrorCode *string `json:"errorCode"`
- ErrorMsg *string `json:"errorMsg"`
- Timestamp float64 `json:"timestamp"`
- }
|