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
64
65
66
67
68
69
70
// GENERATED CODE

use crate::api_default_imports::*;

api_client!(
    WorksheetsChartsFormatApiClient,
    ResourceIdentity::WorksheetsChartsFormat
);

impl WorksheetsChartsFormatApiClient {
    delete!(
        doc: "Delete navigation property format for drives",
        name: delete_format,
        path: "/format"
    );
    get!(
        doc: "Get format from drives",
        name: get_format,
        path: "/format"
    );
    patch!(
        doc: "Update the navigation property format in drives",
        name: update_format,
        path: "/format",
        body: true
    );
    delete!(
        doc: "Delete navigation property fill for drives",
        name: delete_fill,
        path: "/format/fill"
    );
    get!(
        doc: "Get fill from drives",
        name: get_fill,
        path: "/format/fill"
    );
    patch!(
        doc: "Update the navigation property fill in drives",
        name: update_fill,
        path: "/format/fill",
        body: true
    );
    post!(
        doc: "Invoke action clear",
        name: clear,
        path: "/format/fill/clear"
    );
    post!(
        doc: "Invoke action setSolidColor",
        name: set_solid_color,
        path: "/format/fill/setSolidColor",
        body: true
    );
    delete!(
        doc: "Delete navigation property font for drives",
        name: delete_font,
        path: "/format/font"
    );
    get!(
        doc: "Get font from drives",
        name: get_font,
        path: "/format/font"
    );
    patch!(
        doc: "Update the navigation property font in drives",
        name: update_font,
        path: "/format/font",
        body: true
    );
}