| /* | |
| * codex-backend | |
| * | |
| * codex-backend | |
| * | |
| * The version of the OpenAPI document: 0.0.1 | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::Deserialize; | |
| use serde::Serialize; | |
| pub struct ExternalPullRequestResponse { | |
| pub id: String, | |
| pub assistant_turn_id: String, | |
| pub pull_request: Box<models::GitPullRequest>, | |
| pub codex_updated_sha: Option<String>, | |
| } | |
| impl ExternalPullRequestResponse { | |
| pub fn new( | |
| id: String, | |
| assistant_turn_id: String, | |
| pull_request: models::GitPullRequest, | |
| ) -> ExternalPullRequestResponse { | |
| ExternalPullRequestResponse { | |
| id, | |
| assistant_turn_id, | |
| pull_request: Box::new(pull_request), | |
| codex_updated_sha: None, | |
| } | |
| } | |
| } | |