/** * #payments_verification.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ /** * The verification status of a devvit developer. This shows whether or not a user can receive payments * and their state in the verification flow. See design doc here: * https://docs.google.com/document/d/1HuAfNB_26jnNu7gGDHk-vafzgpnoNaFqHoumE2C40cA/edit?tab=t.0#bookmark=id.hm6xb18pqjvh */ export declare enum PaymentsVerificationStatus { UNKNOWN = 0, /** VERIFICATION_NOT_STARTED - User has not begun the verification process and is permitted to. */ VERIFICATION_NOT_STARTED = 1, /** VERIFICATION_PENDING - User has begun the verification process. */ VERIFICATION_PENDING = 2, /** * VERIFICATION_CAN_NOT_START - User is not eligible to receive payments. This may be because they're ineligible to apply for payments * or because they applied and were rejected. */ VERIFICATION_CAN_NOT_START = 3, /** VERIFICATION_SUCCESS - Verification has been completed and the user is able to receive payments. */ VERIFICATION_SUCCESS = 4, UNRECOGNIZED = -1 } /** Get verification status. */ export type GetPaymentsVerificationStatusRequest = {}; /** Return verification response. */ export type GetPaymentsVerificationStatusResponse = { status: PaymentsVerificationStatus; }; //# sourceMappingURL=payments_verification.d.ts.map