use serde::{Deserialize, Serialize}; /*
* Compute Engine API
*
* Creates and runs virtual machines on Google Cloud Platform.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::google_rest_apis::compute_v1::models;
/// Help : Provides links to documentation or for performing an out of band action. For example, if a quota check failed with an error indicating the calling project hasn't enabled the accessed service, this can contain a URL pointing directly to the right place in the developer console to flip the bit.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Help {
/// URL(s) pointing to additional information on handling the current error.
#[serde(rename = "links", skip_serializing_if = "Option::is_none")]
pub links: Option<Vec<models::HelpLink>>,
}
impl Help {
/// Provides links to documentation or for performing an out of band action. For example, if a quota check failed with an error indicating the calling project hasn't enabled the accessed service, this can contain a URL pointing directly to the right place in the developer console to flip the bit.
pub fn new() -> Help {
Help { links: None }
}
}