Struct gapi_grpc::google::ads::googleads::v4::services::ListInvoicesRequest[][src]

pub struct ListInvoicesRequest {
    pub customer_id: String,
    pub billing_setup: String,
    pub issue_year: String,
    pub issue_month: i32,
}

Request message for fetching the invoices of a given billing setup that were issued during a given month.

Fields

customer_id: String

Required. The ID of the customer to fetch invoices for.

billing_setup: String

Required. The billing setup resource name of the requested invoices.

customers/{customer_id}/billingSetups/{billing_setup_id}

issue_year: String

Required. The issue year to retrieve invoices, in yyyy format. Only invoices issued in 2019 or later can be retrieved.

issue_month: i32

Required. The issue month to retrieve invoices.

Implementations

impl ListInvoicesRequest[src]

pub fn issue_month(&self) -> MonthOfYear[src]

Returns the enum value of issue_month, or the default if the field is set to an invalid enum value.

pub fn set_issue_month(&mut self, value: MonthOfYear)[src]

Sets issue_month to the provided enum value.

Trait Implementations

impl Clone for ListInvoicesRequest[src]

impl Debug for ListInvoicesRequest[src]

impl Default for ListInvoicesRequest[src]

impl Message for ListInvoicesRequest[src]

impl PartialEq<ListInvoicesRequest> for ListInvoicesRequest[src]

impl StructuralPartialEq for ListInvoicesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListInvoicesRequest

impl Send for ListInvoicesRequest

impl Sync for ListInvoicesRequest

impl Unpin for ListInvoicesRequest

impl UnwindSafe for ListInvoicesRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]