| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- export interface GetUserPhoneByCodeRequest{
- code?:string;
- type?:string;
- }
- export interface GetUserPhoneByCodeReply{
- phone?:string;
- }
- export interface ReduceSubscribeMessageRequest{
- subscribeId?:string;
- userId?:string;
- }
- export interface StatisticsSubscribeMessageRequest{
- idList?:Array<string>;
- }
- export interface FindIdentifyByAccountIDAndIsSubscribeRequest{
- accountIds?:Array<number>;
- }
- export interface FindIdentifyByAccountIDAndIsSubscribeReply{
- list?:Array<FindIdentifyByAccountIDInfo>;
- }
- export interface FindIdentifyByAccountIDInfo{
- openId?:string;
- appid?:string;
- accountId?:number;
- /** 类型(小程序、公众号用户) */
- type?:string;
- }
- export interface GetGetGzhConfigReply{
- /** 公众号Id */
- appId?:string;
- /** 公众号名称 */
- name?:string;
- /** 公众号图片 */
- imageUrl?:string;
- /** 公众号隐私政策链接 */
- privacyPolicyUrl?:string;
- /** 公众号用户协议链接 */
- userAgreementUrl?:string;
- noteSubscribeTemplateIds?:Array<string>;
- chatSubscribeTemplateIds?:Array<string>;
- registerSubscribeTemplateIds?:Array<string>;
- contactUrl?:string;
- isOpenActive?:boolean;
- activeLink?:string;
- /** 隐私政策 */
- privacyPolicyHTML?:string;
- /** 用户协议 */
- userAgreementHTML?:string;
- /** vip充值协议 */
- vipPolicyHTML?:string;
- messageSubscribeTemplateIds?:Array<string>;
- }
- export interface GetIdentifyByAccountIDRequest{
- accountId?:number;
- appid?:string;
- }
- export interface GetIdentifyByAccountIDReply{
- openId?:string;
- appid?:string;
- /** 类型(小程序、公众号用户) */
- type?:string;
- }
- export interface CheckTextRequest{
- /** 待审核的文本 */
- text?:string;
- }
- export interface CheckTextReply{
- /** 是否通过 */
- isPass?:boolean;
- }
- export interface MediaID{
- mediaId?:string;
- }
- export interface MaterialLink{
- link?:string;
- }
- export interface OpenIDAndAppIDRequest{
- openId?:string;
- appId?:string;
- }
- export interface IdentityInfo{
- pid?:string;
- accountId?:number;
- }
- 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 AuthorizationMiniProgramRequest{
- jsCode?:string;
- }
- export interface AuthorizationRequest{
- jsCode?:string;
- appId?:string;
- type?:string;
- fromOpenId?:string;
- sex?:number;
- }
- export interface TokenReply{
- token?:string;
- appId?:string;
- }
- export interface MiniProgramTokenReply{
- token?:string;
- appId?:string;
- isNeedMessage?:boolean;
- }
- export interface DebugLoginRequest{
- id?:number;
- code?:string;
- }
- export interface LoginToken{
- pid?:string;
- type?:string;
- }
|