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

pub struct ListBillingAccountsRequest {
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

Request message for ListBillingAccounts.

Fields

page_size: i32

Requested page size. The maximum page size is 100; this is also the default.

page_token: String

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

filter: String

Options for how to filter the returned billing accounts. Currently this only supports filtering for subaccounts under a single provided reseller billing account. (e.g. "master_billing_account=billingAccounts/012345-678901-ABCDEF"). Boolean algebra and other fields are not currently supported.

Trait Implementations

impl Clone for ListBillingAccountsRequest[src]

impl Debug for ListBillingAccountsRequest[src]

impl Default for ListBillingAccountsRequest[src]

impl Message for ListBillingAccountsRequest[src]

impl PartialEq<ListBillingAccountsRequest> for ListBillingAccountsRequest[src]

impl StructuralPartialEq for ListBillingAccountsRequest[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]