/** * #developer_account.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type DeveloperAccountRegisterUserRequest = { /** Thing ID (T2 ID with prefix. eg, t2_123abc.) */ userId: string; /** Username */ userName: string; doesConsentToEmail: boolean; }; export type GetUserAccountInfoResponse = { /** The version of the developer terms & conditions accepted by the user upon Developer Account creation (ie, 2) */ acceptedTermsVersion: number; /** The current version of the developer terms & conditions */ currentTermsVersion: number; hasVerifiedEmail: boolean; /** User selected preferences for email communication from the Developer Platform */ doesConsentToEmail: boolean; /** Thing ID (T2 ID with prefix. eg, t2_123abc.), optional because user could be logged out */ userId?: string | undefined; }; export type DeveloperAccountInfo = { /** UUID of the Developer Account, assigned in database */ id: string; /** Thing I (T2 ID with prefix. eg, t2_123abc.), optional because user could be logged out */ userId: string; /** User's reddit username (eg, "spez") */ userName: string; createdAt?: string | undefined; /** The version of the developer terms & conditions accepted by the user upon Developer Account creation (ie, 2) */ acceptedTermsVersion: number; /** Timestamp of when the user accepted the current developer terms & conditions */ acceptedTermsVersionAt?: string | undefined; /** Whether the user has verified the email address associated with their Reddit Account */ hasVerifiedEmail: boolean; /** User selected preferences for email communication from the Developer Platform */ doesConsentToEmail: boolean; }; //# sourceMappingURL=developer_account.d.ts.map