/** * #community_drawer.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ /** Request to set the monthly players count for an app */ export type SetMonthlyPlayersRequest = { /** The app slug of the app to update */ appSlug: string; /** The new monthly players count */ monthlyPlayers: number; }; /** Response for setting monthly players */ export type SetMonthlyPlayersResponse = { /** Whether the operation was successful */ success: boolean; /** Optional message about the operation; blank if there's nothing much to say */ message?: string | undefined; }; //# sourceMappingURL=community_drawer.d.ts.map