import type * as Pinnacle from "../index.mjs"; /** * Response for get RCS campaign status. */ export interface RcsCampaignStatus { /** List of errors that occured. */ errors: string[]; /** The unique identifier of the RCS campaign. This identifier is a string that always begins with the prefix `rcs_`, for example: `rcs_1234567890`. */ id: string; /** * Current review status of the RCS campaign.
* * `INCOMPLETE`: Not submitted.
* `IN REVIEW`: Being reviewed by carriers.
* `VERIFIED`: Approved and ready to send messages.
* `FAILED`: Issues and errors related to the campaign's details. See [errors](rcs-campaign#response.body.errors) for these potential issues.
*/ status: Pinnacle.ProfileStatusEnum; }