export interface StatisticsSubscribeMessageRequest{ idList?:Array; userId?:string; } export interface FindIdentifyByAccountIDAndIsSubscribeRequest{ accountIds?:Array; } export interface FindIdentifyByAccountIDAndIsSubscribeReply{ list?:Array; } export interface FindIdentifyByAccountIDInfo{ openId?:string; appid?:string; accountId?:number; } export interface GetGetGzhConfigReply{ /** 公众号Id */ appId?:string; /** 公众号名称 */ name?:string; /** 公众号图片 */ imageUrl?:string; /** 公众号隐私政策链接 */ privacyPolicyUrl?:string; /** 公众号用户协议链接 */ userAgreementUrl?:string; noteSubscribeTemplateIds?:Array; chatSubscribeTemplateIds?:Array; registerSubscribeTemplateIds?:Array; contactUrl?:string; } export interface GetIdentifyByAccountIDRequest{ accountId?:number; appid?:string; } export interface GetIdentifyByAccountIDReply{ openId?:string; appid?:string; } export interface CheckTextRequest{ /** 待审核的文本 */ text?:string; } export interface CheckTextReply{ /** 是否通过 */ isPass?:boolean; } export interface MediaID{ mediaId?:string; } export interface MaterialLink{ link?:string; } export interface RandomNicknameReply{ nickname?:string; } export interface RandomAvatarReply{ avatarUrl?:string; } export interface RandomAvatarListReply{ list?:Array; } export interface OpenIDAndAppIDRequest{ openId?:string; appId?:string; } export interface IdentityInfo{ pid?:string; } export interface UserInfoDB{ /** id */ id?:string; /** 昵称 */ nickname?:string; /** 头像链接 */ avatarUrl?:string; /** 手机号 */ phone?:string; /** 性别 */ sex?:number; /** 积分 */ credit?:number; } export interface PartnerInfoDB{ /** id */ id?:string; /** 昵称 */ nickname?:string; /** 头像链接 */ avatarUrl?:string; /** 手机号 */ phone?:string; /** 性别 */ sex?:number; /** 积分 */ credit?:number; } export interface AuthorizationRequest{ jsCode?:string; appId?:string; type?:string; fromOpenId?:string; sex?:number; } export interface TokenReply{ token?:string; appId?:string; } export interface DebugLoginRequest{ id?:number; code?:string; } export interface LoginToken{ pid?:string; type?:string; }