/** * Model: User * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ /** * A description of a user. */ export interface User { /** Unique stable id of the user. */ id: string; /** Name of the user. */ handle: string; /** URL link to the user's profile image. */ img_url: string; } //# sourceMappingURL=user.d.ts.map