make regen-apis

This commit is contained in:
OMGeeky
2023-10-23 12:55:17 +02:00
parent 8fc78fe0ae
commit c356d5fd0e
887 changed files with 9716 additions and 8753 deletions

View File

@@ -31,10 +31,10 @@ 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.people().list("userId", "collection")
/// .page_token("ipsum")
/// .order_by("gubergren")
/// .max_results(50)
/// let result = hub.people().list("userId", &Default::default())
/// .page_token("sed")
/// .order_by(&Default::default())
/// .max_results(99)
/// .doit().await;
///
/// match result {

View File

@@ -62,11 +62,11 @@ impl<'a, S> ActivityMethods<'a, S> {
///
/// * `userId` - The ID of the user to get activities for. The special value "me" can be used to indicate the authenticated user.
/// * `collection` - The collection of activities to list.
pub fn list(&self, user_id: &str, collection: &str) -> ActivityListCall<'a, S> {
pub fn list(&self, user_id: &str, collection: &ActivityCollectionEnum) -> ActivityListCall<'a, S> {
ActivityListCall {
hub: self.hub,
_user_id: user_id.to_string(),
_collection: collection.to_string(),
_collection: collection.clone(),
_page_token: Default::default(),
_max_results: Default::default(),
_delegate: Default::default(),
@@ -240,11 +240,11 @@ impl<'a, S> PersonMethods<'a, S> {
///
/// * `userId` - Get the collection of people for the person identified. Use "me" to indicate the authenticated user.
/// * `collection` - The collection of people to list.
pub fn list(&self, user_id: &str, collection: &str) -> PersonListCall<'a, S> {
pub fn list(&self, user_id: &str, collection: &PersonCollectionEnum) -> PersonListCall<'a, S> {
PersonListCall {
hub: self.hub,
_user_id: user_id.to_string(),
_collection: collection.to_string(),
_collection: collection.clone(),
_page_token: Default::default(),
_order_by: Default::default(),
_max_results: Default::default(),
@@ -262,11 +262,11 @@ impl<'a, S> PersonMethods<'a, S> {
///
/// * `activityId` - The ID of the activity to get the list of people for.
/// * `collection` - The collection of people to list.
pub fn list_by_activity(&self, activity_id: &str, collection: &str) -> PersonListByActivityCall<'a, S> {
pub fn list_by_activity(&self, activity_id: &str, collection: &PersonCollectionEnum) -> PersonListByActivityCall<'a, S> {
PersonListByActivityCall {
hub: self.hub,
_activity_id: activity_id.to_string(),
_collection: collection.to_string(),
_collection: collection.clone(),
_page_token: Default::default(),
_max_results: Default::default(),
_delegate: Default::default(),

View File

@@ -30,3 +30,6 @@ pub use method_builders::*;
mod call_builders;
pub use call_builders::*;
mod enums;
pub use enums::*;

View File

@@ -101,10 +101,10 @@
//! // 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.people().list("userId", "collection")
//! .page_token("sed")
//! .order_by("amet.")
//! .max_results(42)
//! let result = hub.people().list("userId", &Default::default())
//! .page_token("voluptua.")
//! .order_by(&Default::default())
//! .max_results(74)
//! .doit().await;
//!
//! match result {