/**
 * @example
 *     {
 *         groupId: "PjRBMhWGen6aRHjif",
 *         text: "Your order has shipped! Here\u2019s your tracking number: 9114 5847 3325 9667 4328 88",
 *         visitorId: "kZMvWhf8npAu3H6qd57w2Hv6nh6rnxvg"
 *     }
 *
 * @example
 *     {
 *         text: "Your order has shipped! Here\u2019s your tracking number: 9114 5847 3325 9667 4328 88",
 *         visitorId: "kZMvWhf8npAu3H6qd57w2Hv6nh6rnxvg"
 *     }
 *
 * @example
 *     {
 *         agentId: "d9nKoegKSjmCtyK78",
 *         text: "Your order has shipped! Here\u2019s your tracking number: 9114 5847 3325 9667 4328 88",
 *         visitorId: "kZMvWhf8npAu3H6qd57w2Hv6nh6rnxvg"
 *     }
 */
export interface PostConversationsPushedMessagesRequest {
    /** agent ID. It can be found on agent’s page or received <a href="https://developers.brevo.com/docs/conversations-webhooks">from a webhook</a>. */
    agentId?: unknown;
    /** group ID. It can be found on group’s page. */
    groupId?: unknown;
    text?: unknown;
    visitorId?: unknown;
}
