1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// GENERATED CODE

use crate::api_default_imports::*;

api_client!(
    LastModifiedByUserApiClient,
    ResourceIdentity::LastModifiedByUser
);

impl LastModifiedByUserApiClient {
    get!(
        doc: "Get lastModifiedByUser from drives",
        name: get_last_modified_by_user,
        path: "/lastModifiedByUser"
    );
    get!(
        doc: "Get mailboxSettings property value",
        name: get_mailbox_settings,
        path: "/lastModifiedByUser/mailboxSettings"
    );
    patch!(
        doc: "Update property mailboxSettings value.",
        name: update_mailbox_settings,
        path: "/lastModifiedByUser/mailboxSettings",
        body: true
    );
    get!(
        doc: "Get serviceProvisioningErrors property value",
        name: list_service_provisioning_errors,
        path: "/lastModifiedByUser/serviceProvisioningErrors"
    );
    get!(
        doc: "Get the number of the resource",
        name: service_provisioning_errors,
        path: "/lastModifiedByUser/serviceProvisioningErrors/$count"
    );
}