Struct google_servicecontrol1::Money[][src]

pub struct Money {
    pub units: Option<String>,
    pub nanos: Option<i32>,
    pub currency_code: Option<String>,
}

Represents an amount of money with its currency type.

This type is not used in any activity, and only used as part of another schema.

Fields

The whole units of the amount. For example if currencyCode is "USD", then 1 unit is one US dollar.

Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If units is positive, nanos must be positive or zero. If units is zero, nanos can be positive, zero, or negative. If units is negative, nanos must be negative or zero. For example $-1.75 is represented as units=-1 and nanos=-750,000,000.

The 3-letter currency code defined in ISO 4217.

Trait Implementations

impl Default for Money
[src]

Returns the "default value" for a type. Read more

impl Clone for Money
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Money
[src]

Formats the value using the given formatter. Read more

impl Part for Money
[src]

Auto Trait Implementations

impl Send for Money

impl Sync for Money