/*
* Authenticator
*
* REST API and web server providing authentication for a Tapis v3 instance.
*
* The version of the OpenAPI document: 1
* Contact: cicsupport@tacc.utexas.edu
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateClient {
/// URL for application to receive OAuth callbacks for executing flows such as authorization_code.
#[serde(rename = "callback_url", skip_serializing_if = "Option::is_none")]
pub callback_url: Option<String>,
/// The display name that will represent this client.
#[serde(rename = "display_name", skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
}
impl UpdateClient {
pub fn new() -> UpdateClient {
UpdateClient {
callback_url: None,
display_name: None,
}
}
}