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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// GENERATED CODE

use crate::api_default_imports::*;
use crate::drives::*;

api_client!(
    WorksheetsChartsAxesValueAxisApiClient,
    ResourceIdentity::WorksheetsChartsAxesValueAxis
);

impl WorksheetsChartsAxesValueAxisApiClient {
    api_client_link!(title, WorksheetsChartsTitleApiClient);
    api_client_link!(formatting, WorksheetsChartsFormatApiClient);

    delete!(
        doc: "Delete navigation property valueAxis for drives",
        name: delete_value_axis,
        path: "/valueAxis"
    );
    get!(
        doc: "Get ChartAxis",
        name: get_value_axis,
        path: "/valueAxis"
    );
    patch!(
        doc: "Update chartaxis",
        name: update_value_axis,
        path: "/valueAxis",
        body: true
    );
    delete!(
        doc: "Delete navigation property majorGridlines for drives",
        name: delete_major_gridlines,
        path: "/valueAxis/majorGridlines"
    );
    get!(
        doc: "Get majorGridlines from drives",
        name: get_major_gridlines,
        path: "/valueAxis/majorGridlines"
    );
    patch!(
        doc: "Update the navigation property majorGridlines in drives",
        name: update_major_gridlines,
        path: "/valueAxis/majorGridlines",
        body: true
    );
    delete!(
        doc: "Delete navigation property minorGridlines for drives",
        name: delete_minor_gridlines,
        path: "/valueAxis/minorGridlines"
    );
    get!(
        doc: "Get ChartGridlines",
        name: get_minor_gridlines,
        path: "/valueAxis/minorGridlines"
    );
    patch!(
        doc: "Update chartgridlines",
        name: update_minor_gridlines,
        path: "/valueAxis/minorGridlines",
        body: true
    );
}