#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2 {
#[prost(string, tag="1")]
pub name: ::prost::alloc::string::String,
#[prost(int32, tag="2")]
pub id: i32,
#[prost(string, tag="3")]
pub display_name: ::prost::alloc::string::String,
#[prost(int32, tag="4")]
pub portfolio_id: i32,
#[prost(message, optional, tag="5")]
pub base: ::core::option::Option<PairV2Entry>,
#[prost(message, optional, tag="6")]
pub counter: ::core::option::Option<PairV2Entry>,
#[prost(message, optional, tag="7")]
pub spread: ::core::option::Option<PairV2SpreadType>,
#[prost(double, tag="8")]
pub target_spread: f64,
#[prost(uint64, tag="9")]
pub cooldown_ms: u64,
#[prost(double, tag="10")]
pub amend_threshold: f64,
#[prost(message, optional, tag="11")]
pub nav: ::core::option::Option<PairV2Nav>,
#[prost(int64, tag="12")]
pub max_base_quantity: i64,
#[prost(enumeration="PairV2Status", tag="13")]
pub status: i32,
#[prost(message, optional, tag="14")]
pub create_time: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
#[prost(message, optional, tag="15")]
pub update_time: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
#[prost(uint32, optional, tag="16")]
pub pause_launch_no: ::core::option::Option<u32>,
#[prost(string, optional, tag="17")]
pub trading_window_start: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag="18")]
pub trading_window_end: ::core::option::Option<::prost::alloc::string::String>,
#[prost(bool, tag="19")]
pub slippage_guard: bool,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2Entry {
#[prost(string, tag="1")]
pub symbol: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub fund_code: ::prost::alloc::string::String,
#[prost(enumeration="super::common::OrderSide", tag="3")]
pub side: i32,
#[prost(int64, tag="4")]
pub quantity: i64,
#[prost(enumeration="super::common::RelativePriceSource", tag="5")]
pub price_source: i32,
#[prost(enumeration="super::hedge::OrderTpCode", tag="6")]
pub tp_code: i32,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PairV2SpreadType {
#[prost(oneof="pair_v2_spread_type::Kind", tags="1, 2")]
pub kind: ::core::option::Option<pair_v2_spread_type::Kind>,
}
pub mod pair_v2_spread_type {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Copy, PartialEq, ::prost::Oneof)]
pub enum Kind {
#[prost(message, tag="1")]
Scaled(super::PairV2ScaledSpread),
#[prost(message, tag="2")]
Nav(super::PairV2NavSpread),
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PairV2ScaledSpread {
#[prost(double, tag="1")]
pub k: f64,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PairV2NavSpread {
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct PairV2Nav {
#[prost(enumeration="super::common::EtfNavKind", tag="1")]
pub nav_kind: i32,
#[prost(int64, tag="2")]
pub basis: i64,
#[prost(bool, tag="3")]
pub dynamic_basis: bool,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetPairV2Request {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListPairV2sRequest {
#[prost(int32, optional, tag="1")]
pub page_size: ::core::option::Option<i32>,
#[prost(string, optional, tag="2")]
pub page_token: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, tag="3")]
pub filter: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListPairV2sResponse {
#[prost(message, repeated, tag="1")]
pub pair_v2s: ::prost::alloc::vec::Vec<PairV2>,
#[prost(string, tag="2")]
pub next_page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreatePairV2Request {
#[prost(message, optional, tag="1")]
pub pair_v2: ::core::option::Option<PairV2>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdatePairV2Request {
#[prost(message, optional, tag="1")]
pub pair_v2: ::core::option::Option<PairV2>,
#[prost(message, optional, tag="2")]
pub update_mask: ::core::option::Option<super::super::super::google::protobuf::FieldMask>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeletePairV2Request {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActivatePairV2Request {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PausePairV2Request {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2ExecutionLog {
#[prost(int32, tag="1")]
pub pair_id: i32,
#[prost(enumeration="PairV2ExecutionOutcome", tag="2")]
pub outcome: i32,
#[prost(double, tag="3")]
pub spread: f64,
#[prost(double, tag="4")]
pub target_spread: f64,
#[prost(uint64, optional, tag="5")]
pub base_order_id: ::core::option::Option<u64>,
#[prost(uint64, optional, tag="6")]
pub counter_order_id: ::core::option::Option<u64>,
#[prost(int64, tag="7")]
pub base_price: i64,
#[prost(int64, tag="8")]
pub counter_price: i64,
#[prost(int64, tag="9")]
pub base_qty: i64,
#[prost(int64, tag="10")]
pub counter_qty: i64,
#[prost(int64, tag="11")]
pub trigger_to_base_submit_us: i64,
#[prost(int64, tag="12")]
pub trigger_to_counter_submit_us: i64,
#[prost(message, optional, tag="13")]
pub dispatched_at: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
#[prost(string, optional, tag="14")]
pub detail: ::core::option::Option<::prost::alloc::string::String>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListPairV2ExecutionLogsRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
#[prost(int32, optional, tag="2")]
pub page_size: ::core::option::Option<i32>,
#[prost(string, optional, tag="3")]
pub page_token: ::core::option::Option<::prost::alloc::string::String>,
#[prost(enumeration="PairV2ExecutionOutcome", tag="4")]
pub outcome: i32,
#[prost(message, optional, tag="5")]
pub dispatched_from: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
#[prost(message, optional, tag="6")]
pub dispatched_to: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListPairV2ExecutionLogsResponse {
#[prost(message, repeated, tag="1")]
pub execution_logs: ::prost::alloc::vec::Vec<PairV2ExecutionLog>,
#[prost(string, tag="2")]
pub next_page_token: ::prost::alloc::string::String,
#[prost(int32, tag="3")]
pub total_count: i32,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StreamPairV2StatusRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LaunchPairV2OnceRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LaunchPairV2OnceResponse {
#[prost(bool, tag="1")]
pub accepted: bool,
#[prost(string, tag="2")]
pub reason: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CancelPairV2ResidualRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CancelPairV2ResidualResponse {
#[prost(uint64, repeated, tag="1")]
pub cancelled_order_ids: ::prost::alloc::vec::Vec<u64>,
#[prost(message, repeated, tag="2")]
pub errors: ::prost::alloc::vec::Vec<PairV2ResidualError>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AmendPairV2ResidualPctRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
#[prost(double, tag="2")]
pub amend_pct: f64,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2AmendedOrder {
#[prost(uint64, tag="1")]
pub original_order_id: u64,
#[prost(uint64, tag="2")]
pub amend_order_id: u64,
#[prost(string, tag="3")]
pub price: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AmendPairV2ResidualPctResponse {
#[prost(message, repeated, tag="1")]
pub amended_orders: ::prost::alloc::vec::Vec<PairV2AmendedOrder>,
#[prost(message, repeated, tag="2")]
pub errors: ::prost::alloc::vec::Vec<PairV2ResidualError>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2ResidualError {
#[prost(uint64, tag="1")]
pub order_id: u64,
#[prost(string, tag="2")]
pub reason: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2StatusUpdate {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
#[prost(enumeration="PairV2RuntimePhase", tag="2")]
pub phase: i32,
#[prost(message, optional, tag="3")]
pub updated_at: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
#[prost(uint32, tag="4")]
pub launch_count: u32,
#[prost(double, optional, tag="5")]
pub current_spread: ::core::option::Option<f64>,
#[prost(int64, optional, tag="6")]
pub base_top_quantity: ::core::option::Option<i64>,
#[prost(int64, optional, tag="7")]
pub counter_top_quantity: ::core::option::Option<i64>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2Order {
#[prost(int32, tag="1")]
pub pair_id: i32,
#[prost(enumeration="PairV2Slot", tag="2")]
pub slot: i32,
#[prost(uint32, tag="3")]
pub cycle_id: u32,
#[prost(uint64, tag="4")]
pub order_id: u64,
#[prost(uint64, optional, tag="5")]
pub original_order_id: ::core::option::Option<u64>,
#[prost(string, tag="6")]
pub symbol: ::prost::alloc::string::String,
#[prost(enumeration="super::common::OrderSide", tag="7")]
pub side: i32,
#[prost(string, tag="8")]
pub order_price: ::prost::alloc::string::String,
#[prost(int64, tag="9")]
pub order_quantity: i64,
#[prost(int64, tag="10")]
pub filled_quantity: i64,
#[prost(int64, tag="11")]
pub remaining_quantity: i64,
#[prost(string, tag="12")]
pub average_fill_price: ::prost::alloc::string::String,
#[prost(enumeration="PairV2OrderStatus", tag="13")]
pub status: i32,
#[prost(message, optional, tag="14")]
pub create_time: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
#[prost(message, optional, tag="15")]
pub update_time: ::core::option::Option<super::super::super::google::protobuf::Timestamp>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListPairV2OrdersRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
#[prost(int32, optional, tag="2")]
pub page_size: ::core::option::Option<i32>,
#[prost(string, optional, tag="3")]
pub page_token: ::core::option::Option<::prost::alloc::string::String>,
#[prost(bool, tag="4")]
pub live_only: bool,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListPairV2OrdersResponse {
#[prost(message, repeated, tag="1")]
pub orders: ::prost::alloc::vec::Vec<PairV2Order>,
#[prost(string, tag="2")]
pub next_page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PairV2LegSummary {
#[prost(enumeration="PairV2Slot", tag="1")]
pub slot: i32,
#[prost(string, tag="2")]
pub symbol: ::prost::alloc::string::String,
#[prost(int64, tag="3")]
pub ordered_quantity: i64,
#[prost(int64, tag="4")]
pub filled_quantity: i64,
#[prost(int64, tag="5")]
pub remaining_quantity: i64,
#[prost(string, tag="6")]
pub average_fill_price: ::prost::alloc::string::String,
#[prost(int64, tag="7")]
pub filled_amount: i64,
#[prost(string, tag="8")]
pub reference_price: ::prost::alloc::string::String,
#[prost(int64, tag="9")]
pub remaining_amount: i64,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetPairV2OrderSummaryRequest {
#[prost(string, tag="1")]
pub pair_v2: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetPairV2OrderSummaryResponse {
#[prost(message, repeated, tag="1")]
pub legs: ::prost::alloc::vec::Vec<PairV2LegSummary>,
#[prost(uint32, tag="2")]
pub launch_count: u32,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PairV2Status {
Unspecified = 0,
Active = 1,
Paused = 2,
Archived = 3,
}
impl PairV2Status {
pub fn as_str_name(&self) -> &'static str {
match self {
PairV2Status::Unspecified => "PAIR_V2_STATUS_UNSPECIFIED",
PairV2Status::Active => "PAIR_V2_STATUS_ACTIVE",
PairV2Status::Paused => "PAIR_V2_STATUS_PAUSED",
PairV2Status::Archived => "PAIR_V2_STATUS_ARCHIVED",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PAIR_V2_STATUS_UNSPECIFIED" => Some(Self::Unspecified),
"PAIR_V2_STATUS_ACTIVE" => Some(Self::Active),
"PAIR_V2_STATUS_PAUSED" => Some(Self::Paused),
"PAIR_V2_STATUS_ARCHIVED" => Some(Self::Archived),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PairV2RuntimePhase {
Unspecified = 0,
Idle = 1,
Tracking = 2,
Paused = 3,
}
impl PairV2RuntimePhase {
pub fn as_str_name(&self) -> &'static str {
match self {
PairV2RuntimePhase::Unspecified => "PAIR_V2_RUNTIME_PHASE_UNSPECIFIED",
PairV2RuntimePhase::Idle => "PAIR_V2_RUNTIME_PHASE_IDLE",
PairV2RuntimePhase::Tracking => "PAIR_V2_RUNTIME_PHASE_TRACKING",
PairV2RuntimePhase::Paused => "PAIR_V2_RUNTIME_PHASE_PAUSED",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PAIR_V2_RUNTIME_PHASE_UNSPECIFIED" => Some(Self::Unspecified),
"PAIR_V2_RUNTIME_PHASE_IDLE" => Some(Self::Idle),
"PAIR_V2_RUNTIME_PHASE_TRACKING" => Some(Self::Tracking),
"PAIR_V2_RUNTIME_PHASE_PAUSED" => Some(Self::Paused),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PairV2ExecutionOutcome {
Unspecified = 0,
Submitted = 1,
SkippedCooldown = 2,
SkippedMaxQuantity = 3,
SkippedPriceUnavailable = 4,
PartialFailure = 5,
Failed = 6,
}
impl PairV2ExecutionOutcome {
pub fn as_str_name(&self) -> &'static str {
match self {
PairV2ExecutionOutcome::Unspecified => "PAIR_V2_EXECUTION_OUTCOME_UNSPECIFIED",
PairV2ExecutionOutcome::Submitted => "PAIR_V2_EXECUTION_OUTCOME_SUBMITTED",
PairV2ExecutionOutcome::SkippedCooldown => "PAIR_V2_EXECUTION_OUTCOME_SKIPPED_COOLDOWN",
PairV2ExecutionOutcome::SkippedMaxQuantity => "PAIR_V2_EXECUTION_OUTCOME_SKIPPED_MAX_QUANTITY",
PairV2ExecutionOutcome::SkippedPriceUnavailable => "PAIR_V2_EXECUTION_OUTCOME_SKIPPED_PRICE_UNAVAILABLE",
PairV2ExecutionOutcome::PartialFailure => "PAIR_V2_EXECUTION_OUTCOME_PARTIAL_FAILURE",
PairV2ExecutionOutcome::Failed => "PAIR_V2_EXECUTION_OUTCOME_FAILED",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PAIR_V2_EXECUTION_OUTCOME_UNSPECIFIED" => Some(Self::Unspecified),
"PAIR_V2_EXECUTION_OUTCOME_SUBMITTED" => Some(Self::Submitted),
"PAIR_V2_EXECUTION_OUTCOME_SKIPPED_COOLDOWN" => Some(Self::SkippedCooldown),
"PAIR_V2_EXECUTION_OUTCOME_SKIPPED_MAX_QUANTITY" => Some(Self::SkippedMaxQuantity),
"PAIR_V2_EXECUTION_OUTCOME_SKIPPED_PRICE_UNAVAILABLE" => Some(Self::SkippedPriceUnavailable),
"PAIR_V2_EXECUTION_OUTCOME_PARTIAL_FAILURE" => Some(Self::PartialFailure),
"PAIR_V2_EXECUTION_OUTCOME_FAILED" => Some(Self::Failed),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PairV2Slot {
Unspecified = 0,
Base = 1,
Counter = 2,
}
impl PairV2Slot {
pub fn as_str_name(&self) -> &'static str {
match self {
PairV2Slot::Unspecified => "PAIR_V2_SLOT_UNSPECIFIED",
PairV2Slot::Base => "PAIR_V2_SLOT_BASE",
PairV2Slot::Counter => "PAIR_V2_SLOT_COUNTER",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PAIR_V2_SLOT_UNSPECIFIED" => Some(Self::Unspecified),
"PAIR_V2_SLOT_BASE" => Some(Self::Base),
"PAIR_V2_SLOT_COUNTER" => Some(Self::Counter),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PairV2OrderStatus {
Unspecified = 0,
Submitted = 1,
Received = 2,
PartiallyFilled = 3,
Filled = 4,
Amended = 5,
Cancelled = 6,
Rejected = 7,
}
impl PairV2OrderStatus {
pub fn as_str_name(&self) -> &'static str {
match self {
PairV2OrderStatus::Unspecified => "PAIR_V2_ORDER_STATUS_UNSPECIFIED",
PairV2OrderStatus::Submitted => "PAIR_V2_ORDER_STATUS_SUBMITTED",
PairV2OrderStatus::Received => "PAIR_V2_ORDER_STATUS_RECEIVED",
PairV2OrderStatus::PartiallyFilled => "PAIR_V2_ORDER_STATUS_PARTIALLY_FILLED",
PairV2OrderStatus::Filled => "PAIR_V2_ORDER_STATUS_FILLED",
PairV2OrderStatus::Amended => "PAIR_V2_ORDER_STATUS_AMENDED",
PairV2OrderStatus::Cancelled => "PAIR_V2_ORDER_STATUS_CANCELLED",
PairV2OrderStatus::Rejected => "PAIR_V2_ORDER_STATUS_REJECTED",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PAIR_V2_ORDER_STATUS_UNSPECIFIED" => Some(Self::Unspecified),
"PAIR_V2_ORDER_STATUS_SUBMITTED" => Some(Self::Submitted),
"PAIR_V2_ORDER_STATUS_RECEIVED" => Some(Self::Received),
"PAIR_V2_ORDER_STATUS_PARTIALLY_FILLED" => Some(Self::PartiallyFilled),
"PAIR_V2_ORDER_STATUS_FILLED" => Some(Self::Filled),
"PAIR_V2_ORDER_STATUS_AMENDED" => Some(Self::Amended),
"PAIR_V2_ORDER_STATUS_CANCELLED" => Some(Self::Cancelled),
"PAIR_V2_ORDER_STATUS_REJECTED" => Some(Self::Rejected),
_ => None,
}
}
}
include!("kdo.v1.pair_v2.tonic.rs");
include!("kdo.v1.pair_v2.serde.rs");