nautobot_openapi/models/
bulk_writable_image_attachment_request.rs1#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
14pub struct BulkWritableImageAttachmentRequest {
15 #[serde(rename = "id")]
16 pub id: uuid::Uuid,
17 #[serde(rename = "content_type")]
18 pub content_type: String,
19 #[serde(rename = "object_id")]
20 pub object_id: uuid::Uuid,
21 #[serde(rename = "image")]
22 pub image: std::path::PathBuf,
23 #[serde(rename = "image_height")]
24 pub image_height: i32,
25 #[serde(rename = "image_width")]
26 pub image_width: i32,
27 #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
28 pub name: Option<String>,
29}
30
31impl BulkWritableImageAttachmentRequest {
32 pub fn new(
34 id: uuid::Uuid,
35 content_type: String,
36 object_id: uuid::Uuid,
37 image: std::path::PathBuf,
38 image_height: i32,
39 image_width: i32,
40 ) -> BulkWritableImageAttachmentRequest {
41 BulkWritableImageAttachmentRequest {
42 id,
43 content_type,
44 object_id,
45 image,
46 image_height,
47 image_width,
48 name: None,
49 }
50 }
51}