[][src]Struct gcp_client::google::cloud::billing::v1::ListSkusRequest

pub struct ListSkusRequest {
    pub parent: String,
    pub start_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
    pub currency_code: String,
    pub page_size: i32,
    pub page_token: String,
}

Request message for ListSkus.

Fields

parent: String

Required. The name of the service. Example: "services/DA34-426B-A397"

start_time: Option<Timestamp>

Optional inclusive start time of the time range for which the pricing versions will be returned. Timestamps in the future are not allowed. The time range has to be within a single calendar month in America/Los_Angeles timezone. Time range as a whole is optional. If not specified, the latest pricing will be returned (up to 12 hours old at most).

end_time: Option<Timestamp>

Optional exclusive end time of the time range for which the pricing versions will be returned. Timestamps in the future are not allowed. The time range has to be within a single calendar month in America/Los_Angeles timezone. Time range as a whole is optional. If not specified, the latest pricing will be returned (up to 12 hours old at most).

currency_code: String

The ISO 4217 currency code for the pricing info in the response proto. Will use the conversion rate as of start_time. Optional. If not specified USD will be used.

page_size: i32

Requested page size. Defaults to 5000.

page_token: String

A token identifying a page of results to return. This should be a next_page_token value returned from a previous ListSkus call. If unspecified, the first page of results is returned.

Trait Implementations

impl Clone for ListSkusRequest[src]

impl Debug for ListSkusRequest[src]

impl Default for ListSkusRequest[src]

impl Message for ListSkusRequest[src]

impl PartialEq<ListSkusRequest> for ListSkusRequest[src]

impl StructuralPartialEq for ListSkusRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]