/** * #app_info.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type GetAppInfoBySlugRequest = { /** app slug */ slug: string; }; export type GetAppInfoBySlugResponse = { app?: AppInfo | undefined; }; export type AppInfo = { /** UUID of the app */ id: string; /** App account T2 ID */ appAccountId?: string | undefined; /** Base part of the slug before uniquifying */ slugBase: string; /** Unique app slug */ slug: string; /** Human-readable name */ name: string; /** App description */ description: string; /** NSFW flag */ isNsfw: boolean; /** Delisted flag */ isDelisted: boolean; /** Archived flag */ isArchived: boolean; /** First-party flag */ isFirstParty: boolean; /** Moderation/flagged status */ isFlagged: boolean; /** Created at */ createdAt?: string | undefined; /** Owner ID */ ownerId: string; /** Disabled flag */ isDisabled: boolean; }; //# sourceMappingURL=app_info.d.ts.map