gitbundle_sdk/models/
repo_move_input.rs

1/*
2 * GitBundle API
3 *
4 * GitBundle API documentation.
5 *
6 * The version of the OpenAPI document: 3.2.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct RepoMoveInput {
17    #[serde(
18        rename = "identifier",
19        default,
20        with = "::serde_with::rust::double_option",
21        skip_serializing_if = "Option::is_none"
22    )]
23    pub identifier: Option<Option<String>>,
24}
25
26impl RepoMoveInput {
27    pub fn new() -> RepoMoveInput {
28        RepoMoveInput { identifier: None }
29    }
30}