/*
* Tapis PgREST API
*
* The Tapis PgREST API provides a RESTful interface to a managed SQL-db-as-a-service.
*
* The version of the OpenAPI document: 1.0.0
* 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 Table {
/// The name of the table.
#[serde(rename = "table_name", skip_serializing_if = "Option::is_none")]
pub table_name: Option<String>,
/// The url path used for the root_url associated with the records in the table.
#[serde(rename = "root_url", skip_serializing_if = "Option::is_none")]
pub root_url: Option<String>,
}
impl Table {
pub fn new() -> Table {
Table {
table_name: None,
root_url: None,
}
}
}