/*
* Manager API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0-dev
* Contact: support@babelforce.com
* Generated by: https://openapi-generator.tech
*/
use crate::gen::manager::models;
use serde::{Deserialize, Serialize};
/// SettingsAppCustomerLogging : The app-scope `customer.logging` settings.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SettingsAppCustomerLogging {
/// Whether customer-level request logging is enabled.
#[serde(rename = "enabled")]
pub enabled: bool,
}
impl SettingsAppCustomerLogging {
/// The app-scope `customer.logging` settings.
pub fn new(enabled: bool) -> SettingsAppCustomerLogging {
SettingsAppCustomerLogging { enabled }
}
}