Documentation ¶
Index ¶
- type ConfigPay
- type ConfigPayChannelItem
- type ConfigPayList
- type ConfigWallet
- type ConfigWalletList
- type ConversationMidjourneySpeak
- type ConversationSpeak
- type ConversationSpeakItem
- type ConversationSpeakItemMjData
- type ConversationSpeakList
- type ConversationStreamUuid
- type ConversationTopic
- type ConversationTopicList
- type FinanceWalletFLow
- type FinanceWalletFLowList
- type FinanceWalletInfo
- type OauthSignUpSendCode
- type OauthSignUpValidateCode
- type OauthUserToken
- type ShopCalcOrderAmount
- type ShopGoods
- type ShopGoodsFeatItem
- type ShopGoodsList
- type ShopOrder
- type ShopOrderGoods
- type ShopOrderGoodsList
- type ShopOrderList
- type ShopPayOrder
- type UserInfo
- type UserList
- type WebsocketConversationMidjourneyListenerEvent
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigPay ¶
type ConfigPay struct { Id int `json:"id"` ApiName string `json:"api_name"` PayChannel []*ConfigPayChannelItem `json:"pay_channel"` FrontendDescription string `json:"frontend_description"` }
type ConfigPayChannelItem ¶
type ConfigPayList ¶
type ConfigPayList []*ConfigPay
type ConfigWallet ¶
type ConfigWalletList ¶
type ConfigWalletList []*ConfigWallet
type ConversationSpeak ¶
type ConversationSpeakItem ¶
type ConversationSpeakItemMjData ¶
type ConversationSpeakItemMjData struct { ActionType int `json:"action_type"` ImgUrl string `json:"img_url"` ThumbnailImgUrl string `json:"thumbnail_img_url"` Progress int `json:"progress"` Components []*midjourney.WsReceiveMessageDComponentsItem `json:"components"` Error string `json:"error"` }
type ConversationSpeakList ¶
type ConversationSpeakList []*ConversationSpeakItem
type ConversationStreamUuid ¶
type ConversationStreamUuid struct {
Uuid string `json:"uuid"`
}
type ConversationTopic ¶
type ConversationTopicList ¶
type ConversationTopicList []*ConversationTopic
type FinanceWalletFLow ¶
type FinanceWalletFLow struct { Id string `json:"id"` UserId string `json:"user_id"` Amount int `json:"amount"` Total int `json:"total"` IsIncr int `json:"is_incr"` TargetType int `json:"target_type"` TargetId int `json:"target_id"` Remark string `json:"remark"` Year int `json:"year"` Month int `json:"month"` Day int `json:"day"` CreatedAt int `json:"created_at"` UpdatedAt int `json:"updated_at"` }
type FinanceWalletFLowList ¶
type FinanceWalletFLowList []*FinanceWalletFLow
type FinanceWalletInfo ¶
type OauthSignUpSendCode ¶
type OauthSignUpSendCode struct { Email string `json:"email"` Code string `json:"code"` // 只有体验测试时才能返回实际code值 IntervalSecond int `json:"interval_second"` ExpireIn int `json:"expire_in"` }
OauthSignUpSendCode 发送验证码的返回值
type OauthSignUpValidateCode ¶
type OauthUserToken ¶
type ShopCalcOrderAmount ¶
type ShopCalcOrderAmount struct {
OrderAmount int `json:"order_amount"`
}
type ShopGoods ¶
type ShopGoods struct { Id string `json:"id"` Title string `json:"title"` Content string `json:"content"` FeatItems string `json:"feat_items"` FeatItemsSlice []*ShopGoodsFeatItem `json:"feat_items_slice"` BuyType int `json:"buy_type"` ActiveLevelId int `json:"active_level_id"` ActiveExpireType int `json:"active_expire_type"` BuyValue int `json:"buy_value"` MarketPrice int `json:"market_price"` RealPrice int `json:"real_price"` CreatedAt int `json:"created_at"` UpdatedAt int `json:"updated_at"` }
type ShopGoodsFeatItem ¶
type ShopGoodsList ¶
type ShopGoodsList []*ShopGoods
type ShopOrder ¶
type ShopOrder struct { Id string `json:"id"` OrderSn string `json:"order_sn"` UserId string `json:"user_id"` OrderAmount int `json:"order_amount"` PayAmount int `json:"pay_amount"` Status int `json:"status"` CreatedAt int `json:"created_at"` UpdatedAt int `json:"updated_at"` DueExpireAt int `json:"due_expire_at"` ExpiredAt int `json:"expired_at"` OrderGoodsList ShopOrderGoodsList `json:"order_goods_list"` }
type ShopOrderGoods ¶
type ShopOrderGoodsList ¶
type ShopOrderGoodsList []*ShopOrderGoods
type ShopOrderList ¶
type ShopOrderList []*ShopOrder
type ShopPayOrder ¶
type UserInfo ¶
type UserInfo struct { Id string `json:"id"` Username string `json:"username"` Nickname string `json:"nickname"` Avatar string `json:"avatar"` LevelId int `json:"level_id"` LevelName string `json:"level_name"` LevelExpireDate string `json:"level_expire_date"` CreatedAt int `json:"created_at"` LastLoginAt int `json:"last_login_at"` }
type WebsocketConversationMidjourneyListenerEvent ¶
type WebsocketConversationMidjourneyListenerEvent struct { ConversationId string `json:"conversation_id"` UserId string `json:"user_id"` TopicId string `json:"topic_id"` TopicTitle string `json:"topic_title"` TopicType int `json:"topic_type"` Role string `json:"role"` ActionType int `json:"action_type"` Content string `json:"content"` ImgUrl string `json:"img_url"` ThumbnailImgUrl string `json:"thumbnail_img_url"` Progress int `json:"progress"` Components []*midjourney.WsReceiveMessageDComponentsItem `json:"components"` ReferencedConversationId string `json:"referenced_conversation_id"` ReferencedComponents []*midjourney.WsReceiveMessageDComponentsItem `json:"referenced_components"` Error string `json:"error"` }
Click to show internal directories.
Click to hide internal directories.