Interface AccountStateChange

Una cuenta se conectó, o cambió de estado: dejó de funcionar, se refrescó, se desconectó.

interface AccountStateChange {
    field: "new_account" | "change_state_account";
    id_account: string;
    id_organization: string;
    originalChange?: Record<string, unknown>;
    social_network: SocialNetwork;
}

Hierarchy (View Summary)

Properties

field: "new_account" | "change_state_account"
id_account: string
id_organization: string
originalChange?: Record<string, unknown>

El cambio tal y como lo mandó la red social, sin tocar. Ausente en los que levanta PlanVortex por su cuenta, como new_account.

social_network: SocialNetwork