/*
* Orvanta API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.3
* Contact: contact@orvanta.cloud
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OrvantaLargeFile {
#[serde(rename = "s3")]
pub s3: String,
}
impl OrvantaLargeFile {
pub fn new(s3: String) -> OrvantaLargeFile {
OrvantaLargeFile {
s3,
}
}
}