openai-client-base 0.12.0

Auto-generated Rust client for the OpenAI API
/*
 * OpenAI API
 *
 * The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
 *
 * The version of the OpenAPI document: 2.3.0
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// ChatCompletionResponseMessageAnnotationsInnerUrlCitation : A URL citation when using web search.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct ChatCompletionResponseMessageAnnotationsInnerUrlCitation {
    /// The index of the last character of the URL citation in the message.
    #[serde(rename = "end_index")]
    pub end_index: i32,
    /// The index of the first character of the URL citation in the message.
    #[serde(rename = "start_index")]
    pub start_index: i32,
    /// The URL of the web resource.
    #[serde(rename = "url")]
    pub url: String,
    /// The title of the web resource.
    #[serde(rename = "title")]
    pub title: String,
}

impl ChatCompletionResponseMessageAnnotationsInnerUrlCitation {
    /// A URL citation when using web search.
    pub fn new(
        end_index: i32,
        start_index: i32,
        url: String,
        title: String,
    ) -> ChatCompletionResponseMessageAnnotationsInnerUrlCitation {
        ChatCompletionResponseMessageAnnotationsInnerUrlCitation {
            end_index,
            start_index,
            url,
            title,
        }
    }
}

impl std::fmt::Display for ChatCompletionResponseMessageAnnotationsInnerUrlCitation {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match serde_json::to_string(self) {
            Ok(s) => write!(f, "{}", s),
            Err(_) => Err(std::fmt::Error),
        }
    }
}