sentry_protos 0.53.0

Rust bindings for sentry-protos
Documentation
// This file is @generated by prost-build.
/// Invalidates the contract-scoped Django cache entry used by GetQuotas for the
/// organization's current contract. Best-effort: a missing contract or lookup
/// failure is a no-op so callers can still schedule Relay project-config
/// refresh.
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct BustQuotasCacheRequest {
    #[prost(uint64, tag = "1")]
    pub organization_id: u64,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct BustQuotasCacheResponse {}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetQuotasRequest {
    #[prost(uint64, tag = "1")]
    pub organization_id: u64,
    #[prost(uint64, tag = "2")]
    pub project_id: u64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetQuotasResponse {
    #[prost(message, repeated, tag = "1")]
    pub quotas: ::prost::alloc::vec::Vec<super::super::super::QuotaConfig>,
    #[prost(bool, tag = "2")]
    pub contract_present: bool,
}