nominal-api 0.1206.0

API bindings for the Nominal platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This file is @generated by prost-build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BranchOrCommit {
    #[prost(oneof = "branch_or_commit::BranchOrCommit", tags = "1, 2")]
    pub branch_or_commit: ::core::option::Option<branch_or_commit::BranchOrCommit>,
}
/// Nested message and enum types in `BranchOrCommit`.
pub mod branch_or_commit {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum BranchOrCommit {
        #[prost(string, tag = "1")]
        Branch(::prost::alloc::string::String),
        #[prost(string, tag = "2")]
        Commit(::prost::alloc::string::String),
    }
}