| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | export interface PartnerInfo{    /**  id */    id?:string;    /**  昵称 */    nickname?:string;    /**  头像链接 */    avatarUrl?:string;    /**  年龄 */    age?:number;    /**  性别 */    sex?:number;    /**  星座 */    constellation?:string;    /**  等级 */    level?:number;    /**  标签 */    tagList?:Array<number>;    /**  签名 */    signature?:string;    /**  介绍语音 */    introduceVoice?:string;    /**  省 */    province?:string;    /**  市 */    city?:string;    /**  区 */    area?:string;}export interface RandomPartnerInfo{    /**  id */    id?:string;    /**  昵称 */    nickname?:string;    /**  头像链接 */    avatarUrl?:string;    /**  性别 */    sex?:number;}export interface GetRandomPartnerRequest{    /**  性别 */    sex?:number;}
 |