Struct rusoto_devicefarm::OfferingTransaction[][src]

pub struct OfferingTransaction {
    pub cost: Option<MonetaryAmount>,
    pub created_on: Option<f64>,
    pub offering_promotion_id: Option<String>,
    pub offering_status: Option<OfferingStatus>,
    pub transaction_id: Option<String>,
}

Represents the metadata of an offering transaction.

Fields

The cost of an offering transaction.

The date on which an offering transaction was created.

The ID that corresponds to a device offering promotion.

The status of an offering transaction.

The transaction ID of the offering transaction.

Trait Implementations

impl Default for OfferingTransaction
[src]

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

impl Debug for OfferingTransaction
[src]

Formats the value using the given formatter. Read more

impl Clone for OfferingTransaction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OfferingTransaction
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations