/** * Current status. * * @since 4.9.6 * @var string */ public $status = '';
/** * Timestamp this request was created. * * @since 4.9.6 * @var int|null */ public $created_timestamp = null;
/** * Timestamp this request was last modified. * * @since 4.9.6 * @var int|null */ public $modified_timestamp = null;
/** * Timestamp this request was confirmed. * * @since 4.9.6 * @var int|null */ public $confirmed_timestamp = null;
/** * Timestamp this request was completed. * * @since 4.9.6 * @var int|null */ public $completed_timestamp = null;
/** * Misc data assigned to this request. * * @since 4.9.6 * @var array */ public $request_data = array();
/** * Key used to confirm this request. * * @since 4.9.6 * @since 6.8.0 The key is now hashed using wp_fast_hash() instead of phpass. * * @var string */ public $confirm_key = '';