use const_format::concatcp;
use super::amqp_constants::VENDOR;
pub(crate) mod event_hub_properties;
pub(crate) mod partition_properties;
const RESOURCE_NAME_KEY: &str = "name";
const PARTITION_NAME_KEY: &str = "partition";
const RESOURCE_TYPE_KEY: &str = "type";
const SECURITY_TOKEN_KEY: &str = "security_token";
const READ_OPERATION_VALUE: &str = "READ";
const EVENT_HUB_RESOURCE_TYPE_VALUE: &str = concatcp!(VENDOR, ":eventhub");
const PARTITION_RESOURCE_TYPE_VALUE: &str = concatcp!(VENDOR, ":partition");
mod response_map {
pub(super) const NAME: &str = "name";
pub(super) const CREATED_AT: &str = "created_at";
pub(super) const PARTITION_IDENTIFIER: &str = "partition";
pub(super) const PARTITION_IDENTIFIERS: &str = "partition_ids";
pub(super) const PARTITION_BEGIN_SEQUENCE_NUMBER: &str = "begin_sequence_number";
pub(super) const PARTITION_LAST_ENQUEUED_SEQUENCE_NUMBER: &str =
"last_enqueued_sequence_number";
pub(super) const PARTITION_LAST_ENQUEUED_OFFSET: &str = "last_enqueued_offset";
pub(super) const PARTITION_LAST_ENQUEUED_TIME_UTC: &str = "last_enqueued_time_utc";
pub(super) const PARTITION_RUNTIME_INFO_PARTITION_IS_EMPTY: &str = "is_partition_empty";
}