mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
make regen-apis
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -31,14 +31,14 @@ use super::*;
|
||||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||||
/// // execute the final call using `doit()`.
|
||||
/// // Values shown here are possibly random and not representative !
|
||||
/// let result = hub.orders().list(97)
|
||||
/// .add_statuses("ea")
|
||||
/// .placed_date_start("ipsum")
|
||||
/// .placed_date_end("invidunt")
|
||||
/// .page_token("amet")
|
||||
/// .order_by("duo")
|
||||
/// .max_results(51)
|
||||
/// .acknowledged(false)
|
||||
/// let result = hub.orders().list(89)
|
||||
/// .add_statuses(&Default::default())
|
||||
/// .placed_date_start("eos")
|
||||
/// .placed_date_end("dolor")
|
||||
/// .page_token("ea")
|
||||
/// .order_by("ipsum")
|
||||
/// .max_results(13)
|
||||
/// .acknowledged(true)
|
||||
/// .doit().await;
|
||||
///
|
||||
/// match result {
|
||||
|
||||
@@ -1525,11 +1525,11 @@ impl<'a, S> OrderMethods<'a, S> {
|
||||
///
|
||||
/// * `merchantId` - The ID of the account that should manage the order. This cannot be a multi-client account.
|
||||
/// * `templateName` - The name of the template to retrieve.
|
||||
pub fn gettestordertemplate(&self, merchant_id: u64, template_name: &str) -> OrderGettestordertemplateCall<'a, S> {
|
||||
pub fn gettestordertemplate(&self, merchant_id: u64, template_name: &OrderTemplateNameEnum) -> OrderGettestordertemplateCall<'a, S> {
|
||||
OrderGettestordertemplateCall {
|
||||
hub: self.hub,
|
||||
_merchant_id: merchant_id,
|
||||
_template_name: template_name.to_string(),
|
||||
_template_name: template_name.clone(),
|
||||
_country: Default::default(),
|
||||
_delegate: Default::default(),
|
||||
_additional_params: Default::default(),
|
||||
|
||||
@@ -30,3 +30,6 @@ pub use method_builders::*;
|
||||
|
||||
mod call_builders;
|
||||
pub use call_builders::*;
|
||||
|
||||
mod enums;
|
||||
pub use enums::*;
|
||||
|
||||
Reference in New Issue
Block a user