photon_api/models/
compressed_proof.rs

1/*
2 * photon-indexer
3 *
4 * Solana indexer for general compression
5 *
6 * The version of the OpenAPI document: 0.45.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12
13#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
14pub struct CompressedProof {
15    #[serde(rename = "a")]
16    pub a: std::path::PathBuf,
17    #[serde(rename = "b")]
18    pub b: std::path::PathBuf,
19    #[serde(rename = "c")]
20    pub c: std::path::PathBuf,
21}
22
23impl CompressedProof {
24    pub fn new(
25        a: std::path::PathBuf,
26        b: std::path::PathBuf,
27        c: std::path::PathBuf,
28    ) -> CompressedProof {
29        CompressedProof { a, b, c }
30    }
31}