strawberry_api 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rubocop.yml +4 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +135 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/doc/HTTParty/Response.html +148 -0
- data/doc/StrawberryAPI/AccessRight.html +431 -0
- data/doc/StrawberryAPI/ApiKey.html +637 -0
- data/doc/StrawberryAPI/ArchiveStrategy.html +365 -0
- data/doc/StrawberryAPI/ArchiveStrategyState.html +1057 -0
- data/doc/StrawberryAPI/Asset.html +1791 -0
- data/doc/StrawberryAPI/AssetCopyToStrategy.html +145 -0
- data/doc/StrawberryAPI/AssetFeedback.html +370 -0
- data/doc/StrawberryAPI/Client/ApiKeys.html +904 -0
- data/doc/StrawberryAPI/Client/ArchiveStrategies.html +784 -0
- data/doc/StrawberryAPI/Client/AssetCopyToStrategies.html +805 -0
- data/doc/StrawberryAPI/Client/AssetFeedbacks.html +232 -0
- data/doc/StrawberryAPI/Client/Assets.html +888 -0
- data/doc/StrawberryAPI/Client/Collections.html +319 -0
- data/doc/StrawberryAPI/Client/CopyToFeedbacks.html +232 -0
- data/doc/StrawberryAPI/Client/CustomMetadata.html +210 -0
- data/doc/StrawberryAPI/Client/CustomMetadataFields.html +214 -0
- data/doc/StrawberryAPI/Client/CustomMetadataOptions.html +214 -0
- data/doc/StrawberryAPI/Client/CustomMetadataSets.html +214 -0
- data/doc/StrawberryAPI/Client/Edits.html +485 -0
- data/doc/StrawberryAPI/Client/Features.html +319 -0
- data/doc/StrawberryAPI/Client/Libraries.html +321 -0
- data/doc/StrawberryAPI/Client/Markers.html +234 -0
- data/doc/StrawberryAPI/Client/ProjectCopyToStrategies.html +857 -0
- data/doc/StrawberryAPI/Client/ProjectFeedbacks.html +232 -0
- data/doc/StrawberryAPI/Client/Projects.html +2764 -0
- data/doc/StrawberryAPI/Client/Roles.html +214 -0
- data/doc/StrawberryAPI/Client/Schedules.html +319 -0
- data/doc/StrawberryAPI/Client/Searches.html +293 -0
- data/doc/StrawberryAPI/Client/Sessions.html +376 -0
- data/doc/StrawberryAPI/Client/Settings.html +210 -0
- data/doc/StrawberryAPI/Client/StatusFlags.html +315 -0
- data/doc/StrawberryAPI/Client/Teams.html +1067 -0
- data/doc/StrawberryAPI/Client/Templates.html +319 -0
- data/doc/StrawberryAPI/Client/Users.html +1255 -0
- data/doc/StrawberryAPI/Client.html +487 -0
- data/doc/StrawberryAPI/Collection.html +427 -0
- data/doc/StrawberryAPI/Configuration.html +481 -0
- data/doc/StrawberryAPI/CopyToFeedback.html +220 -0
- data/doc/StrawberryAPI/CustomMetadataField.html +999 -0
- data/doc/StrawberryAPI/CustomMetadataOption.html +567 -0
- data/doc/StrawberryAPI/CustomMetadataSet.html +649 -0
- data/doc/StrawberryAPI/CustomMetadatum.html +718 -0
- data/doc/StrawberryAPI/Edit.html +637 -0
- data/doc/StrawberryAPI/Feature.html +567 -0
- data/doc/StrawberryAPI/Feedback.html +641 -0
- data/doc/StrawberryAPI/HttpClient.html +971 -0
- data/doc/StrawberryAPI/Library.html +637 -0
- data/doc/StrawberryAPI/Marker.html +847 -0
- data/doc/StrawberryAPI/Project.html +2395 -0
- data/doc/StrawberryAPI/ProjectCopyToStrategy.html +365 -0
- data/doc/StrawberryAPI/ProjectFeedback.html +370 -0
- data/doc/StrawberryAPI/Proxy.html +1267 -0
- data/doc/StrawberryAPI/Role.html +567 -0
- data/doc/StrawberryAPI/Schedule.html +2387 -0
- data/doc/StrawberryAPI/Session.html +121 -0
- data/doc/StrawberryAPI/Setting.html +207 -0
- data/doc/StrawberryAPI/StatusFlag.html +207 -0
- data/doc/StrawberryAPI/Strategy.html +641 -0
- data/doc/StrawberryAPI/Team.html +789 -0
- data/doc/StrawberryAPI/Template.html +707 -0
- data/doc/StrawberryAPI/User.html +999 -0
- data/doc/StrawberryAPI.html +483 -0
- data/doc/_index.html +632 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +496 -0
- data/doc/file.README.html +222 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +222 -0
- data/doc/js/app.js +292 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +3059 -0
- data/doc/top-level-namespace.html +110 -0
- data/lib/strawberry_api/access_right.rb +18 -0
- data/lib/strawberry_api/api_key.rb +19 -0
- data/lib/strawberry_api/asset.rb +51 -0
- data/lib/strawberry_api/client/api_keys.rb +49 -0
- data/lib/strawberry_api/client/archive_strategies.rb +87 -0
- data/lib/strawberry_api/client/asset_copy_to_strategies.rb +83 -0
- data/lib/strawberry_api/client/asset_feedbacks.rb +18 -0
- data/lib/strawberry_api/client/assets.rb +92 -0
- data/lib/strawberry_api/client/collections.rb +29 -0
- data/lib/strawberry_api/client/copy_to_feedbacks.rb +18 -0
- data/lib/strawberry_api/client/custom_metadata.rb +16 -0
- data/lib/strawberry_api/client/custom_metadata_fields.rb +18 -0
- data/lib/strawberry_api/client/custom_metadata_options.rb +18 -0
- data/lib/strawberry_api/client/custom_metadata_sets.rb +18 -0
- data/lib/strawberry_api/client/edits.rb +47 -0
- data/lib/strawberry_api/client/features.rb +29 -0
- data/lib/strawberry_api/client/libraries.rb +30 -0
- data/lib/strawberry_api/client/markers.rb +19 -0
- data/lib/strawberry_api/client/project_copy_to_strategies.rb +88 -0
- data/lib/strawberry_api/client/project_feedbacks.rb +18 -0
- data/lib/strawberry_api/client/projects.rb +305 -0
- data/lib/strawberry_api/client/roles.rb +18 -0
- data/lib/strawberry_api/client/schedules.rb +29 -0
- data/lib/strawberry_api/client/searches.rb +25 -0
- data/lib/strawberry_api/client/sessions.rb +33 -0
- data/lib/strawberry_api/client/settings.rb +16 -0
- data/lib/strawberry_api/client/status_flags.rb +27 -0
- data/lib/strawberry_api/client/teams.rb +107 -0
- data/lib/strawberry_api/client/templates.rb +29 -0
- data/lib/strawberry_api/client/users.rb +125 -0
- data/lib/strawberry_api/client.rb +95 -0
- data/lib/strawberry_api/collection.rb +16 -0
- data/lib/strawberry_api/configuration.rb +19 -0
- data/lib/strawberry_api/custom_metadata/custom_metadata_field.rb +30 -0
- data/lib/strawberry_api/custom_metadata/custom_metadata_option.rb +18 -0
- data/lib/strawberry_api/custom_metadata/custom_metadata_set.rb +25 -0
- data/lib/strawberry_api/custom_metadatum.rb +30 -0
- data/lib/strawberry_api/edit.rb +19 -0
- data/lib/strawberry_api/feature.rb +18 -0
- data/lib/strawberry_api/feedback/asset_feedback.rb +15 -0
- data/lib/strawberry_api/feedback/copy_to_feedback.rb +12 -0
- data/lib/strawberry_api/feedback/project_feedback.rb +15 -0
- data/lib/strawberry_api/feedback.rb +19 -0
- data/lib/strawberry_api/http_client.rb +135 -0
- data/lib/strawberry_api/library.rb +19 -0
- data/lib/strawberry_api/marker.rb +22 -0
- data/lib/strawberry_api/project.rb +48 -0
- data/lib/strawberry_api/proxy.rb +28 -0
- data/lib/strawberry_api/role.rb +18 -0
- data/lib/strawberry_api/schedule.rb +44 -0
- data/lib/strawberry_api/session.rb +7 -0
- data/lib/strawberry_api/setting.rb +12 -0
- data/lib/strawberry_api/status_flag.rb +12 -0
- data/lib/strawberry_api/strategy/archive_strategy.rb +10 -0
- data/lib/strawberry_api/strategy/archive_strategy_state.rb +25 -0
- data/lib/strawberry_api/strategy/asset_copy_to_strategy.rb +6 -0
- data/lib/strawberry_api/strategy/project_copy_to_strategy.rb +9 -0
- data/lib/strawberry_api/strategy.rb +19 -0
- data/lib/strawberry_api/team.rb +27 -0
- data/lib/strawberry_api/template.rb +20 -0
- data/lib/strawberry_api/user.rb +30 -0
- data/lib/strawberry_api/version.rb +3 -0
- data/lib/strawberry_api.rb +36 -0
- data/samples/README.md +14 -0
- data/samples/list_assets_links.rb +15 -0
- data/samples/list_projects.rb +14 -0
- data/samples/login.rb +18 -0
- data/samples/test.rb +12 -0
- data/strawberry_api.gemspec +40 -0
- metadata +242 -0
@@ -0,0 +1,487 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Class: StrawberryAPI::Client
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.16
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
pathId = "StrawberryAPI::Client";
|
19
|
+
relpath = '../';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="../class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="../_index.html">Index (C)</a> »
|
40
|
+
<span class='title'><span class='object_link'><a href="../StrawberryAPI.html" title="StrawberryAPI (module)">StrawberryAPI</a></span></span>
|
41
|
+
»
|
42
|
+
<span class="title">Client</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="../class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Class: StrawberryAPI::Client
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
<dl>
|
70
|
+
<dt>Inherits:</dt>
|
71
|
+
<dd>
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="HttpClient.html" title="StrawberryAPI::HttpClient (class)">HttpClient</a></span></span>
|
73
|
+
|
74
|
+
<ul class="fullTree">
|
75
|
+
<li>Object</li>
|
76
|
+
|
77
|
+
<li class="next"><span class='object_link'><a href="HttpClient.html" title="StrawberryAPI::HttpClient (class)">HttpClient</a></span></li>
|
78
|
+
|
79
|
+
<li class="next">StrawberryAPI::Client</li>
|
80
|
+
|
81
|
+
</ul>
|
82
|
+
<a href="#" class="inheritanceTree">show all</a>
|
83
|
+
|
84
|
+
</dd>
|
85
|
+
</dl>
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
<dl>
|
93
|
+
<dt>Includes:</dt>
|
94
|
+
<dd><span class='object_link'><a href="Client/ApiKeys.html" title="StrawberryAPI::Client::ApiKeys (module)">ApiKeys</a></span>, <span class='object_link'><a href="Client/ArchiveStrategies.html" title="StrawberryAPI::Client::ArchiveStrategies (module)">ArchiveStrategies</a></span>, <span class='object_link'><a href="Client/AssetCopyToStrategies.html" title="StrawberryAPI::Client::AssetCopyToStrategies (module)">AssetCopyToStrategies</a></span>, <span class='object_link'><a href="Client/AssetFeedbacks.html" title="StrawberryAPI::Client::AssetFeedbacks (module)">AssetFeedbacks</a></span>, <span class='object_link'><a href="Client/Assets.html" title="StrawberryAPI::Client::Assets (module)">Assets</a></span>, <span class='object_link'><a href="Client/Collections.html" title="StrawberryAPI::Client::Collections (module)">Collections</a></span>, <span class='object_link'><a href="Client/CopyToFeedbacks.html" title="StrawberryAPI::Client::CopyToFeedbacks (module)">CopyToFeedbacks</a></span>, <span class='object_link'><a href="Client/CustomMetadata.html" title="StrawberryAPI::Client::CustomMetadata (module)">CustomMetadata</a></span>, <span class='object_link'><a href="Client/CustomMetadataFields.html" title="StrawberryAPI::Client::CustomMetadataFields (module)">CustomMetadataFields</a></span>, <span class='object_link'><a href="Client/CustomMetadataOptions.html" title="StrawberryAPI::Client::CustomMetadataOptions (module)">CustomMetadataOptions</a></span>, <span class='object_link'><a href="Client/CustomMetadataSets.html" title="StrawberryAPI::Client::CustomMetadataSets (module)">CustomMetadataSets</a></span>, <span class='object_link'><a href="Client/Edits.html" title="StrawberryAPI::Client::Edits (module)">Edits</a></span>, <span class='object_link'><a href="Client/Features.html" title="StrawberryAPI::Client::Features (module)">Features</a></span>, <span class='object_link'><a href="Client/Libraries.html" title="StrawberryAPI::Client::Libraries (module)">Libraries</a></span>, <span class='object_link'><a href="Client/Markers.html" title="StrawberryAPI::Client::Markers (module)">Markers</a></span>, <span class='object_link'><a href="Client/ProjectCopyToStrategies.html" title="StrawberryAPI::Client::ProjectCopyToStrategies (module)">ProjectCopyToStrategies</a></span>, <span class='object_link'><a href="Client/ProjectFeedbacks.html" title="StrawberryAPI::Client::ProjectFeedbacks (module)">ProjectFeedbacks</a></span>, <span class='object_link'><a href="Client/Projects.html" title="StrawberryAPI::Client::Projects (module)">Projects</a></span>, <span class='object_link'><a href="Client/Roles.html" title="StrawberryAPI::Client::Roles (module)">Roles</a></span>, <span class='object_link'><a href="Client/Schedules.html" title="StrawberryAPI::Client::Schedules (module)">Schedules</a></span>, <span class='object_link'><a href="Client/Searches.html" title="StrawberryAPI::Client::Searches (module)">Searches</a></span>, <span class='object_link'><a href="Client/Sessions.html" title="StrawberryAPI::Client::Sessions (module)">Sessions</a></span>, <span class='object_link'><a href="Client/Settings.html" title="StrawberryAPI::Client::Settings (module)">Settings</a></span>, <span class='object_link'><a href="Client/StatusFlags.html" title="StrawberryAPI::Client::StatusFlags (module)">StatusFlags</a></span>, <span class='object_link'><a href="Client/Teams.html" title="StrawberryAPI::Client::Teams (module)">Teams</a></span>, <span class='object_link'><a href="Client/Templates.html" title="StrawberryAPI::Client::Templates (module)">Templates</a></span>, <span class='object_link'><a href="Client/Users.html" title="StrawberryAPI::Client::Users (module)">Users</a></span></dd>
|
95
|
+
</dl>
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
<dl>
|
103
|
+
<dt>Defined in:</dt>
|
104
|
+
<dd>lib/strawberry_api/client.rb<span class="defines">,<br />
|
105
|
+
lib/strawberry_api/client/edits.rb,<br /> lib/strawberry_api/client/roles.rb,<br /> lib/strawberry_api/client/teams.rb,<br /> lib/strawberry_api/client/users.rb,<br /> lib/strawberry_api/client/assets.rb,<br /> lib/strawberry_api/client/markers.rb,<br /> lib/strawberry_api/client/api_keys.rb,<br /> lib/strawberry_api/client/features.rb,<br /> lib/strawberry_api/client/projects.rb,<br /> lib/strawberry_api/client/searches.rb,<br /> lib/strawberry_api/client/sessions.rb,<br /> lib/strawberry_api/client/settings.rb,<br /> lib/strawberry_api/client/libraries.rb,<br /> lib/strawberry_api/client/schedules.rb,<br /> lib/strawberry_api/client/templates.rb,<br /> lib/strawberry_api/client/collections.rb,<br /> lib/strawberry_api/client/status_flags.rb,<br /> lib/strawberry_api/client/asset_feedbacks.rb,<br /> lib/strawberry_api/client/custom_metadata.rb,<br /> lib/strawberry_api/client/copy_to_feedbacks.rb,<br /> lib/strawberry_api/client/project_feedbacks.rb,<br /> lib/strawberry_api/client/archive_strategies.rb,<br /> lib/strawberry_api/client/custom_metadata_sets.rb,<br /> lib/strawberry_api/client/custom_metadata_fields.rb,<br /> lib/strawberry_api/client/custom_metadata_options.rb,<br /> lib/strawberry_api/client/asset_copy_to_strategies.rb,<br /> lib/strawberry_api/client/project_copy_to_strategies.rb</span>
|
106
|
+
</dd>
|
107
|
+
</dl>
|
108
|
+
|
109
|
+
</div>
|
110
|
+
|
111
|
+
<h2>Overview</h2><div class="docstring">
|
112
|
+
<div class="discussion">
|
113
|
+
|
114
|
+
<p>Class Client provides methods for querying Strawberry API resources</p>
|
115
|
+
|
116
|
+
|
117
|
+
</div>
|
118
|
+
</div>
|
119
|
+
<div class="tags">
|
120
|
+
|
121
|
+
<p class="tag_title">Author:</p>
|
122
|
+
<ul class="author">
|
123
|
+
|
124
|
+
<li>
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
<div class='inline'>
|
131
|
+
<p>Pierre Lebrun <pierreyves.lebrun@gmail.com></p>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
</li>
|
135
|
+
|
136
|
+
</ul>
|
137
|
+
|
138
|
+
</div><h2>Defined Under Namespace</h2>
|
139
|
+
<p class="children">
|
140
|
+
|
141
|
+
|
142
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Client/ApiKeys.html" title="StrawberryAPI::Client::ApiKeys (module)">ApiKeys</a></span>, <span class='object_link'><a href="Client/ArchiveStrategies.html" title="StrawberryAPI::Client::ArchiveStrategies (module)">ArchiveStrategies</a></span>, <span class='object_link'><a href="Client/AssetCopyToStrategies.html" title="StrawberryAPI::Client::AssetCopyToStrategies (module)">AssetCopyToStrategies</a></span>, <span class='object_link'><a href="Client/AssetFeedbacks.html" title="StrawberryAPI::Client::AssetFeedbacks (module)">AssetFeedbacks</a></span>, <span class='object_link'><a href="Client/Assets.html" title="StrawberryAPI::Client::Assets (module)">Assets</a></span>, <span class='object_link'><a href="Client/Collections.html" title="StrawberryAPI::Client::Collections (module)">Collections</a></span>, <span class='object_link'><a href="Client/CopyToFeedbacks.html" title="StrawberryAPI::Client::CopyToFeedbacks (module)">CopyToFeedbacks</a></span>, <span class='object_link'><a href="Client/CustomMetadata.html" title="StrawberryAPI::Client::CustomMetadata (module)">CustomMetadata</a></span>, <span class='object_link'><a href="Client/CustomMetadataFields.html" title="StrawberryAPI::Client::CustomMetadataFields (module)">CustomMetadataFields</a></span>, <span class='object_link'><a href="Client/CustomMetadataOptions.html" title="StrawberryAPI::Client::CustomMetadataOptions (module)">CustomMetadataOptions</a></span>, <span class='object_link'><a href="Client/CustomMetadataSets.html" title="StrawberryAPI::Client::CustomMetadataSets (module)">CustomMetadataSets</a></span>, <span class='object_link'><a href="Client/Edits.html" title="StrawberryAPI::Client::Edits (module)">Edits</a></span>, <span class='object_link'><a href="Client/Features.html" title="StrawberryAPI::Client::Features (module)">Features</a></span>, <span class='object_link'><a href="Client/Libraries.html" title="StrawberryAPI::Client::Libraries (module)">Libraries</a></span>, <span class='object_link'><a href="Client/Markers.html" title="StrawberryAPI::Client::Markers (module)">Markers</a></span>, <span class='object_link'><a href="Client/ProjectCopyToStrategies.html" title="StrawberryAPI::Client::ProjectCopyToStrategies (module)">ProjectCopyToStrategies</a></span>, <span class='object_link'><a href="Client/ProjectFeedbacks.html" title="StrawberryAPI::Client::ProjectFeedbacks (module)">ProjectFeedbacks</a></span>, <span class='object_link'><a href="Client/Projects.html" title="StrawberryAPI::Client::Projects (module)">Projects</a></span>, <span class='object_link'><a href="Client/Roles.html" title="StrawberryAPI::Client::Roles (module)">Roles</a></span>, <span class='object_link'><a href="Client/Schedules.html" title="StrawberryAPI::Client::Schedules (module)">Schedules</a></span>, <span class='object_link'><a href="Client/Searches.html" title="StrawberryAPI::Client::Searches (module)">Searches</a></span>, <span class='object_link'><a href="Client/Sessions.html" title="StrawberryAPI::Client::Sessions (module)">Sessions</a></span>, <span class='object_link'><a href="Client/Settings.html" title="StrawberryAPI::Client::Settings (module)">Settings</a></span>, <span class='object_link'><a href="Client/StatusFlags.html" title="StrawberryAPI::Client::StatusFlags (module)">StatusFlags</a></span>, <span class='object_link'><a href="Client/Teams.html" title="StrawberryAPI::Client::Teams (module)">Teams</a></span>, <span class='object_link'><a href="Client/Templates.html" title="StrawberryAPI::Client::Templates (module)">Templates</a></span>, <span class='object_link'><a href="Client/Users.html" title="StrawberryAPI::Client::Users (module)">Users</a></span>
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
</p>
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
<h2>Instance Attribute Summary</h2>
|
155
|
+
|
156
|
+
<h3 class="inherited">Attributes included from <span class='object_link'><a href="Client/ApiKeys.html" title="StrawberryAPI::Client::ApiKeys (module)">ApiKeys</a></span></h3>
|
157
|
+
<p class="inherited"><span class='object_link'><a href="Client/ApiKeys.html#created_at-instance_method" title="StrawberryAPI::Client::ApiKeys#created_at (method)">#created_at</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#id-instance_method" title="StrawberryAPI::Client::ApiKeys#id (method)">#id</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#key-instance_method" title="StrawberryAPI::Client::ApiKeys#key (method)">#key</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#name-instance_method" title="StrawberryAPI::Client::ApiKeys#name (method)">#name</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#updated_at-instance_method" title="StrawberryAPI::Client::ApiKeys#updated_at (method)">#updated_at</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#user_id-instance_method" title="StrawberryAPI::Client::ApiKeys#user_id (method)">#user_id</a></span></p>
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
<h2>Method Summary</h2>
|
168
|
+
|
169
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Users.html" title="StrawberryAPI::Client::Users (module)">Users</a></span></h3>
|
170
|
+
<p class="inherited"><span class='object_link'><a href="Client/Users.html#add_team_to_user-instance_method" title="StrawberryAPI::Client::Users#add_team_to_user (method)">#add_team_to_user</a></span>, <span class='object_link'><a href="Client/Users.html#create_user-instance_method" title="StrawberryAPI::Client::Users#create_user (method)">#create_user</a></span>, <span class='object_link'><a href="Client/Users.html#destroy_user-instance_method" title="StrawberryAPI::Client::Users#destroy_user (method)">#destroy_user</a></span>, <span class='object_link'><a href="Client/Users.html#remove_team_from_user-instance_method" title="StrawberryAPI::Client::Users#remove_team_from_user (method)">#remove_team_from_user</a></span>, <span class='object_link'><a href="Client/Users.html#update_user-instance_method" title="StrawberryAPI::Client::Users#update_user (method)">#update_user</a></span>, <span class='object_link'><a href="Client/Users.html#user-instance_method" title="StrawberryAPI::Client::Users#user (method)">#user</a></span>, <span class='object_link'><a href="Client/Users.html#user_api_keys-instance_method" title="StrawberryAPI::Client::Users#user_api_keys (method)">#user_api_keys</a></span>, <span class='object_link'><a href="Client/Users.html#user_settings-instance_method" title="StrawberryAPI::Client::Users#user_settings (method)">#user_settings</a></span>, <span class='object_link'><a href="Client/Users.html#users-instance_method" title="StrawberryAPI::Client::Users#users (method)">#users</a></span></p>
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
|
180
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Templates.html" title="StrawberryAPI::Client::Templates (module)">Templates</a></span></h3>
|
181
|
+
<p class="inherited"><span class='object_link'><a href="Client/Templates.html#template-instance_method" title="StrawberryAPI::Client::Templates#template (method)">#template</a></span>, <span class='object_link'><a href="Client/Templates.html#templates-instance_method" title="StrawberryAPI::Client::Templates#templates (method)">#templates</a></span></p>
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Teams.html" title="StrawberryAPI::Client::Teams (module)">Teams</a></span></h3>
|
192
|
+
<p class="inherited"><span class='object_link'><a href="Client/Teams.html#add_user_to_team-instance_method" title="StrawberryAPI::Client::Teams#add_user_to_team (method)">#add_user_to_team</a></span>, <span class='object_link'><a href="Client/Teams.html#create_team-instance_method" title="StrawberryAPI::Client::Teams#create_team (method)">#create_team</a></span>, <span class='object_link'><a href="Client/Teams.html#destroy_team-instance_method" title="StrawberryAPI::Client::Teams#destroy_team (method)">#destroy_team</a></span>, <span class='object_link'><a href="Client/Teams.html#remove_user_from_team-instance_method" title="StrawberryAPI::Client::Teams#remove_user_from_team (method)">#remove_user_from_team</a></span>, <span class='object_link'><a href="Client/Teams.html#team-instance_method" title="StrawberryAPI::Client::Teams#team (method)">#team</a></span>, <span class='object_link'><a href="Client/Teams.html#teams-instance_method" title="StrawberryAPI::Client::Teams#teams (method)">#teams</a></span>, <span class='object_link'><a href="Client/Teams.html#update_team-instance_method" title="StrawberryAPI::Client::Teams#update_team (method)">#update_team</a></span>, <span class='object_link'><a href="Client/Teams.html#user_owned_teams-instance_method" title="StrawberryAPI::Client::Teams#user_owned_teams (method)">#user_owned_teams</a></span></p>
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/ProjectCopyToStrategies.html" title="StrawberryAPI::Client::ProjectCopyToStrategies (module)">ProjectCopyToStrategies</a></span></h3>
|
203
|
+
<p class="inherited"><span class='object_link'><a href="Client/ProjectCopyToStrategies.html#create_project_copy_to_strategy-instance_method" title="StrawberryAPI::Client::ProjectCopyToStrategies#create_project_copy_to_strategy (method)">#create_project_copy_to_strategy</a></span>, <span class='object_link'><a href="Client/ProjectCopyToStrategies.html#destroy_project_copy_to_strategy-instance_method" title="StrawberryAPI::Client::ProjectCopyToStrategies#destroy_project_copy_to_strategy (method)">#destroy_project_copy_to_strategy</a></span>, <span class='object_link'><a href="Client/ProjectCopyToStrategies.html#project_copy_to_strategies-instance_method" title="StrawberryAPI::Client::ProjectCopyToStrategies#project_copy_to_strategies (method)">#project_copy_to_strategies</a></span>, <span class='object_link'><a href="Client/ProjectCopyToStrategies.html#project_copy_to_strategy-instance_method" title="StrawberryAPI::Client::ProjectCopyToStrategies#project_copy_to_strategy (method)">#project_copy_to_strategy</a></span>, <span class='object_link'><a href="Client/ProjectCopyToStrategies.html#update_project_copy_to_strategy-instance_method" title="StrawberryAPI::Client::ProjectCopyToStrategies#update_project_copy_to_strategy (method)">#update_project_copy_to_strategy</a></span></p>
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/AssetCopyToStrategies.html" title="StrawberryAPI::Client::AssetCopyToStrategies (module)">AssetCopyToStrategies</a></span></h3>
|
214
|
+
<p class="inherited"><span class='object_link'><a href="Client/AssetCopyToStrategies.html#asset_copy_to_strategies-instance_method" title="StrawberryAPI::Client::AssetCopyToStrategies#asset_copy_to_strategies (method)">#asset_copy_to_strategies</a></span>, <span class='object_link'><a href="Client/AssetCopyToStrategies.html#asset_copy_to_strategy-instance_method" title="StrawberryAPI::Client::AssetCopyToStrategies#asset_copy_to_strategy (method)">#asset_copy_to_strategy</a></span>, <span class='object_link'><a href="Client/AssetCopyToStrategies.html#create_asset_copy_to_strategy-instance_method" title="StrawberryAPI::Client::AssetCopyToStrategies#create_asset_copy_to_strategy (method)">#create_asset_copy_to_strategy</a></span>, <span class='object_link'><a href="Client/AssetCopyToStrategies.html#destroy_asset_copy_to_strategy-instance_method" title="StrawberryAPI::Client::AssetCopyToStrategies#destroy_asset_copy_to_strategy (method)">#destroy_asset_copy_to_strategy</a></span>, <span class='object_link'><a href="Client/AssetCopyToStrategies.html#update_asset_copy_to_strategy-instance_method" title="StrawberryAPI::Client::AssetCopyToStrategies#update_asset_copy_to_strategy (method)">#update_asset_copy_to_strategy</a></span></p>
|
215
|
+
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/ArchiveStrategies.html" title="StrawberryAPI::Client::ArchiveStrategies (module)">ArchiveStrategies</a></span></h3>
|
225
|
+
<p class="inherited"><span class='object_link'><a href="Client/ArchiveStrategies.html#archive_strategies-instance_method" title="StrawberryAPI::Client::ArchiveStrategies#archive_strategies (method)">#archive_strategies</a></span>, <span class='object_link'><a href="Client/ArchiveStrategies.html#archive_strategies_configuration-instance_method" title="StrawberryAPI::Client::ArchiveStrategies#archive_strategies_configuration (method)">#archive_strategies_configuration</a></span>, <span class='object_link'><a href="Client/ArchiveStrategies.html#archive_strategy-instance_method" title="StrawberryAPI::Client::ArchiveStrategies#archive_strategy (method)">#archive_strategy</a></span>, <span class='object_link'><a href="Client/ArchiveStrategies.html#create_archive_strategy-instance_method" title="StrawberryAPI::Client::ArchiveStrategies#create_archive_strategy (method)">#create_archive_strategy</a></span>, <span class='object_link'><a href="Client/ArchiveStrategies.html#update_archive_strategy-instance_method" title="StrawberryAPI::Client::ArchiveStrategies#update_archive_strategy (method)">#update_archive_strategy</a></span></p>
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/StatusFlags.html" title="StrawberryAPI::Client::StatusFlags (module)">StatusFlags</a></span></h3>
|
236
|
+
<p class="inherited"><span class='object_link'><a href="Client/StatusFlags.html#status_flag-instance_method" title="StrawberryAPI::Client::StatusFlags#status_flag (method)">#status_flag</a></span>, <span class='object_link'><a href="Client/StatusFlags.html#status_flags-instance_method" title="StrawberryAPI::Client::StatusFlags#status_flags (method)">#status_flags</a></span></p>
|
237
|
+
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
|
246
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Settings.html" title="StrawberryAPI::Client::Settings (module)">Settings</a></span></h3>
|
247
|
+
<p class="inherited"><span class='object_link'><a href="Client/Settings.html#settings-instance_method" title="StrawberryAPI::Client::Settings#settings (method)">#settings</a></span></p>
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Sessions.html" title="StrawberryAPI::Client::Sessions (module)">Sessions</a></span></h3>
|
258
|
+
<p class="inherited"><span class='object_link'><a href="Client/Sessions.html#logged_in%3F-instance_method" title="StrawberryAPI::Client::Sessions#logged_in? (method)">#logged_in?</a></span>, <span class='object_link'><a href="Client/Sessions.html#logout-instance_method" title="StrawberryAPI::Client::Sessions#logout (method)">#logout</a></span>, <span class='object_link'><a href="Client/Sessions.html#session_info-instance_method" title="StrawberryAPI::Client::Sessions#session_info (method)">#session_info</a></span></p>
|
259
|
+
|
260
|
+
|
261
|
+
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
|
268
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Searches.html" title="StrawberryAPI::Client::Searches (module)">Searches</a></span></h3>
|
269
|
+
<p class="inherited"><span class='object_link'><a href="Client/Searches.html#search-instance_method" title="StrawberryAPI::Client::Searches#search (method)">#search</a></span></p>
|
270
|
+
|
271
|
+
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Schedules.html" title="StrawberryAPI::Client::Schedules (module)">Schedules</a></span></h3>
|
280
|
+
<p class="inherited"><span class='object_link'><a href="Client/Schedules.html#schedule-instance_method" title="StrawberryAPI::Client::Schedules#schedule (method)">#schedule</a></span>, <span class='object_link'><a href="Client/Schedules.html#schedules-instance_method" title="StrawberryAPI::Client::Schedules#schedules (method)">#schedules</a></span></p>
|
281
|
+
|
282
|
+
|
283
|
+
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
|
290
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Roles.html" title="StrawberryAPI::Client::Roles (module)">Roles</a></span></h3>
|
291
|
+
<p class="inherited"><span class='object_link'><a href="Client/Roles.html#roles-instance_method" title="StrawberryAPI::Client::Roles#roles (method)">#roles</a></span></p>
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Projects.html" title="StrawberryAPI::Client::Projects (module)">Projects</a></span></h3>
|
302
|
+
<p class="inherited"><span class='object_link'><a href="Client/Projects.html#add_team_to_project-instance_method" title="StrawberryAPI::Client::Projects#add_team_to_project (method)">#add_team_to_project</a></span>, <span class='object_link'><a href="Client/Projects.html#archive_project-instance_method" title="StrawberryAPI::Client::Projects#archive_project (method)">#archive_project</a></span>, <span class='object_link'><a href="Client/Projects.html#archived_projects-instance_method" title="StrawberryAPI::Client::Projects#archived_projects (method)">#archived_projects</a></span>, <span class='object_link'><a href="Client/Projects.html#close_project-instance_method" title="StrawberryAPI::Client::Projects#close_project (method)">#close_project</a></span>, <span class='object_link'><a href="Client/Projects.html#create_project-instance_method" title="StrawberryAPI::Client::Projects#create_project (method)">#create_project</a></span>, <span class='object_link'><a href="Client/Projects.html#destroy_project-instance_method" title="StrawberryAPI::Client::Projects#destroy_project (method)">#destroy_project</a></span>, <span class='object_link'><a href="Client/Projects.html#forceclose_project-instance_method" title="StrawberryAPI::Client::Projects#forceclose_project (method)">#forceclose_project</a></span>, <span class='object_link'><a href="Client/Projects.html#library_projects-instance_method" title="StrawberryAPI::Client::Projects#library_projects (method)">#library_projects</a></span>, <span class='object_link'><a href="Client/Projects.html#mount_project-instance_method" title="StrawberryAPI::Client::Projects#mount_project (method)">#mount_project</a></span>, <span class='object_link'><a href="Client/Projects.html#online_projects-instance_method" title="StrawberryAPI::Client::Projects#online_projects (method)">#online_projects</a></span>, <span class='object_link'><a href="Client/Projects.html#open_project-instance_method" title="StrawberryAPI::Client::Projects#open_project (method)">#open_project</a></span>, <span class='object_link'><a href="Client/Projects.html#project-instance_method" title="StrawberryAPI::Client::Projects#project (method)">#project</a></span>, <span class='object_link'><a href="Client/Projects.html#project_assets-instance_method" title="StrawberryAPI::Client::Projects#project_assets (method)">#project_assets</a></span>, <span class='object_link'><a href="Client/Projects.html#project_custom_metadata-instance_method" title="StrawberryAPI::Client::Projects#project_custom_metadata (method)">#project_custom_metadata</a></span>, <span class='object_link'><a href="Client/Projects.html#project_effective_access_rights-instance_method" title="StrawberryAPI::Client::Projects#project_effective_access_rights (method)">#project_effective_access_rights</a></span>, <span class='object_link'><a href="Client/Projects.html#project_status_flags-instance_method" title="StrawberryAPI::Client::Projects#project_status_flags (method)">#project_status_flags</a></span>, <span class='object_link'><a href="Client/Projects.html#project_teams-instance_method" title="StrawberryAPI::Client::Projects#project_teams (method)">#project_teams</a></span>, <span class='object_link'><a href="Client/Projects.html#projects-instance_method" title="StrawberryAPI::Client::Projects#projects (method)">#projects</a></span>, <span class='object_link'><a href="Client/Projects.html#projects_report-instance_method" title="StrawberryAPI::Client::Projects#projects_report (method)">#projects_report</a></span>, <span class='object_link'><a href="Client/Projects.html#refresh_mounted_project-instance_method" title="StrawberryAPI::Client::Projects#refresh_mounted_project (method)">#refresh_mounted_project</a></span>, <span class='object_link'><a href="Client/Projects.html#remove_team_from_project-instance_method" title="StrawberryAPI::Client::Projects#remove_team_from_project (method)">#remove_team_from_project</a></span>, <span class='object_link'><a href="Client/Projects.html#search_project-instance_method" title="StrawberryAPI::Client::Projects#search_project (method)">#search_project</a></span>, <span class='object_link'><a href="Client/Projects.html#sync_project-instance_method" title="StrawberryAPI::Client::Projects#sync_project (method)">#sync_project</a></span>, <span class='object_link'><a href="Client/Projects.html#umount_project-instance_method" title="StrawberryAPI::Client::Projects#umount_project (method)">#umount_project</a></span>, <span class='object_link'><a href="Client/Projects.html#unarchive_project-instance_method" title="StrawberryAPI::Client::Projects#unarchive_project (method)">#unarchive_project</a></span></p>
|
303
|
+
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
|
312
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Markers.html" title="StrawberryAPI::Client::Markers (module)">Markers</a></span></h3>
|
313
|
+
<p class="inherited"><span class='object_link'><a href="Client/Markers.html#marker-instance_method" title="StrawberryAPI::Client::Markers#marker (method)">#marker</a></span></p>
|
314
|
+
|
315
|
+
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Libraries.html" title="StrawberryAPI::Client::Libraries (module)">Libraries</a></span></h3>
|
324
|
+
<p class="inherited"><span class='object_link'><a href="Client/Libraries.html#libraries-instance_method" title="StrawberryAPI::Client::Libraries#libraries (method)">#libraries</a></span>, <span class='object_link'><a href="Client/Libraries.html#library-instance_method" title="StrawberryAPI::Client::Libraries#library (method)">#library</a></span></p>
|
325
|
+
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
|
334
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Features.html" title="StrawberryAPI::Client::Features (module)">Features</a></span></h3>
|
335
|
+
<p class="inherited"><span class='object_link'><a href="Client/Features.html#feature-instance_method" title="StrawberryAPI::Client::Features#feature (method)">#feature</a></span>, <span class='object_link'><a href="Client/Features.html#features-instance_method" title="StrawberryAPI::Client::Features#features (method)">#features</a></span></p>
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/ProjectFeedbacks.html" title="StrawberryAPI::Client::ProjectFeedbacks (module)">ProjectFeedbacks</a></span></h3>
|
346
|
+
<p class="inherited"><span class='object_link'><a href="Client/ProjectFeedbacks.html#project_feedback-instance_method" title="StrawberryAPI::Client::ProjectFeedbacks#project_feedback (method)">#project_feedback</a></span></p>
|
347
|
+
|
348
|
+
|
349
|
+
|
350
|
+
|
351
|
+
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
|
356
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/CopyToFeedbacks.html" title="StrawberryAPI::Client::CopyToFeedbacks (module)">CopyToFeedbacks</a></span></h3>
|
357
|
+
<p class="inherited"><span class='object_link'><a href="Client/CopyToFeedbacks.html#copy_to_feedback-instance_method" title="StrawberryAPI::Client::CopyToFeedbacks#copy_to_feedback (method)">#copy_to_feedback</a></span></p>
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
|
362
|
+
|
363
|
+
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/AssetFeedbacks.html" title="StrawberryAPI::Client::AssetFeedbacks (module)">AssetFeedbacks</a></span></h3>
|
368
|
+
<p class="inherited"><span class='object_link'><a href="Client/AssetFeedbacks.html#asset_feedback-instance_method" title="StrawberryAPI::Client::AssetFeedbacks#asset_feedback (method)">#asset_feedback</a></span></p>
|
369
|
+
|
370
|
+
|
371
|
+
|
372
|
+
|
373
|
+
|
374
|
+
|
375
|
+
|
376
|
+
|
377
|
+
|
378
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Edits.html" title="StrawberryAPI::Client::Edits (module)">Edits</a></span></h3>
|
379
|
+
<p class="inherited"><span class='object_link'><a href="Client/Edits.html#edit-instance_method" title="StrawberryAPI::Client::Edits#edit (method)">#edit</a></span>, <span class='object_link'><a href="Client/Edits.html#edit_clear-instance_method" title="StrawberryAPI::Client::Edits#edit_clear (method)">#edit_clear</a></span>, <span class='object_link'><a href="Client/Edits.html#edit_status-instance_method" title="StrawberryAPI::Client::Edits#edit_status (method)">#edit_status</a></span>, <span class='object_link'><a href="Client/Edits.html#edits-instance_method" title="StrawberryAPI::Client::Edits#edits (method)">#edits</a></span></p>
|
380
|
+
|
381
|
+
|
382
|
+
|
383
|
+
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/CustomMetadataSets.html" title="StrawberryAPI::Client::CustomMetadataSets (module)">CustomMetadataSets</a></span></h3>
|
390
|
+
<p class="inherited"><span class='object_link'><a href="Client/CustomMetadataSets.html#custom_metadata_sets-instance_method" title="StrawberryAPI::Client::CustomMetadataSets#custom_metadata_sets (method)">#custom_metadata_sets</a></span></p>
|
391
|
+
|
392
|
+
|
393
|
+
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
|
398
|
+
|
399
|
+
|
400
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/CustomMetadataOptions.html" title="StrawberryAPI::Client::CustomMetadataOptions (module)">CustomMetadataOptions</a></span></h3>
|
401
|
+
<p class="inherited"><span class='object_link'><a href="Client/CustomMetadataOptions.html#custom_metadata_options-instance_method" title="StrawberryAPI::Client::CustomMetadataOptions#custom_metadata_options (method)">#custom_metadata_options</a></span></p>
|
402
|
+
|
403
|
+
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
|
408
|
+
|
409
|
+
|
410
|
+
|
411
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/CustomMetadataFields.html" title="StrawberryAPI::Client::CustomMetadataFields (module)">CustomMetadataFields</a></span></h3>
|
412
|
+
<p class="inherited"><span class='object_link'><a href="Client/CustomMetadataFields.html#custom_metadata_fields-instance_method" title="StrawberryAPI::Client::CustomMetadataFields#custom_metadata_fields (method)">#custom_metadata_fields</a></span></p>
|
413
|
+
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
|
418
|
+
|
419
|
+
|
420
|
+
|
421
|
+
|
422
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/CustomMetadata.html" title="StrawberryAPI::Client::CustomMetadata (module)">CustomMetadata</a></span></h3>
|
423
|
+
<p class="inherited"><span class='object_link'><a href="Client/CustomMetadata.html#custom_metadata-instance_method" title="StrawberryAPI::Client::CustomMetadata#custom_metadata (method)">#custom_metadata</a></span></p>
|
424
|
+
|
425
|
+
|
426
|
+
|
427
|
+
|
428
|
+
|
429
|
+
|
430
|
+
|
431
|
+
|
432
|
+
|
433
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Collections.html" title="StrawberryAPI::Client::Collections (module)">Collections</a></span></h3>
|
434
|
+
<p class="inherited"><span class='object_link'><a href="Client/Collections.html#collection-instance_method" title="StrawberryAPI::Client::Collections#collection (method)">#collection</a></span>, <span class='object_link'><a href="Client/Collections.html#collections-instance_method" title="StrawberryAPI::Client::Collections#collections (method)">#collections</a></span></p>
|
435
|
+
|
436
|
+
|
437
|
+
|
438
|
+
|
439
|
+
|
440
|
+
|
441
|
+
|
442
|
+
|
443
|
+
|
444
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/Assets.html" title="StrawberryAPI::Client::Assets (module)">Assets</a></span></h3>
|
445
|
+
<p class="inherited"><span class='object_link'><a href="Client/Assets.html#asset-instance_method" title="StrawberryAPI::Client::Assets#asset (method)">#asset</a></span>, <span class='object_link'><a href="Client/Assets.html#asset_custom_metadata-instance_method" title="StrawberryAPI::Client::Assets#asset_custom_metadata (method)">#asset_custom_metadata</a></span>, <span class='object_link'><a href="Client/Assets.html#asset_links-instance_method" title="StrawberryAPI::Client::Assets#asset_links (method)">#asset_links</a></span>, <span class='object_link'><a href="Client/Assets.html#asset_marker_descriptions-instance_method" title="StrawberryAPI::Client::Assets#asset_marker_descriptions (method)">#asset_marker_descriptions</a></span>, <span class='object_link'><a href="Client/Assets.html#assets-instance_method" title="StrawberryAPI::Client::Assets#assets (method)">#assets</a></span>, <span class='object_link'><a href="Client/Assets.html#destroy_assets-instance_method" title="StrawberryAPI::Client::Assets#destroy_assets (method)">#destroy_assets</a></span>, <span class='object_link'><a href="Client/Assets.html#update_asset_custom_metadata-instance_method" title="StrawberryAPI::Client::Assets#update_asset_custom_metadata (method)">#update_asset_custom_metadata</a></span></p>
|
446
|
+
|
447
|
+
|
448
|
+
|
449
|
+
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
|
454
|
+
|
455
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Client/ApiKeys.html" title="StrawberryAPI::Client::ApiKeys (module)">ApiKeys</a></span></h3>
|
456
|
+
<p class="inherited"><span class='object_link'><a href="Client/ApiKeys.html#api_key-instance_method" title="StrawberryAPI::Client::ApiKeys#api_key (method)">#api_key</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#create_api_key-instance_method" title="StrawberryAPI::Client::ApiKeys#create_api_key (method)">#create_api_key</a></span>, <span class='object_link'><a href="Client/ApiKeys.html#destroy_api_key-instance_method" title="StrawberryAPI::Client::ApiKeys#destroy_api_key (method)">#destroy_api_key</a></span></p>
|
457
|
+
|
458
|
+
|
459
|
+
|
460
|
+
|
461
|
+
|
462
|
+
|
463
|
+
|
464
|
+
|
465
|
+
|
466
|
+
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="HttpClient.html" title="StrawberryAPI::HttpClient (class)">HttpClient</a></span></h3>
|
467
|
+
<p class="inherited"><span class='object_link'><a href="HttpClient.html#delete-instance_method" title="StrawberryAPI::HttpClient#delete (method)">#delete</a></span>, <span class='object_link'><a href="HttpClient.html#get-instance_method" title="StrawberryAPI::HttpClient#get (method)">#get</a></span>, <span class='object_link'><a href="HttpClient.html#handle_response-instance_method" title="StrawberryAPI::HttpClient#handle_response (method)">#handle_response</a></span>, <span class='object_link'><a href="HttpClient.html#initialize-instance_method" title="StrawberryAPI::HttpClient#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="HttpClient.html#post-instance_method" title="StrawberryAPI::HttpClient#post (method)">#post</a></span>, <span class='object_link'><a href="HttpClient.html#put-instance_method" title="StrawberryAPI::HttpClient#put (method)">#put</a></span>, <span class='object_link'><a href="HttpClient.html#request-instance_method" title="StrawberryAPI::HttpClient#request (method)">#request</a></span></p>
|
468
|
+
|
469
|
+
<div id="constructor_details" class="method_details_list">
|
470
|
+
<h2>Constructor Details</h2>
|
471
|
+
|
472
|
+
<p class="notice">This class inherits a constructor from <span class='object_link'><a href="HttpClient.html#initialize-instance_method" title="StrawberryAPI::HttpClient#initialize (method)">StrawberryAPI::HttpClient</a></span></p>
|
473
|
+
|
474
|
+
</div>
|
475
|
+
|
476
|
+
|
477
|
+
</div>
|
478
|
+
|
479
|
+
<div id="footer">
|
480
|
+
Generated on Thu Aug 30 12:51:41 2018 by
|
481
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
482
|
+
0.9.16 (ruby-2.5.0).
|
483
|
+
</div>
|
484
|
+
|
485
|
+
</div>
|
486
|
+
</body>
|
487
|
+
</html>
|