Struct gapi_grpc::google::cloud::retail::v2alpha::ListCatalogsRequest[][src]

pub struct ListCatalogsRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
}

Request for [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs] method.

Fields

parent: String

Required. The account resource name with an associated location.

If the caller does not have permission to list [Catalog][google.cloud.retail.v2alpha.Catalog]s under this location, regardless of whether or not this location exists, a PERMISSION_DENIED error is returned.

page_size: i32

Maximum number of [Catalog][google.cloud.retail.v2alpha.Catalog]s to return. If unspecified, defaults to 50. The maximum allowed value is 1000. Values above 1000 will be coerced to 1000.

If this field is negative, an INVALID_ARGUMENT is returned.

page_token: String

A page token [ListCatalogsResponse.next_page_token][google.cloud.retail.v2alpha.ListCatalogsResponse.next_page_token], received from a previous [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs] call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs] must match the call that provided the page token. Otherwise, an INVALID_ARGUMENT error is returned.

Trait Implementations

impl Clone for ListCatalogsRequest[src]

impl Debug for ListCatalogsRequest[src]

impl Default for ListCatalogsRequest[src]

impl Message for ListCatalogsRequest[src]

impl PartialEq<ListCatalogsRequest> for ListCatalogsRequest[src]

impl StructuralPartialEq for ListCatalogsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListCatalogsRequest

impl Send for ListCatalogsRequest

impl Sync for ListCatalogsRequest

impl Unpin for ListCatalogsRequest

impl UnwindSafe for ListCatalogsRequest

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]