use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CodespacesListRepoSecrets200Response {
#[serde(rename = "total_count")]
pub total_count: i32,
#[serde(rename = "secrets")]
pub secrets: Vec<models::RepoCodespacesSecret>,
}
impl CodespacesListRepoSecrets200Response {
pub fn new(total_count: i32, secrets: Vec<models::RepoCodespacesSecret>) -> CodespacesListRepoSecrets200Response {
CodespacesListRepoSecrets200Response {
total_count,
secrets,
}
}
}