-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #450 from sreeise/workbook
Drives Workbook And Worksheets
- Loading branch information
Showing
18 changed files
with
531 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mod request; | ||
|
||
pub use request::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// GENERATED CODE | ||
|
||
use crate::api_default_imports::*; | ||
|
||
resource_api_client!(CreatedByUserApiClient, ResourceIdentity::CreatedByUser); | ||
|
||
impl CreatedByUserApiClient { | ||
get!( | ||
doc: "Get createdByUser from drives", | ||
name: get_created_by_user, | ||
path: "/createdByUser" | ||
); | ||
get!( | ||
doc: "Get mailboxSettings property value", | ||
name: get_mailbox_settings, | ||
path: "/createdByUser/mailboxSettings" | ||
); | ||
patch!( | ||
doc: "Update property mailboxSettings value.", | ||
name: update_mailbox_settings, | ||
path: "/createdByUser/mailboxSettings", | ||
body: true | ||
); | ||
get!( | ||
doc: "Get serviceProvisioningErrors property value", | ||
name: list_service_provisioning_errors, | ||
path: "/createdByUser/serviceProvisioningErrors" | ||
); | ||
get!( | ||
doc: "Get the number of the resource", | ||
name: service_provisioning_errors, | ||
path: "/createdByUser/serviceProvisioningErrors/$count" | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mod request; | ||
|
||
pub use request::*; |
Oops, something went wrong.