/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface OpenData { /** * 开放数据类型 */ type: "userNickName" | "userAvatarUrl" | "userGender" | "userCity" | "userProvince" | "userCountry"; /** * 文本数据为空时的默认内容 */ "default-text"?: string; /** * 用户头像为空时的默认图片,支持相对路径和网络图片路径 */ "default-avatar"?: string; /** * 当数据为空且未设置默认值时,是否显示官方默认值 */ "use-empty-value"?: string; /** * 出现错误时触发 */ bindError?: () => void; }