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