usestd::fmt;#[derive(Copy, Clone, Debug)]/// The levels are documented here:
/// https://smartsheet-platform.github.io/api-docs/?python#working-with-complex-objects-multi-contact-or-multi-picklist
pubenumLevel{/// LEVEL=0
////// Note: this is the default
Text,/// LEVEL=1
MultiContact,/// LEVEL=2
MultiPicklist,}implfmt::Display forLevel{fnfmt(&self, f:&mutfmt::Formatter)->fmt::Result{write!(f,"{}",*selfasu8)}}