google-dfp-api 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1392) hide show
  1. checksums.yaml +15 -0
  2. data/ChangeLog +3 -0
  3. data/{README → README.md} +32 -0
  4. data/examples/v201208/audience_segment_service/get_all_audience_segments.rb +93 -0
  5. data/examples/v201208/common/error_handling.rb +76 -0
  6. data/examples/v201208/company_service/create_companies.rb +81 -0
  7. data/examples/v201208/company_service/get_all_companies.rb +92 -0
  8. data/examples/v201208/company_service/get_companies_by_statement.rb +88 -0
  9. data/examples/v201208/company_service/get_company.rb +72 -0
  10. data/examples/v201208/company_service/update_companies.rb +95 -0
  11. data/examples/v201208/content_service/get_all_content.rb +94 -0
  12. data/examples/v201208/content_service/get_content_by_category.rb +136 -0
  13. data/examples/v201208/creative_service/copy_image_creatives.rb +115 -0
  14. data/examples/v201208/creative_service/create_creative_from_template.rb +139 -0
  15. data/examples/v201208/creative_service/create_creatives.rb +106 -0
  16. data/examples/v201208/creative_service/create_custom_creative.rb +104 -0
  17. data/examples/v201208/creative_service/get_all_creatives.rb +93 -0
  18. data/examples/v201208/creative_service/get_creative.rb +72 -0
  19. data/examples/v201208/creative_service/get_creatives_by_statement.rb +87 -0
  20. data/examples/v201208/creative_service/update_creatives.rb +96 -0
  21. data/examples/v201208/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  22. data/examples/v201208/creative_set_service/create_creative_set.rb +83 -0
  23. data/examples/v201208/creative_set_service/get_all_creative_sets.rb +94 -0
  24. data/examples/v201208/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  25. data/examples/v201208/creative_set_service/update_creative_sets.rb +85 -0
  26. data/examples/v201208/creative_template_service/get_all_creative_templates.rb +94 -0
  27. data/examples/v201208/creative_template_service/get_creative_template.rb +74 -0
  28. data/examples/v201208/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  29. data/examples/v201208/custom_field_service/create_custom_field_options.rb +87 -0
  30. data/examples/v201208/custom_field_service/create_custom_fields.rb +86 -0
  31. data/examples/v201208/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  32. data/examples/v201208/custom_field_service/get_all_custom_fields.rb +102 -0
  33. data/examples/v201208/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  34. data/examples/v201208/custom_field_service/set_line_item_custom_field_value.rb +135 -0
  35. data/examples/v201208/custom_field_service/update_custom_fields.rb +83 -0
  36. data/examples/v201208/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  37. data/examples/v201208/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  38. data/examples/v201208/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  39. data/examples/v201208/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  40. data/examples/v201208/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  41. data/examples/v201208/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  42. data/examples/v201208/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  43. data/examples/v201208/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  44. data/examples/v201208/forecast_service/get_forecast.rb +107 -0
  45. data/examples/v201208/forecast_service/get_forecast_by_id.rb +80 -0
  46. data/examples/v201208/inventory_service/create_ad_units.rb +101 -0
  47. data/examples/v201208/inventory_service/create_mobile_ad_unit.rb +101 -0
  48. data/examples/v201208/inventory_service/create_video_ad_unit.rb +108 -0
  49. data/examples/v201208/inventory_service/deactivate_ad_units.rb +119 -0
  50. data/examples/v201208/inventory_service/get_ad_unit.rb +72 -0
  51. data/examples/v201208/inventory_service/get_ad_unit_sizes.rb +85 -0
  52. data/examples/v201208/inventory_service/get_ad_units_by_statement.rb +96 -0
  53. data/examples/v201208/inventory_service/get_all_ad_units.rb +93 -0
  54. data/examples/v201208/inventory_service/update_ad_units.rb +94 -0
  55. data/examples/v201208/label_service/create_labels.rb +83 -0
  56. data/examples/v201208/label_service/deactivate_labels.rb +118 -0
  57. data/examples/v201208/label_service/get_all_labels.rb +95 -0
  58. data/examples/v201208/label_service/get_label.rb +76 -0
  59. data/examples/v201208/label_service/get_labels_by_statement.rb +81 -0
  60. data/examples/v201208/label_service/update_labels.rb +102 -0
  61. data/examples/v201208/line_item_creative_association_service/create_licas.rb +94 -0
  62. data/examples/v201208/line_item_creative_association_service/deactivate_licas.rb +127 -0
  63. data/examples/v201208/line_item_creative_association_service/get_all_licas.rb +98 -0
  64. data/examples/v201208/line_item_creative_association_service/get_lica.rb +77 -0
  65. data/examples/v201208/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  66. data/examples/v201208/line_item_creative_association_service/update_licas.rb +91 -0
  67. data/examples/v201208/line_item_service/activate_line_items.rb +131 -0
  68. data/examples/v201208/line_item_service/create_line_items.rb +177 -0
  69. data/examples/v201208/line_item_service/create_mobile_line_item.rb +135 -0
  70. data/examples/v201208/line_item_service/create_video_line_item.rb +156 -0
  71. data/examples/v201208/line_item_service/get_all_line_items.rb +94 -0
  72. data/examples/v201208/line_item_service/get_line_item.rb +74 -0
  73. data/examples/v201208/line_item_service/get_line_items_by_statement.rb +93 -0
  74. data/examples/v201208/line_item_service/get_recently_updated_line_items.rb +98 -0
  75. data/examples/v201208/line_item_service/target_custom_criteria.rb +129 -0
  76. data/examples/v201208/line_item_service/update_line_items.rb +109 -0
  77. data/examples/v201208/network_service/get_all_networks.rb +74 -0
  78. data/examples/v201208/network_service/get_current_network.rb +66 -0
  79. data/examples/v201208/network_service/make_test_network.rb +79 -0
  80. data/examples/v201208/order_service/approve_orders.rb +122 -0
  81. data/examples/v201208/order_service/create_orders.rb +92 -0
  82. data/examples/v201208/order_service/get_all_orders.rb +93 -0
  83. data/examples/v201208/order_service/get_order.rb +74 -0
  84. data/examples/v201208/order_service/get_orders_by_statement.rb +90 -0
  85. data/examples/v201208/order_service/update_orders.rb +95 -0
  86. data/examples/v201208/placement_service/create_placements.rb +131 -0
  87. data/examples/v201208/placement_service/deactivate_placements.rb +118 -0
  88. data/examples/v201208/placement_service/get_all_placements.rb +93 -0
  89. data/examples/v201208/placement_service/get_placement.rb +74 -0
  90. data/examples/v201208/placement_service/get_placements_by_statement.rb +86 -0
  91. data/examples/v201208/placement_service/update_placements.rb +97 -0
  92. data/examples/v201208/publisher_query_language_service/get_all_cities.rb +90 -0
  93. data/examples/v201208/report_service/download_report.rb +81 -0
  94. data/examples/v201208/report_service/run_delivery_report.rb +103 -0
  95. data/examples/v201208/report_service/run_inventory_report.rb +96 -0
  96. data/examples/v201208/report_service/run_merged_delivery_report.rb +94 -0
  97. data/examples/v201208/report_service/run_report_with_custom_fields.rb +135 -0
  98. data/examples/v201208/report_service/run_sales_report.rb +92 -0
  99. data/examples/v201208/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  100. data/examples/v201208/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  101. data/examples/v201208/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  102. data/examples/v201208/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  103. data/examples/v201208/team_service/create_teams.rb +83 -0
  104. data/examples/v201208/team_service/get_all_teams.rb +92 -0
  105. data/examples/v201208/team_service/get_team.rb +74 -0
  106. data/examples/v201208/team_service/get_teams_by_statement.rb +78 -0
  107. data/examples/v201208/team_service/update_teams.rb +95 -0
  108. data/examples/v201208/third_party_slot_service/archive_third_party_slots.rb +125 -0
  109. data/examples/v201208/third_party_slot_service/create_third_party_slot.rb +91 -0
  110. data/examples/v201208/third_party_slot_service/get_all_third_party_slots.rb +93 -0
  111. data/examples/v201208/third_party_slot_service/get_third_party_slot_by_statement.rb +86 -0
  112. data/examples/v201208/third_party_slot_service/update_third_party_slots.rb +95 -0
  113. data/examples/v201208/user_service/create_users.rb +89 -0
  114. data/examples/v201208/user_service/deactivate_users.rb +97 -0
  115. data/examples/v201208/user_service/get_all_roles.rb +73 -0
  116. data/examples/v201208/user_service/get_all_users.rb +93 -0
  117. data/examples/v201208/user_service/get_current_user.rb +66 -0
  118. data/examples/v201208/user_service/get_user.rb +73 -0
  119. data/examples/v201208/user_service/get_users_by_statement.rb +79 -0
  120. data/examples/v201208/user_service/update_users.rb +89 -0
  121. data/examples/v201208/user_team_association_service/create_user_team_associations.rb +86 -0
  122. data/examples/v201208/user_team_association_service/delete_user_team_associations.rb +111 -0
  123. data/examples/v201208/user_team_association_service/get_all_user_team_associations.rb +94 -0
  124. data/examples/v201208/user_team_association_service/get_user_team_association.rb +76 -0
  125. data/examples/v201208/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  126. data/examples/v201208/user_team_association_service/update_user_team_associations.rb +102 -0
  127. data/examples/v201211/audience_segment_service/get_all_audience_segments.rb +93 -0
  128. data/examples/v201211/common/error_handling.rb +76 -0
  129. data/examples/v201211/company_service/create_companies.rb +81 -0
  130. data/examples/v201211/company_service/get_all_companies.rb +92 -0
  131. data/examples/v201211/company_service/get_companies_by_statement.rb +88 -0
  132. data/examples/v201211/company_service/get_company.rb +72 -0
  133. data/examples/v201211/company_service/update_companies.rb +102 -0
  134. data/examples/v201211/content_service/get_all_content.rb +94 -0
  135. data/examples/v201211/content_service/get_content_by_category.rb +143 -0
  136. data/examples/v201211/creative_service/copy_image_creatives.rb +115 -0
  137. data/examples/v201211/creative_service/create_creative_from_template.rb +139 -0
  138. data/examples/v201211/creative_service/create_creatives.rb +106 -0
  139. data/examples/v201211/creative_service/create_custom_creative.rb +104 -0
  140. data/examples/v201211/creative_service/get_all_creatives.rb +93 -0
  141. data/examples/v201211/creative_service/get_creative.rb +72 -0
  142. data/examples/v201211/creative_service/get_creatives_by_statement.rb +87 -0
  143. data/examples/v201211/creative_service/update_creatives.rb +96 -0
  144. data/examples/v201211/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  145. data/examples/v201211/creative_set_service/create_creative_set.rb +83 -0
  146. data/examples/v201211/creative_set_service/get_all_creative_sets.rb +94 -0
  147. data/examples/v201211/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  148. data/examples/v201211/creative_set_service/update_creative_sets.rb +85 -0
  149. data/examples/v201211/creative_template_service/get_all_creative_templates.rb +94 -0
  150. data/examples/v201211/creative_template_service/get_creative_template.rb +74 -0
  151. data/examples/v201211/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  152. data/examples/v201211/creative_wrapper_service/create_creative_wrappers.rb +89 -0
  153. data/examples/v201211/creative_wrapper_service/deactivate_creative_wrapper.rb +102 -0
  154. data/examples/v201211/creative_wrapper_service/get_all_creative_wrappers.rb +94 -0
  155. data/examples/v201211/creative_wrapper_service/get_creative_wrappers_by_statement.rb +88 -0
  156. data/examples/v201211/creative_wrapper_service/update_creative_wrappers.rb +86 -0
  157. data/examples/v201211/custom_field_service/create_custom_field_options.rb +87 -0
  158. data/examples/v201211/custom_field_service/create_custom_fields.rb +86 -0
  159. data/examples/v201211/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  160. data/examples/v201211/custom_field_service/get_all_custom_fields.rb +102 -0
  161. data/examples/v201211/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  162. data/examples/v201211/custom_field_service/set_line_item_custom_field_value.rb +135 -0
  163. data/examples/v201211/custom_field_service/update_custom_fields.rb +83 -0
  164. data/examples/v201211/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  165. data/examples/v201211/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  166. data/examples/v201211/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  167. data/examples/v201211/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  168. data/examples/v201211/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  169. data/examples/v201211/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  170. data/examples/v201211/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  171. data/examples/v201211/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  172. data/examples/v201211/forecast_service/get_forecast.rb +107 -0
  173. data/examples/v201211/forecast_service/get_forecast_by_id.rb +80 -0
  174. data/examples/v201211/inventory_service/create_ad_units.rb +101 -0
  175. data/examples/v201211/inventory_service/create_mobile_ad_unit.rb +101 -0
  176. data/examples/v201211/inventory_service/create_video_ad_unit.rb +108 -0
  177. data/examples/v201211/inventory_service/deactivate_ad_units.rb +119 -0
  178. data/examples/v201211/inventory_service/get_ad_unit.rb +72 -0
  179. data/examples/v201211/inventory_service/get_ad_unit_sizes.rb +85 -0
  180. data/examples/v201211/inventory_service/get_ad_units_by_statement.rb +96 -0
  181. data/examples/v201211/inventory_service/get_all_ad_units.rb +93 -0
  182. data/examples/v201211/inventory_service/update_ad_units.rb +96 -0
  183. data/examples/v201211/label_service/create_labels.rb +83 -0
  184. data/examples/v201211/label_service/deactivate_labels.rb +118 -0
  185. data/examples/v201211/label_service/get_all_labels.rb +95 -0
  186. data/examples/v201211/label_service/get_label.rb +76 -0
  187. data/examples/v201211/label_service/get_labels_by_statement.rb +81 -0
  188. data/examples/v201211/label_service/update_labels.rb +102 -0
  189. data/examples/v201211/line_item_creative_association_service/create_licas.rb +94 -0
  190. data/examples/v201211/line_item_creative_association_service/deactivate_licas.rb +127 -0
  191. data/examples/v201211/line_item_creative_association_service/get_all_licas.rb +98 -0
  192. data/examples/v201211/line_item_creative_association_service/get_lica.rb +77 -0
  193. data/examples/v201211/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  194. data/examples/v201211/line_item_creative_association_service/update_licas.rb +91 -0
  195. data/examples/v201211/line_item_service/activate_line_items.rb +131 -0
  196. data/examples/v201211/line_item_service/create_line_items.rb +177 -0
  197. data/examples/v201211/line_item_service/create_mobile_line_item.rb +135 -0
  198. data/examples/v201211/line_item_service/create_video_line_item.rb +156 -0
  199. data/examples/v201211/line_item_service/get_all_line_items.rb +94 -0
  200. data/examples/v201211/line_item_service/get_line_item.rb +74 -0
  201. data/examples/v201211/line_item_service/get_line_items_by_statement.rb +93 -0
  202. data/examples/v201211/line_item_service/get_recently_updated_line_items.rb +98 -0
  203. data/examples/v201211/line_item_service/target_custom_criteria.rb +129 -0
  204. data/examples/v201211/line_item_service/update_line_items.rb +109 -0
  205. data/examples/v201211/network_service/get_all_networks.rb +74 -0
  206. data/examples/v201211/network_service/get_current_network.rb +66 -0
  207. data/examples/v201211/network_service/make_test_network.rb +79 -0
  208. data/examples/v201211/order_service/approve_orders.rb +122 -0
  209. data/examples/v201211/order_service/create_orders.rb +92 -0
  210. data/examples/v201211/order_service/get_all_orders.rb +93 -0
  211. data/examples/v201211/order_service/get_order.rb +74 -0
  212. data/examples/v201211/order_service/get_orders_by_statement.rb +90 -0
  213. data/examples/v201211/order_service/update_orders.rb +97 -0
  214. data/examples/v201211/placement_service/create_placements.rb +131 -0
  215. data/examples/v201211/placement_service/deactivate_placements.rb +118 -0
  216. data/examples/v201211/placement_service/get_all_placements.rb +93 -0
  217. data/examples/v201211/placement_service/get_placement.rb +74 -0
  218. data/examples/v201211/placement_service/get_placements_by_statement.rb +86 -0
  219. data/examples/v201211/placement_service/update_placements.rb +97 -0
  220. data/examples/v201211/publisher_query_language_service/get_all_cities.rb +104 -0
  221. data/examples/v201211/report_service/download_report.rb +81 -0
  222. data/examples/v201211/report_service/run_delivery_report.rb +103 -0
  223. data/examples/v201211/report_service/run_inventory_report.rb +96 -0
  224. data/examples/v201211/report_service/run_merged_delivery_report.rb +94 -0
  225. data/examples/v201211/report_service/run_report_with_custom_fields.rb +135 -0
  226. data/examples/v201211/report_service/run_sales_report.rb +92 -0
  227. data/examples/v201211/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  228. data/examples/v201211/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  229. data/examples/v201211/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  230. data/examples/v201211/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  231. data/examples/v201211/team_service/create_teams.rb +83 -0
  232. data/examples/v201211/team_service/get_all_teams.rb +92 -0
  233. data/examples/v201211/team_service/get_team.rb +74 -0
  234. data/examples/v201211/team_service/get_teams_by_statement.rb +78 -0
  235. data/examples/v201211/team_service/update_teams.rb +97 -0
  236. data/examples/v201211/third_party_slot_service/archive_third_party_slots.rb +125 -0
  237. data/examples/v201211/third_party_slot_service/create_third_party_slot.rb +91 -0
  238. data/examples/v201211/third_party_slot_service/get_all_third_party_slots.rb +93 -0
  239. data/examples/v201211/third_party_slot_service/get_third_party_slot_by_statement.rb +86 -0
  240. data/examples/v201211/third_party_slot_service/update_third_party_slots.rb +95 -0
  241. data/examples/v201211/user_service/create_users.rb +89 -0
  242. data/examples/v201211/user_service/deactivate_users.rb +97 -0
  243. data/examples/v201211/user_service/get_all_roles.rb +73 -0
  244. data/examples/v201211/user_service/get_all_users.rb +93 -0
  245. data/examples/v201211/user_service/get_current_user.rb +66 -0
  246. data/examples/v201211/user_service/get_user.rb +73 -0
  247. data/examples/v201211/user_service/get_users_by_statement.rb +79 -0
  248. data/examples/v201211/user_service/update_users.rb +89 -0
  249. data/examples/v201211/user_team_association_service/create_user_team_associations.rb +86 -0
  250. data/examples/v201211/user_team_association_service/delete_user_team_associations.rb +111 -0
  251. data/examples/v201211/user_team_association_service/get_all_user_team_associations.rb +94 -0
  252. data/examples/v201211/user_team_association_service/get_user_team_association.rb +76 -0
  253. data/examples/v201211/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  254. data/examples/v201211/user_team_association_service/update_user_team_associations.rb +102 -0
  255. data/examples/v201302/activity_group_service/create_activity_groups.rb +94 -0
  256. data/examples/v201302/activity_group_service/get_active_activity_groups.rb +100 -0
  257. data/examples/v201302/activity_group_service/get_all_activity_groups.rb +95 -0
  258. data/examples/v201302/activity_group_service/update_activity_groups.rb +87 -0
  259. data/examples/v201302/activity_service/create_activities.rb +91 -0
  260. data/examples/v201302/activity_service/get_active_activities.rb +107 -0
  261. data/examples/v201302/activity_service/get_all_activities.rb +144 -0
  262. data/examples/v201302/activity_service/update_activities.rb +85 -0
  263. data/examples/v201302/audience_segment_service/get_all_audience_segments.rb +93 -0
  264. data/examples/v201302/common/error_handling.rb +76 -0
  265. data/examples/v201302/company_service/create_companies.rb +81 -0
  266. data/examples/v201302/company_service/get_all_companies.rb +92 -0
  267. data/examples/v201302/company_service/get_companies_by_statement.rb +88 -0
  268. data/examples/v201302/company_service/get_company.rb +72 -0
  269. data/examples/v201302/company_service/update_companies.rb +102 -0
  270. data/examples/v201302/contact_service/create_contacts.rb +95 -0
  271. data/examples/v201302/contact_service/get_all_contacts.rb +92 -0
  272. data/examples/v201302/contact_service/get_uninvited_contacts.rb +102 -0
  273. data/examples/v201302/contact_service/update_contacts.rb +84 -0
  274. data/examples/v201302/content_service/get_all_content.rb +94 -0
  275. data/examples/v201302/content_service/get_content_by_category.rb +143 -0
  276. data/examples/v201302/creative_service/copy_image_creatives.rb +115 -0
  277. data/examples/v201302/creative_service/create_creative_from_template.rb +139 -0
  278. data/examples/v201302/creative_service/create_creatives.rb +112 -0
  279. data/examples/v201302/creative_service/create_custom_creative.rb +104 -0
  280. data/examples/v201302/creative_service/get_all_creatives.rb +93 -0
  281. data/examples/v201302/creative_service/get_creative.rb +72 -0
  282. data/examples/v201302/creative_service/get_creatives_by_statement.rb +87 -0
  283. data/examples/v201302/creative_service/update_creatives.rb +96 -0
  284. data/examples/v201302/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  285. data/examples/v201302/creative_set_service/create_creative_set.rb +83 -0
  286. data/examples/v201302/creative_set_service/get_all_creative_sets.rb +94 -0
  287. data/examples/v201302/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  288. data/examples/v201302/creative_set_service/update_creative_sets.rb +85 -0
  289. data/examples/v201302/creative_template_service/get_all_creative_templates.rb +94 -0
  290. data/examples/v201302/creative_template_service/get_creative_template.rb +74 -0
  291. data/examples/v201302/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  292. data/examples/v201302/creative_wrapper_service/create_creative_wrappers.rb +89 -0
  293. data/examples/v201302/creative_wrapper_service/deactivate_creative_wrapper.rb +102 -0
  294. data/examples/v201302/creative_wrapper_service/get_all_creative_wrappers.rb +94 -0
  295. data/examples/v201302/creative_wrapper_service/get_creative_wrappers_by_statement.rb +88 -0
  296. data/examples/v201302/creative_wrapper_service/update_creative_wrappers.rb +86 -0
  297. data/examples/v201302/custom_field_service/create_custom_field_options.rb +87 -0
  298. data/examples/v201302/custom_field_service/create_custom_fields.rb +86 -0
  299. data/examples/v201302/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  300. data/examples/v201302/custom_field_service/get_all_custom_fields.rb +102 -0
  301. data/examples/v201302/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  302. data/examples/v201302/custom_field_service/set_line_item_custom_field_value.rb +135 -0
  303. data/examples/v201302/custom_field_service/update_custom_fields.rb +84 -0
  304. data/examples/v201302/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  305. data/examples/v201302/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  306. data/examples/v201302/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  307. data/examples/v201302/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  308. data/examples/v201302/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  309. data/examples/v201302/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  310. data/examples/v201302/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  311. data/examples/v201302/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  312. data/examples/v201302/forecast_service/get_forecast.rb +107 -0
  313. data/examples/v201302/forecast_service/get_forecast_by_id.rb +80 -0
  314. data/examples/v201302/inventory_service/create_ad_units.rb +101 -0
  315. data/examples/v201302/inventory_service/create_mobile_ad_unit.rb +101 -0
  316. data/examples/v201302/inventory_service/create_video_ad_unit.rb +108 -0
  317. data/examples/v201302/inventory_service/deactivate_ad_units.rb +119 -0
  318. data/examples/v201302/inventory_service/get_ad_unit.rb +72 -0
  319. data/examples/v201302/inventory_service/get_ad_unit_sizes.rb +85 -0
  320. data/examples/v201302/inventory_service/get_ad_units_by_statement.rb +96 -0
  321. data/examples/v201302/inventory_service/get_all_ad_units.rb +93 -0
  322. data/examples/v201302/inventory_service/update_ad_units.rb +96 -0
  323. data/examples/v201302/label_service/create_labels.rb +83 -0
  324. data/examples/v201302/label_service/deactivate_labels.rb +118 -0
  325. data/examples/v201302/label_service/get_all_labels.rb +95 -0
  326. data/examples/v201302/label_service/get_label.rb +76 -0
  327. data/examples/v201302/label_service/get_labels_by_statement.rb +81 -0
  328. data/examples/v201302/label_service/update_labels.rb +102 -0
  329. data/examples/v201302/line_item_creative_association_service/create_licas.rb +94 -0
  330. data/examples/v201302/line_item_creative_association_service/deactivate_licas.rb +127 -0
  331. data/examples/v201302/line_item_creative_association_service/get_all_licas.rb +98 -0
  332. data/examples/v201302/line_item_creative_association_service/get_lica.rb +77 -0
  333. data/examples/v201302/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  334. data/examples/v201302/line_item_creative_association_service/update_licas.rb +91 -0
  335. data/examples/v201302/line_item_service/activate_line_items.rb +131 -0
  336. data/examples/v201302/line_item_service/create_line_items.rb +177 -0
  337. data/examples/v201302/line_item_service/create_mobile_line_item.rb +135 -0
  338. data/examples/v201302/line_item_service/create_video_line_item.rb +158 -0
  339. data/examples/v201302/line_item_service/get_all_line_items.rb +94 -0
  340. data/examples/v201302/line_item_service/get_line_item.rb +74 -0
  341. data/examples/v201302/line_item_service/get_line_items_by_statement.rb +93 -0
  342. data/examples/v201302/line_item_service/get_recently_updated_line_items.rb +98 -0
  343. data/examples/v201302/line_item_service/target_custom_criteria.rb +129 -0
  344. data/examples/v201302/line_item_service/update_line_items.rb +109 -0
  345. data/examples/v201302/network_service/get_all_networks.rb +74 -0
  346. data/examples/v201302/network_service/get_current_network.rb +66 -0
  347. data/examples/v201302/network_service/make_test_network.rb +79 -0
  348. data/examples/v201302/order_service/approve_orders.rb +122 -0
  349. data/examples/v201302/order_service/create_orders.rb +92 -0
  350. data/examples/v201302/order_service/get_all_orders.rb +93 -0
  351. data/examples/v201302/order_service/get_order.rb +74 -0
  352. data/examples/v201302/order_service/get_orders_by_statement.rb +90 -0
  353. data/examples/v201302/order_service/update_orders.rb +97 -0
  354. data/examples/v201302/placement_service/create_placements.rb +131 -0
  355. data/examples/v201302/placement_service/deactivate_placements.rb +118 -0
  356. data/examples/v201302/placement_service/get_all_placements.rb +93 -0
  357. data/examples/v201302/placement_service/get_placement.rb +74 -0
  358. data/examples/v201302/placement_service/get_placements_by_statement.rb +86 -0
  359. data/examples/v201302/placement_service/update_placements.rb +97 -0
  360. data/examples/v201302/publisher_query_language_service/get_all_cities.rb +104 -0
  361. data/examples/v201302/report_service/display_report.rb +81 -0
  362. data/examples/v201302/report_service/download_report.rb +81 -0
  363. data/examples/v201302/report_service/run_delivery_report.rb +103 -0
  364. data/examples/v201302/report_service/run_inventory_report.rb +96 -0
  365. data/examples/v201302/report_service/run_merged_delivery_report.rb +94 -0
  366. data/examples/v201302/report_service/run_reach_report.rb +87 -0
  367. data/examples/v201302/report_service/run_report_with_custom_fields.rb +135 -0
  368. data/examples/v201302/report_service/run_sales_report.rb +92 -0
  369. data/examples/v201302/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  370. data/examples/v201302/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  371. data/examples/v201302/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  372. data/examples/v201302/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  373. data/examples/v201302/team_service/create_teams.rb +83 -0
  374. data/examples/v201302/team_service/get_all_teams.rb +92 -0
  375. data/examples/v201302/team_service/get_team.rb +74 -0
  376. data/examples/v201302/team_service/get_teams_by_statement.rb +78 -0
  377. data/examples/v201302/team_service/update_teams.rb +97 -0
  378. data/examples/v201302/third_party_slot_service/archive_third_party_slots.rb +125 -0
  379. data/examples/v201302/third_party_slot_service/create_third_party_slot.rb +91 -0
  380. data/examples/v201302/third_party_slot_service/get_all_third_party_slots.rb +93 -0
  381. data/examples/v201302/third_party_slot_service/get_third_party_slot_by_statement.rb +86 -0
  382. data/examples/v201302/third_party_slot_service/update_third_party_slots.rb +95 -0
  383. data/examples/v201302/user_service/create_users.rb +89 -0
  384. data/examples/v201302/user_service/deactivate_users.rb +97 -0
  385. data/examples/v201302/user_service/get_all_roles.rb +73 -0
  386. data/examples/v201302/user_service/get_all_users.rb +93 -0
  387. data/examples/v201302/user_service/get_current_user.rb +66 -0
  388. data/examples/v201302/user_service/get_user.rb +73 -0
  389. data/examples/v201302/user_service/get_users_by_statement.rb +79 -0
  390. data/examples/v201302/user_service/update_users.rb +89 -0
  391. data/examples/v201302/user_team_association_service/create_user_team_associations.rb +86 -0
  392. data/examples/v201302/user_team_association_service/delete_user_team_associations.rb +111 -0
  393. data/examples/v201302/user_team_association_service/get_all_user_team_associations.rb +94 -0
  394. data/examples/v201302/user_team_association_service/get_user_team_association.rb +76 -0
  395. data/examples/v201302/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  396. data/examples/v201302/user_team_association_service/update_user_team_associations.rb +102 -0
  397. data/examples/v201306/activity_group_service/create_activity_groups.rb +94 -0
  398. data/examples/v201306/activity_group_service/get_active_activity_groups.rb +100 -0
  399. data/examples/v201306/activity_group_service/get_all_activity_groups.rb +95 -0
  400. data/examples/v201306/activity_group_service/update_activity_groups.rb +87 -0
  401. data/examples/v201306/activity_service/create_activities.rb +91 -0
  402. data/examples/v201306/activity_service/get_active_activities.rb +107 -0
  403. data/examples/v201306/activity_service/get_all_activities.rb +144 -0
  404. data/examples/v201306/activity_service/update_activities.rb +85 -0
  405. data/examples/v201306/audience_segment_service/get_all_audience_segments.rb +93 -0
  406. data/examples/v201306/common/error_handling.rb +76 -0
  407. data/examples/v201306/company_service/create_companies.rb +81 -0
  408. data/examples/v201306/company_service/get_all_companies.rb +92 -0
  409. data/examples/v201306/company_service/get_companies_by_statement.rb +88 -0
  410. data/examples/v201306/company_service/get_company.rb +72 -0
  411. data/examples/v201306/company_service/update_companies.rb +102 -0
  412. data/examples/v201306/contact_service/create_contacts.rb +95 -0
  413. data/examples/v201306/contact_service/get_all_contacts.rb +92 -0
  414. data/examples/v201306/contact_service/get_uninvited_contacts.rb +102 -0
  415. data/examples/v201306/contact_service/update_contacts.rb +84 -0
  416. data/examples/v201306/content_service/get_all_content.rb +94 -0
  417. data/examples/v201306/content_service/get_content_by_category.rb +143 -0
  418. data/examples/v201306/creative_service/copy_image_creatives.rb +115 -0
  419. data/examples/v201306/creative_service/create_creative_from_template.rb +139 -0
  420. data/examples/v201306/creative_service/create_creatives.rb +112 -0
  421. data/examples/v201306/creative_service/create_custom_creative.rb +104 -0
  422. data/examples/v201306/creative_service/get_all_creatives.rb +93 -0
  423. data/examples/v201306/creative_service/get_creative.rb +72 -0
  424. data/examples/v201306/creative_service/get_creatives_by_statement.rb +87 -0
  425. data/examples/v201306/creative_service/update_creatives.rb +96 -0
  426. data/examples/v201306/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  427. data/examples/v201306/creative_set_service/create_creative_set.rb +83 -0
  428. data/examples/v201306/creative_set_service/get_all_creative_sets.rb +94 -0
  429. data/examples/v201306/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  430. data/examples/v201306/creative_set_service/update_creative_sets.rb +85 -0
  431. data/examples/v201306/creative_template_service/get_all_creative_templates.rb +94 -0
  432. data/examples/v201306/creative_template_service/get_creative_template.rb +74 -0
  433. data/examples/v201306/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  434. data/examples/v201306/creative_wrapper_service/create_creative_wrappers.rb +89 -0
  435. data/examples/v201306/creative_wrapper_service/deactivate_creative_wrapper.rb +102 -0
  436. data/examples/v201306/creative_wrapper_service/get_all_creative_wrappers.rb +94 -0
  437. data/examples/v201306/creative_wrapper_service/get_creative_wrappers_by_statement.rb +88 -0
  438. data/examples/v201306/creative_wrapper_service/update_creative_wrappers.rb +86 -0
  439. data/examples/v201306/custom_field_service/create_custom_field_options.rb +87 -0
  440. data/examples/v201306/custom_field_service/create_custom_fields.rb +86 -0
  441. data/examples/v201306/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  442. data/examples/v201306/custom_field_service/get_all_custom_fields.rb +102 -0
  443. data/examples/v201306/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  444. data/examples/v201306/custom_field_service/set_line_item_custom_field_value.rb +135 -0
  445. data/examples/v201306/custom_field_service/update_custom_fields.rb +84 -0
  446. data/examples/v201306/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  447. data/examples/v201306/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  448. data/examples/v201306/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  449. data/examples/v201306/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  450. data/examples/v201306/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  451. data/examples/v201306/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  452. data/examples/v201306/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  453. data/examples/v201306/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  454. data/examples/v201306/forecast_service/get_forecast.rb +107 -0
  455. data/examples/v201306/forecast_service/get_forecast_by_id.rb +80 -0
  456. data/examples/v201306/inventory_service/create_ad_units.rb +101 -0
  457. data/examples/v201306/inventory_service/create_mobile_ad_unit.rb +101 -0
  458. data/examples/v201306/inventory_service/create_video_ad_unit.rb +108 -0
  459. data/examples/v201306/inventory_service/deactivate_ad_units.rb +119 -0
  460. data/examples/v201306/inventory_service/get_ad_unit.rb +72 -0
  461. data/examples/v201306/inventory_service/get_ad_unit_sizes.rb +85 -0
  462. data/examples/v201306/inventory_service/get_ad_units_by_statement.rb +96 -0
  463. data/examples/v201306/inventory_service/get_all_ad_units.rb +93 -0
  464. data/examples/v201306/inventory_service/update_ad_units.rb +96 -0
  465. data/examples/v201306/label_service/create_labels.rb +83 -0
  466. data/examples/v201306/label_service/deactivate_labels.rb +118 -0
  467. data/examples/v201306/label_service/get_all_labels.rb +95 -0
  468. data/examples/v201306/label_service/get_label.rb +76 -0
  469. data/examples/v201306/label_service/get_labels_by_statement.rb +81 -0
  470. data/examples/v201306/label_service/update_labels.rb +102 -0
  471. data/examples/v201306/line_item_creative_association_service/create_licas.rb +94 -0
  472. data/examples/v201306/line_item_creative_association_service/deactivate_licas.rb +127 -0
  473. data/examples/v201306/line_item_creative_association_service/get_all_licas.rb +98 -0
  474. data/examples/v201306/line_item_creative_association_service/get_lica.rb +77 -0
  475. data/examples/v201306/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  476. data/examples/v201306/line_item_creative_association_service/update_licas.rb +91 -0
  477. data/examples/v201306/line_item_service/activate_line_items.rb +131 -0
  478. data/examples/v201306/line_item_service/create_line_items.rb +177 -0
  479. data/examples/v201306/line_item_service/create_mobile_line_item.rb +135 -0
  480. data/examples/v201306/line_item_service/create_video_line_item.rb +158 -0
  481. data/examples/v201306/line_item_service/get_all_line_items.rb +94 -0
  482. data/examples/v201306/line_item_service/get_line_item.rb +74 -0
  483. data/examples/v201306/line_item_service/get_line_items_by_statement.rb +93 -0
  484. data/examples/v201306/line_item_service/get_recently_updated_line_items.rb +98 -0
  485. data/examples/v201306/line_item_service/target_custom_criteria.rb +129 -0
  486. data/examples/v201306/line_item_service/update_line_items.rb +109 -0
  487. data/examples/v201306/network_service/get_all_networks.rb +74 -0
  488. data/examples/v201306/network_service/get_current_network.rb +66 -0
  489. data/examples/v201306/network_service/make_test_network.rb +79 -0
  490. data/examples/v201306/order_service/approve_orders.rb +122 -0
  491. data/examples/v201306/order_service/create_orders.rb +92 -0
  492. data/examples/v201306/order_service/get_all_orders.rb +93 -0
  493. data/examples/v201306/order_service/get_order.rb +74 -0
  494. data/examples/v201306/order_service/get_orders_by_statement.rb +90 -0
  495. data/examples/v201306/order_service/update_orders.rb +97 -0
  496. data/examples/v201306/placement_service/create_placements.rb +131 -0
  497. data/examples/v201306/placement_service/deactivate_placements.rb +118 -0
  498. data/examples/v201306/placement_service/get_all_placements.rb +93 -0
  499. data/examples/v201306/placement_service/get_placement.rb +74 -0
  500. data/examples/v201306/placement_service/get_placements_by_statement.rb +86 -0
  501. data/examples/v201306/placement_service/update_placements.rb +97 -0
  502. data/examples/v201306/publisher_query_language_service/get_all_cities.rb +104 -0
  503. data/examples/v201306/report_service/display_report.rb +81 -0
  504. data/examples/v201306/report_service/download_report.rb +81 -0
  505. data/examples/v201306/report_service/run_delivery_report.rb +103 -0
  506. data/examples/v201306/report_service/run_inventory_report.rb +96 -0
  507. data/examples/v201306/report_service/run_merged_delivery_report.rb +94 -0
  508. data/examples/v201306/report_service/run_reach_report.rb +87 -0
  509. data/examples/v201306/report_service/run_report_with_custom_fields.rb +135 -0
  510. data/examples/v201306/report_service/run_sales_report.rb +92 -0
  511. data/examples/v201306/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  512. data/examples/v201306/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  513. data/examples/v201306/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  514. data/examples/v201306/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  515. data/examples/v201306/team_service/create_teams.rb +83 -0
  516. data/examples/v201306/team_service/get_all_teams.rb +92 -0
  517. data/examples/v201306/team_service/get_team.rb +74 -0
  518. data/examples/v201306/team_service/get_teams_by_statement.rb +78 -0
  519. data/examples/v201306/team_service/update_teams.rb +97 -0
  520. data/examples/v201306/user_service/create_users.rb +89 -0
  521. data/examples/v201306/user_service/deactivate_users.rb +97 -0
  522. data/examples/v201306/user_service/get_all_roles.rb +73 -0
  523. data/examples/v201306/user_service/get_all_users.rb +93 -0
  524. data/examples/v201306/user_service/get_current_user.rb +66 -0
  525. data/examples/v201306/user_service/get_user.rb +73 -0
  526. data/examples/v201306/user_service/get_users_by_statement.rb +79 -0
  527. data/examples/v201306/user_service/update_users.rb +89 -0
  528. data/examples/v201306/user_team_association_service/create_user_team_associations.rb +86 -0
  529. data/examples/v201306/user_team_association_service/delete_user_team_associations.rb +111 -0
  530. data/examples/v201306/user_team_association_service/get_all_user_team_associations.rb +94 -0
  531. data/examples/v201306/user_team_association_service/get_user_team_association.rb +76 -0
  532. data/examples/v201306/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  533. data/examples/v201306/user_team_association_service/update_user_team_associations.rb +102 -0
  534. data/examples/v201308/activity_group_service/create_activity_groups.rb +94 -0
  535. data/examples/v201308/activity_group_service/get_active_activity_groups.rb +100 -0
  536. data/examples/v201308/activity_group_service/get_all_activity_groups.rb +95 -0
  537. data/examples/v201308/activity_group_service/update_activity_groups.rb +87 -0
  538. data/examples/v201308/activity_service/create_activities.rb +91 -0
  539. data/examples/v201308/activity_service/get_active_activities.rb +107 -0
  540. data/examples/v201308/activity_service/get_all_activities.rb +144 -0
  541. data/examples/v201308/activity_service/update_activities.rb +85 -0
  542. data/examples/v201308/audience_segment_service/create_audience_segments.rb +118 -0
  543. data/examples/v201308/audience_segment_service/get_all_audience_segments.rb +94 -0
  544. data/examples/v201308/audience_segment_service/get_first_party_audience_segments.rb +99 -0
  545. data/examples/v201308/audience_segment_service/populate_first_party_audience_segments.rb +101 -0
  546. data/examples/v201308/audience_segment_service/update_audience_segments.rb +98 -0
  547. data/examples/v201308/common/error_handling.rb +76 -0
  548. data/examples/v201308/company_service/create_companies.rb +81 -0
  549. data/examples/v201308/company_service/get_all_companies.rb +92 -0
  550. data/examples/v201308/company_service/get_companies_by_statement.rb +88 -0
  551. data/examples/v201308/company_service/get_company.rb +72 -0
  552. data/examples/v201308/company_service/update_companies.rb +102 -0
  553. data/examples/v201308/contact_service/create_contacts.rb +95 -0
  554. data/examples/v201308/contact_service/get_all_contacts.rb +92 -0
  555. data/examples/v201308/contact_service/get_uninvited_contacts.rb +102 -0
  556. data/examples/v201308/contact_service/update_contacts.rb +84 -0
  557. data/examples/v201308/content_service/get_all_content.rb +94 -0
  558. data/examples/v201308/content_service/get_content_by_category.rb +143 -0
  559. data/examples/v201308/creative_service/copy_image_creatives.rb +115 -0
  560. data/examples/v201308/creative_service/create_creative_from_template.rb +139 -0
  561. data/examples/v201308/creative_service/create_creatives.rb +112 -0
  562. data/examples/v201308/creative_service/create_custom_creative.rb +104 -0
  563. data/examples/v201308/creative_service/get_all_creatives.rb +93 -0
  564. data/examples/v201308/creative_service/get_creative.rb +72 -0
  565. data/examples/v201308/creative_service/get_creatives_by_statement.rb +87 -0
  566. data/examples/v201308/creative_service/update_creatives.rb +96 -0
  567. data/examples/v201308/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  568. data/examples/v201308/creative_set_service/create_creative_set.rb +83 -0
  569. data/examples/v201308/creative_set_service/get_all_creative_sets.rb +94 -0
  570. data/examples/v201308/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  571. data/examples/v201308/creative_set_service/update_creative_sets.rb +85 -0
  572. data/examples/v201308/creative_template_service/get_all_creative_templates.rb +94 -0
  573. data/examples/v201308/creative_template_service/get_creative_template.rb +74 -0
  574. data/examples/v201308/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  575. data/examples/v201308/creative_wrapper_service/create_creative_wrappers.rb +89 -0
  576. data/examples/v201308/creative_wrapper_service/deactivate_creative_wrapper.rb +102 -0
  577. data/examples/v201308/creative_wrapper_service/get_all_creative_wrappers.rb +94 -0
  578. data/examples/v201308/creative_wrapper_service/get_creative_wrappers_by_statement.rb +88 -0
  579. data/examples/v201308/creative_wrapper_service/update_creative_wrappers.rb +86 -0
  580. data/examples/v201308/custom_field_service/create_custom_field_options.rb +87 -0
  581. data/examples/v201308/custom_field_service/create_custom_fields.rb +86 -0
  582. data/examples/v201308/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  583. data/examples/v201308/custom_field_service/get_all_custom_fields.rb +102 -0
  584. data/examples/v201308/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  585. data/examples/v201308/custom_field_service/set_line_item_custom_field_value.rb +135 -0
  586. data/examples/v201308/custom_field_service/update_custom_fields.rb +84 -0
  587. data/examples/v201308/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  588. data/examples/v201308/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  589. data/examples/v201308/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  590. data/examples/v201308/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  591. data/examples/v201308/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  592. data/examples/v201308/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  593. data/examples/v201308/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  594. data/examples/v201308/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  595. data/examples/v201308/forecast_service/get_forecast.rb +108 -0
  596. data/examples/v201308/forecast_service/get_forecast_by_id.rb +81 -0
  597. data/examples/v201308/inventory_service/create_ad_units.rb +101 -0
  598. data/examples/v201308/inventory_service/create_mobile_ad_unit.rb +101 -0
  599. data/examples/v201308/inventory_service/create_video_ad_unit.rb +108 -0
  600. data/examples/v201308/inventory_service/deactivate_ad_units.rb +119 -0
  601. data/examples/v201308/inventory_service/get_ad_unit.rb +72 -0
  602. data/examples/v201308/inventory_service/get_ad_unit_sizes.rb +85 -0
  603. data/examples/v201308/inventory_service/get_ad_units_by_statement.rb +96 -0
  604. data/examples/v201308/inventory_service/get_all_ad_units.rb +93 -0
  605. data/examples/v201308/inventory_service/update_ad_units.rb +96 -0
  606. data/examples/v201308/label_service/create_labels.rb +83 -0
  607. data/examples/v201308/label_service/deactivate_labels.rb +118 -0
  608. data/examples/v201308/label_service/get_all_labels.rb +95 -0
  609. data/examples/v201308/label_service/get_label.rb +76 -0
  610. data/examples/v201308/label_service/get_labels_by_statement.rb +81 -0
  611. data/examples/v201308/label_service/update_labels.rb +102 -0
  612. data/examples/v201308/line_item_creative_association_service/create_licas.rb +94 -0
  613. data/examples/v201308/line_item_creative_association_service/deactivate_licas.rb +127 -0
  614. data/examples/v201308/line_item_creative_association_service/get_all_licas.rb +98 -0
  615. data/examples/v201308/line_item_creative_association_service/get_lica.rb +77 -0
  616. data/examples/v201308/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  617. data/examples/v201308/line_item_creative_association_service/update_licas.rb +91 -0
  618. data/examples/v201308/line_item_service/activate_line_items.rb +131 -0
  619. data/examples/v201308/line_item_service/create_line_items.rb +177 -0
  620. data/examples/v201308/line_item_service/create_mobile_line_item.rb +135 -0
  621. data/examples/v201308/line_item_service/create_video_line_item.rb +158 -0
  622. data/examples/v201308/line_item_service/get_all_line_items.rb +94 -0
  623. data/examples/v201308/line_item_service/get_line_item.rb +74 -0
  624. data/examples/v201308/line_item_service/get_line_items_by_statement.rb +93 -0
  625. data/examples/v201308/line_item_service/get_recently_updated_line_items.rb +98 -0
  626. data/examples/v201308/line_item_service/target_custom_criteria.rb +129 -0
  627. data/examples/v201308/line_item_service/update_line_items.rb +109 -0
  628. data/examples/v201308/network_service/get_all_networks.rb +74 -0
  629. data/examples/v201308/network_service/get_current_network.rb +66 -0
  630. data/examples/v201308/network_service/make_test_network.rb +79 -0
  631. data/examples/v201308/order_service/approve_orders.rb +122 -0
  632. data/examples/v201308/order_service/create_orders.rb +92 -0
  633. data/examples/v201308/order_service/get_all_orders.rb +93 -0
  634. data/examples/v201308/order_service/get_order.rb +74 -0
  635. data/examples/v201308/order_service/get_orders_by_statement.rb +90 -0
  636. data/examples/v201308/order_service/update_orders.rb +97 -0
  637. data/examples/v201308/placement_service/create_placements.rb +131 -0
  638. data/examples/v201308/placement_service/deactivate_placements.rb +118 -0
  639. data/examples/v201308/placement_service/get_all_placements.rb +93 -0
  640. data/examples/v201308/placement_service/get_placement.rb +74 -0
  641. data/examples/v201308/placement_service/get_placements_by_statement.rb +86 -0
  642. data/examples/v201308/placement_service/update_placements.rb +97 -0
  643. data/examples/v201308/publisher_query_language_service/get_all_line_items.rb +100 -0
  644. data/examples/v201308/publisher_query_language_service/get_geo_targets.rb +102 -0
  645. data/examples/v201308/publisher_query_language_service/get_line_items_named_like.rb +100 -0
  646. data/examples/v201308/report_service/display_report.rb +81 -0
  647. data/examples/v201308/report_service/download_report.rb +81 -0
  648. data/examples/v201308/report_service/run_delivery_report.rb +103 -0
  649. data/examples/v201308/report_service/run_inventory_report.rb +96 -0
  650. data/examples/v201308/report_service/run_merged_delivery_report.rb +94 -0
  651. data/examples/v201308/report_service/run_reach_report.rb +87 -0
  652. data/examples/v201308/report_service/run_report_with_custom_fields.rb +135 -0
  653. data/examples/v201308/report_service/run_sales_report.rb +92 -0
  654. data/examples/v201308/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  655. data/examples/v201308/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  656. data/examples/v201308/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  657. data/examples/v201308/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  658. data/examples/v201308/team_service/create_teams.rb +83 -0
  659. data/examples/v201308/team_service/get_all_teams.rb +92 -0
  660. data/examples/v201308/team_service/get_team.rb +74 -0
  661. data/examples/v201308/team_service/get_teams_by_statement.rb +78 -0
  662. data/examples/v201308/team_service/update_teams.rb +97 -0
  663. data/examples/v201308/user_service/create_users.rb +89 -0
  664. data/examples/v201308/user_service/deactivate_users.rb +97 -0
  665. data/examples/v201308/user_service/get_all_roles.rb +73 -0
  666. data/examples/v201308/user_service/get_all_users.rb +93 -0
  667. data/examples/v201308/user_service/get_current_user.rb +66 -0
  668. data/examples/v201308/user_service/get_user.rb +73 -0
  669. data/examples/v201308/user_service/get_users_by_statement.rb +79 -0
  670. data/examples/v201308/user_service/update_users.rb +89 -0
  671. data/examples/v201308/user_team_association_service/create_user_team_associations.rb +86 -0
  672. data/examples/v201308/user_team_association_service/delete_user_team_associations.rb +111 -0
  673. data/examples/v201308/user_team_association_service/get_all_user_team_associations.rb +94 -0
  674. data/examples/v201308/user_team_association_service/get_user_team_association.rb +76 -0
  675. data/examples/v201308/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  676. data/examples/v201308/user_team_association_service/update_user_team_associations.rb +102 -0
  677. data/examples/v201405/activity_group_service/create_activity_groups.rb +94 -0
  678. data/examples/v201405/activity_group_service/get_active_activity_groups.rb +100 -0
  679. data/examples/v201405/activity_group_service/get_all_activity_groups.rb +95 -0
  680. data/examples/v201405/activity_group_service/update_activity_groups.rb +96 -0
  681. data/examples/v201405/activity_service/create_activities.rb +91 -0
  682. data/examples/v201405/activity_service/get_active_activities.rb +103 -0
  683. data/examples/v201405/activity_service/get_all_activities.rb +96 -0
  684. data/examples/v201405/activity_service/update_activities.rb +99 -0
  685. data/examples/v201405/audience_segment_service/create_audience_segments.rb +118 -0
  686. data/examples/v201405/audience_segment_service/get_all_audience_segments.rb +94 -0
  687. data/examples/v201405/audience_segment_service/get_first_party_audience_segments.rb +99 -0
  688. data/examples/v201405/audience_segment_service/populate_first_party_audience_segments.rb +102 -0
  689. data/examples/v201405/audience_segment_service/update_audience_segments.rb +98 -0
  690. data/examples/v201405/common/error_handling.rb +76 -0
  691. data/examples/v201405/common/oauth2_jwt_handling.rb +111 -0
  692. data/examples/v201405/common/setup_oauth2.rb +89 -0
  693. data/examples/v201405/company_service/create_companies.rb +81 -0
  694. data/examples/v201405/company_service/get_all_companies.rb +92 -0
  695. data/examples/v201405/company_service/get_companies_by_statement.rb +88 -0
  696. data/examples/v201405/company_service/update_companies.rb +105 -0
  697. data/examples/v201405/contact_service/create_contacts.rb +95 -0
  698. data/examples/v201405/contact_service/get_all_contacts.rb +92 -0
  699. data/examples/v201405/contact_service/get_uninvited_contacts.rb +102 -0
  700. data/examples/v201405/contact_service/update_contacts.rb +98 -0
  701. data/examples/v201405/content_metadata_key_hierarchy_service/create_content_metadata_key_hierarchies.rb +96 -0
  702. data/examples/v201405/content_metadata_key_hierarchy_service/delete_content_metadata_key_hierarchies.rb +103 -0
  703. data/examples/v201405/content_metadata_key_hierarchy_service/get_all_content_metadata_key_hierarchies.rb +99 -0
  704. data/examples/v201405/content_metadata_key_hierarchy_service/update_content_metadata_key_hierarchies.rb +113 -0
  705. data/examples/v201405/content_service/get_all_content.rb +94 -0
  706. data/examples/v201405/content_service/get_content_by_category.rb +143 -0
  707. data/examples/v201405/creative_service/copy_image_creatives.rb +115 -0
  708. data/examples/v201405/creative_service/create_creative_from_template.rb +139 -0
  709. data/examples/v201405/creative_service/create_creatives.rb +112 -0
  710. data/examples/v201405/creative_service/create_custom_creative.rb +104 -0
  711. data/examples/v201405/creative_service/get_all_creatives.rb +93 -0
  712. data/examples/v201405/creative_service/get_creatives_by_statement.rb +87 -0
  713. data/examples/v201405/creative_service/update_creatives.rb +96 -0
  714. data/examples/v201405/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  715. data/examples/v201405/creative_set_service/create_creative_set.rb +83 -0
  716. data/examples/v201405/creative_set_service/get_all_creative_sets.rb +94 -0
  717. data/examples/v201405/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  718. data/examples/v201405/creative_set_service/update_creative_sets.rb +100 -0
  719. data/examples/v201405/creative_template_service/get_all_creative_templates.rb +94 -0
  720. data/examples/v201405/creative_template_service/get_creative_template.rb +74 -0
  721. data/examples/v201405/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  722. data/examples/v201405/creative_wrapper_service/create_creative_wrappers.rb +89 -0
  723. data/examples/v201405/creative_wrapper_service/deactivate_creative_wrapper.rb +102 -0
  724. data/examples/v201405/creative_wrapper_service/get_all_creative_wrappers.rb +94 -0
  725. data/examples/v201405/creative_wrapper_service/get_creative_wrappers_by_statement.rb +88 -0
  726. data/examples/v201405/creative_wrapper_service/update_creative_wrappers.rb +101 -0
  727. data/examples/v201405/custom_field_service/create_custom_field_options.rb +87 -0
  728. data/examples/v201405/custom_field_service/create_custom_fields.rb +86 -0
  729. data/examples/v201405/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  730. data/examples/v201405/custom_field_service/get_all_custom_fields.rb +102 -0
  731. data/examples/v201405/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  732. data/examples/v201405/custom_field_service/set_line_item_custom_field_value.rb +178 -0
  733. data/examples/v201405/custom_field_service/update_custom_fields.rb +99 -0
  734. data/examples/v201405/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  735. data/examples/v201405/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  736. data/examples/v201405/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  737. data/examples/v201405/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  738. data/examples/v201405/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  739. data/examples/v201405/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  740. data/examples/v201405/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  741. data/examples/v201405/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  742. data/examples/v201405/forecast_service/get_forecast.rb +110 -0
  743. data/examples/v201405/forecast_service/get_forecast_by_id.rb +81 -0
  744. data/examples/v201405/inventory_service/create_ad_units.rb +101 -0
  745. data/examples/v201405/inventory_service/create_mobile_ad_unit.rb +101 -0
  746. data/examples/v201405/inventory_service/create_video_ad_unit.rb +108 -0
  747. data/examples/v201405/inventory_service/deactivate_ad_units.rb +119 -0
  748. data/examples/v201405/inventory_service/get_ad_unit_sizes.rb +85 -0
  749. data/examples/v201405/inventory_service/get_ad_units_by_statement.rb +96 -0
  750. data/examples/v201405/inventory_service/get_all_ad_units.rb +93 -0
  751. data/examples/v201405/inventory_service/update_ad_units.rb +96 -0
  752. data/examples/v201405/label_service/create_labels.rb +83 -0
  753. data/examples/v201405/label_service/deactivate_labels.rb +118 -0
  754. data/examples/v201405/label_service/get_all_labels.rb +95 -0
  755. data/examples/v201405/label_service/get_labels_by_statement.rb +81 -0
  756. data/examples/v201405/label_service/update_labels.rb +102 -0
  757. data/examples/v201405/line_item_creative_association_service/create_licas.rb +94 -0
  758. data/examples/v201405/line_item_creative_association_service/deactivate_licas.rb +127 -0
  759. data/examples/v201405/line_item_creative_association_service/get_all_licas.rb +98 -0
  760. data/examples/v201405/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  761. data/examples/v201405/line_item_creative_association_service/update_licas.rb +91 -0
  762. data/examples/v201405/line_item_service/activate_line_items.rb +131 -0
  763. data/examples/v201405/line_item_service/create_line_items.rb +179 -0
  764. data/examples/v201405/line_item_service/create_video_line_item.rb +158 -0
  765. data/examples/v201405/line_item_service/get_all_line_items.rb +94 -0
  766. data/examples/v201405/line_item_service/get_line_items_by_statement.rb +93 -0
  767. data/examples/v201405/line_item_service/get_recently_updated_line_items.rb +98 -0
  768. data/examples/v201405/line_item_service/target_custom_criteria.rb +143 -0
  769. data/examples/v201405/line_item_service/update_line_items.rb +109 -0
  770. data/examples/v201405/network_service/get_all_networks.rb +74 -0
  771. data/examples/v201405/network_service/get_current_network.rb +66 -0
  772. data/examples/v201405/network_service/make_test_network.rb +79 -0
  773. data/examples/v201405/order_service/approve_orders.rb +122 -0
  774. data/examples/v201405/order_service/create_orders.rb +92 -0
  775. data/examples/v201405/order_service/get_all_orders.rb +93 -0
  776. data/examples/v201405/order_service/get_orders_by_statement.rb +90 -0
  777. data/examples/v201405/order_service/update_orders.rb +97 -0
  778. data/examples/v201405/placement_service/create_placements.rb +131 -0
  779. data/examples/v201405/placement_service/deactivate_placements.rb +118 -0
  780. data/examples/v201405/placement_service/get_all_placements.rb +93 -0
  781. data/examples/v201405/placement_service/get_placements_by_statement.rb +86 -0
  782. data/examples/v201405/placement_service/update_placements.rb +97 -0
  783. data/examples/v201405/publisher_query_language_service/fetch_match_tables.rb +114 -0
  784. data/examples/v201405/publisher_query_language_service/get_all_line_items.rb +100 -0
  785. data/examples/v201405/publisher_query_language_service/get_geo_targets.rb +102 -0
  786. data/examples/v201405/publisher_query_language_service/get_line_items_named_like.rb +100 -0
  787. data/examples/v201405/report_service/display_report.rb +81 -0
  788. data/examples/v201405/report_service/download_report.rb +81 -0
  789. data/examples/v201405/report_service/run_delivery_report.rb +103 -0
  790. data/examples/v201405/report_service/run_inventory_report.rb +112 -0
  791. data/examples/v201405/report_service/run_merged_delivery_report.rb +94 -0
  792. data/examples/v201405/report_service/run_reach_report.rb +87 -0
  793. data/examples/v201405/report_service/run_report_with_custom_fields.rb +135 -0
  794. data/examples/v201405/report_service/run_sales_report.rb +92 -0
  795. data/examples/v201405/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  796. data/examples/v201405/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  797. data/examples/v201405/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  798. data/examples/v201405/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  799. data/examples/v201405/team_service/create_teams.rb +83 -0
  800. data/examples/v201405/team_service/get_all_teams.rb +92 -0
  801. data/examples/v201405/team_service/get_teams_by_statement.rb +78 -0
  802. data/examples/v201405/team_service/update_teams.rb +97 -0
  803. data/examples/v201405/user_service/create_users.rb +89 -0
  804. data/examples/v201405/user_service/deactivate_users.rb +97 -0
  805. data/examples/v201405/user_service/get_all_roles.rb +73 -0
  806. data/examples/v201405/user_service/get_all_users.rb +93 -0
  807. data/examples/v201405/user_service/get_current_user.rb +66 -0
  808. data/examples/v201405/user_service/get_users_by_statement.rb +79 -0
  809. data/examples/v201405/user_service/update_users.rb +89 -0
  810. data/examples/v201405/user_team_association_service/create_user_team_associations.rb +86 -0
  811. data/examples/v201405/user_team_association_service/delete_user_team_associations.rb +111 -0
  812. data/examples/v201405/user_team_association_service/get_all_user_team_associations.rb +94 -0
  813. data/examples/v201405/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  814. data/examples/v201405/user_team_association_service/update_user_team_associations.rb +102 -0
  815. data/lib/dfp_api.rb +1 -1
  816. data/lib/dfp_api/api_config.rb +25 -3
  817. data/lib/dfp_api/v201208/audience_segment_service.rb +1 -1
  818. data/lib/dfp_api/v201208/audience_segment_service_registry.rb +1 -1
  819. data/lib/dfp_api/v201208/company_service.rb +1 -1
  820. data/lib/dfp_api/v201208/company_service_registry.rb +1 -1
  821. data/lib/dfp_api/v201208/content_service.rb +1 -1
  822. data/lib/dfp_api/v201208/content_service_registry.rb +1 -1
  823. data/lib/dfp_api/v201208/creative_service.rb +1 -1
  824. data/lib/dfp_api/v201208/creative_service_registry.rb +2 -2
  825. data/lib/dfp_api/v201208/creative_set_service.rb +1 -1
  826. data/lib/dfp_api/v201208/creative_set_service_registry.rb +2 -2
  827. data/lib/dfp_api/v201208/creative_template_service.rb +1 -1
  828. data/lib/dfp_api/v201208/creative_template_service_registry.rb +1 -1
  829. data/lib/dfp_api/v201208/custom_field_service.rb +1 -1
  830. data/lib/dfp_api/v201208/custom_field_service_registry.rb +1 -1
  831. data/lib/dfp_api/v201208/custom_targeting_service.rb +1 -1
  832. data/lib/dfp_api/v201208/custom_targeting_service_registry.rb +1 -1
  833. data/lib/dfp_api/v201208/forecast_service.rb +1 -1
  834. data/lib/dfp_api/v201208/forecast_service_registry.rb +1 -1
  835. data/lib/dfp_api/v201208/inventory_service.rb +1 -1
  836. data/lib/dfp_api/v201208/inventory_service_registry.rb +1 -1
  837. data/lib/dfp_api/v201208/label_service.rb +1 -1
  838. data/lib/dfp_api/v201208/label_service_registry.rb +1 -1
  839. data/lib/dfp_api/v201208/line_item_creative_association_service.rb +1 -1
  840. data/lib/dfp_api/v201208/line_item_creative_association_service_registry.rb +2 -2
  841. data/lib/dfp_api/v201208/line_item_service.rb +1 -1
  842. data/lib/dfp_api/v201208/line_item_service_registry.rb +1 -1
  843. data/lib/dfp_api/v201208/network_service.rb +1 -1
  844. data/lib/dfp_api/v201208/network_service_registry.rb +1 -1
  845. data/lib/dfp_api/v201208/order_service.rb +1 -1
  846. data/lib/dfp_api/v201208/order_service_registry.rb +2 -2
  847. data/lib/dfp_api/v201208/placement_service.rb +1 -1
  848. data/lib/dfp_api/v201208/placement_service_registry.rb +1 -1
  849. data/lib/dfp_api/v201208/publisher_query_language_service.rb +1 -1
  850. data/lib/dfp_api/v201208/publisher_query_language_service_registry.rb +1 -1
  851. data/lib/dfp_api/v201208/report_service.rb +1 -1
  852. data/lib/dfp_api/v201208/report_service_registry.rb +1 -1
  853. data/lib/dfp_api/v201208/suggested_ad_unit_service.rb +1 -1
  854. data/lib/dfp_api/v201208/suggested_ad_unit_service_registry.rb +1 -1
  855. data/lib/dfp_api/v201208/team_service.rb +1 -1
  856. data/lib/dfp_api/v201208/team_service_registry.rb +1 -1
  857. data/lib/dfp_api/v201208/third_party_slot_service.rb +1 -1
  858. data/lib/dfp_api/v201208/third_party_slot_service_registry.rb +1 -1
  859. data/lib/dfp_api/v201208/user_service.rb +1 -1
  860. data/lib/dfp_api/v201208/user_service_registry.rb +1 -1
  861. data/lib/dfp_api/v201208/user_team_association_service.rb +1 -1
  862. data/lib/dfp_api/v201208/user_team_association_service_registry.rb +1 -1
  863. data/lib/dfp_api/v201211/audience_segment_service.rb +1 -1
  864. data/lib/dfp_api/v201211/audience_segment_service_registry.rb +1 -1
  865. data/lib/dfp_api/v201211/company_service.rb +1 -1
  866. data/lib/dfp_api/v201211/company_service_registry.rb +1 -1
  867. data/lib/dfp_api/v201211/content_service.rb +1 -1
  868. data/lib/dfp_api/v201211/content_service_registry.rb +1 -1
  869. data/lib/dfp_api/v201211/creative_service.rb +1 -1
  870. data/lib/dfp_api/v201211/creative_service_registry.rb +2 -2
  871. data/lib/dfp_api/v201211/creative_set_service.rb +1 -1
  872. data/lib/dfp_api/v201211/creative_set_service_registry.rb +2 -2
  873. data/lib/dfp_api/v201211/creative_template_service.rb +1 -1
  874. data/lib/dfp_api/v201211/creative_template_service_registry.rb +1 -1
  875. data/lib/dfp_api/v201211/creative_wrapper_service.rb +1 -1
  876. data/lib/dfp_api/v201211/creative_wrapper_service_registry.rb +1 -1
  877. data/lib/dfp_api/v201211/custom_field_service.rb +1 -1
  878. data/lib/dfp_api/v201211/custom_field_service_registry.rb +1 -1
  879. data/lib/dfp_api/v201211/custom_targeting_service.rb +1 -1
  880. data/lib/dfp_api/v201211/custom_targeting_service_registry.rb +1 -1
  881. data/lib/dfp_api/v201211/forecast_service.rb +1 -1
  882. data/lib/dfp_api/v201211/forecast_service_registry.rb +1 -1
  883. data/lib/dfp_api/v201211/inventory_service.rb +1 -1
  884. data/lib/dfp_api/v201211/inventory_service_registry.rb +1 -1
  885. data/lib/dfp_api/v201211/label_service.rb +1 -1
  886. data/lib/dfp_api/v201211/label_service_registry.rb +1 -1
  887. data/lib/dfp_api/v201211/line_item_creative_association_service.rb +1 -1
  888. data/lib/dfp_api/v201211/line_item_creative_association_service_registry.rb +2 -2
  889. data/lib/dfp_api/v201211/line_item_service.rb +1 -1
  890. data/lib/dfp_api/v201211/line_item_service_registry.rb +1 -1
  891. data/lib/dfp_api/v201211/network_service.rb +1 -1
  892. data/lib/dfp_api/v201211/network_service_registry.rb +1 -1
  893. data/lib/dfp_api/v201211/order_service.rb +1 -1
  894. data/lib/dfp_api/v201211/order_service_registry.rb +2 -2
  895. data/lib/dfp_api/v201211/placement_service.rb +1 -1
  896. data/lib/dfp_api/v201211/placement_service_registry.rb +1 -1
  897. data/lib/dfp_api/v201211/publisher_query_language_service.rb +1 -1
  898. data/lib/dfp_api/v201211/publisher_query_language_service_registry.rb +1 -1
  899. data/lib/dfp_api/v201211/report_service.rb +1 -1
  900. data/lib/dfp_api/v201211/report_service_registry.rb +1 -1
  901. data/lib/dfp_api/v201211/suggested_ad_unit_service.rb +1 -1
  902. data/lib/dfp_api/v201211/suggested_ad_unit_service_registry.rb +1 -1
  903. data/lib/dfp_api/v201211/team_service.rb +1 -1
  904. data/lib/dfp_api/v201211/team_service_registry.rb +1 -1
  905. data/lib/dfp_api/v201211/third_party_slot_service.rb +1 -1
  906. data/lib/dfp_api/v201211/third_party_slot_service_registry.rb +1 -1
  907. data/lib/dfp_api/v201211/user_service.rb +1 -1
  908. data/lib/dfp_api/v201211/user_service_registry.rb +1 -1
  909. data/lib/dfp_api/v201211/user_team_association_service.rb +1 -1
  910. data/lib/dfp_api/v201211/user_team_association_service_registry.rb +1 -1
  911. data/lib/dfp_api/v201302/activity_group_service.rb +1 -1
  912. data/lib/dfp_api/v201302/activity_group_service_registry.rb +1 -1
  913. data/lib/dfp_api/v201302/activity_service.rb +1 -1
  914. data/lib/dfp_api/v201302/activity_service_registry.rb +1 -1
  915. data/lib/dfp_api/v201302/ad_rule_service.rb +1 -1
  916. data/lib/dfp_api/v201302/ad_rule_service_registry.rb +1 -1
  917. data/lib/dfp_api/v201302/audience_segment_service.rb +1 -1
  918. data/lib/dfp_api/v201302/audience_segment_service_registry.rb +1 -1
  919. data/lib/dfp_api/v201302/company_service.rb +1 -1
  920. data/lib/dfp_api/v201302/company_service_registry.rb +1 -1
  921. data/lib/dfp_api/v201302/contact_service.rb +1 -1
  922. data/lib/dfp_api/v201302/contact_service_registry.rb +1 -1
  923. data/lib/dfp_api/v201302/content_bundle_service.rb +1 -1
  924. data/lib/dfp_api/v201302/content_bundle_service_registry.rb +1 -1
  925. data/lib/dfp_api/v201302/content_service.rb +1 -1
  926. data/lib/dfp_api/v201302/content_service_registry.rb +1 -1
  927. data/lib/dfp_api/v201302/creative_service.rb +1 -1
  928. data/lib/dfp_api/v201302/creative_service_registry.rb +2 -2
  929. data/lib/dfp_api/v201302/creative_set_service.rb +1 -1
  930. data/lib/dfp_api/v201302/creative_set_service_registry.rb +2 -2
  931. data/lib/dfp_api/v201302/creative_template_service.rb +1 -1
  932. data/lib/dfp_api/v201302/creative_template_service_registry.rb +1 -1
  933. data/lib/dfp_api/v201302/creative_wrapper_service.rb +1 -1
  934. data/lib/dfp_api/v201302/creative_wrapper_service_registry.rb +1 -1
  935. data/lib/dfp_api/v201302/custom_field_service.rb +1 -1
  936. data/lib/dfp_api/v201302/custom_field_service_registry.rb +1 -1
  937. data/lib/dfp_api/v201302/custom_targeting_service.rb +1 -1
  938. data/lib/dfp_api/v201302/custom_targeting_service_registry.rb +1 -1
  939. data/lib/dfp_api/v201302/forecast_service.rb +1 -1
  940. data/lib/dfp_api/v201302/forecast_service_registry.rb +1 -1
  941. data/lib/dfp_api/v201302/inventory_service.rb +1 -1
  942. data/lib/dfp_api/v201302/inventory_service_registry.rb +1 -1
  943. data/lib/dfp_api/v201302/label_service.rb +1 -1
  944. data/lib/dfp_api/v201302/label_service_registry.rb +1 -1
  945. data/lib/dfp_api/v201302/line_item_creative_association_service.rb +1 -1
  946. data/lib/dfp_api/v201302/line_item_creative_association_service_registry.rb +2 -2
  947. data/lib/dfp_api/v201302/line_item_service.rb +1 -1
  948. data/lib/dfp_api/v201302/line_item_service_registry.rb +1 -1
  949. data/lib/dfp_api/v201302/network_service.rb +1 -1
  950. data/lib/dfp_api/v201302/network_service_registry.rb +1 -1
  951. data/lib/dfp_api/v201302/order_service.rb +1 -1
  952. data/lib/dfp_api/v201302/order_service_registry.rb +2 -2
  953. data/lib/dfp_api/v201302/placement_service.rb +1 -1
  954. data/lib/dfp_api/v201302/placement_service_registry.rb +1 -1
  955. data/lib/dfp_api/v201302/publisher_query_language_service.rb +1 -1
  956. data/lib/dfp_api/v201302/publisher_query_language_service_registry.rb +1 -1
  957. data/lib/dfp_api/v201302/report_service.rb +1 -1
  958. data/lib/dfp_api/v201302/report_service_registry.rb +1 -1
  959. data/lib/dfp_api/v201302/suggested_ad_unit_service.rb +1 -1
  960. data/lib/dfp_api/v201302/suggested_ad_unit_service_registry.rb +1 -1
  961. data/lib/dfp_api/v201302/team_service.rb +1 -1
  962. data/lib/dfp_api/v201302/team_service_registry.rb +1 -1
  963. data/lib/dfp_api/v201302/third_party_slot_service.rb +1 -1
  964. data/lib/dfp_api/v201302/third_party_slot_service_registry.rb +1 -1
  965. data/lib/dfp_api/v201302/user_service.rb +1 -1
  966. data/lib/dfp_api/v201302/user_service_registry.rb +1 -1
  967. data/lib/dfp_api/v201302/user_team_association_service.rb +1 -1
  968. data/lib/dfp_api/v201302/user_team_association_service_registry.rb +1 -1
  969. data/lib/dfp_api/v201306/activity_group_service.rb +1 -1
  970. data/lib/dfp_api/v201306/activity_group_service_registry.rb +1 -1
  971. data/lib/dfp_api/v201306/activity_service.rb +1 -1
  972. data/lib/dfp_api/v201306/activity_service_registry.rb +1 -1
  973. data/lib/dfp_api/v201306/ad_rule_service.rb +1 -1
  974. data/lib/dfp_api/v201306/ad_rule_service_registry.rb +1 -1
  975. data/lib/dfp_api/v201306/audience_segment_service.rb +1 -1
  976. data/lib/dfp_api/v201306/audience_segment_service_registry.rb +1 -1
  977. data/lib/dfp_api/v201306/base_rate_service.rb +1 -1
  978. data/lib/dfp_api/v201306/base_rate_service_registry.rb +1 -1
  979. data/lib/dfp_api/v201306/company_service.rb +1 -1
  980. data/lib/dfp_api/v201306/company_service_registry.rb +1 -1
  981. data/lib/dfp_api/v201306/contact_service.rb +1 -1
  982. data/lib/dfp_api/v201306/contact_service_registry.rb +1 -1
  983. data/lib/dfp_api/v201306/content_bundle_service.rb +1 -1
  984. data/lib/dfp_api/v201306/content_bundle_service_registry.rb +1 -1
  985. data/lib/dfp_api/v201306/content_service.rb +1 -1
  986. data/lib/dfp_api/v201306/content_service_registry.rb +1 -1
  987. data/lib/dfp_api/v201306/creative_service.rb +1 -1
  988. data/lib/dfp_api/v201306/creative_service_registry.rb +2 -2
  989. data/lib/dfp_api/v201306/creative_set_service.rb +1 -1
  990. data/lib/dfp_api/v201306/creative_set_service_registry.rb +2 -2
  991. data/lib/dfp_api/v201306/creative_template_service.rb +1 -1
  992. data/lib/dfp_api/v201306/creative_template_service_registry.rb +1 -1
  993. data/lib/dfp_api/v201306/creative_wrapper_service.rb +1 -1
  994. data/lib/dfp_api/v201306/creative_wrapper_service_registry.rb +1 -1
  995. data/lib/dfp_api/v201306/custom_field_service.rb +1 -1
  996. data/lib/dfp_api/v201306/custom_field_service_registry.rb +1 -1
  997. data/lib/dfp_api/v201306/custom_targeting_service.rb +1 -1
  998. data/lib/dfp_api/v201306/custom_targeting_service_registry.rb +1 -1
  999. data/lib/dfp_api/v201306/forecast_service.rb +1 -1
  1000. data/lib/dfp_api/v201306/forecast_service_registry.rb +1 -1
  1001. data/lib/dfp_api/v201306/inventory_service.rb +1 -1
  1002. data/lib/dfp_api/v201306/inventory_service_registry.rb +1 -1
  1003. data/lib/dfp_api/v201306/label_service.rb +1 -1
  1004. data/lib/dfp_api/v201306/label_service_registry.rb +1 -1
  1005. data/lib/dfp_api/v201306/line_item_creative_association_service.rb +1 -1
  1006. data/lib/dfp_api/v201306/line_item_creative_association_service_registry.rb +2 -2
  1007. data/lib/dfp_api/v201306/line_item_service.rb +1 -1
  1008. data/lib/dfp_api/v201306/line_item_service_registry.rb +1 -1
  1009. data/lib/dfp_api/v201306/line_item_template_service.rb +1 -1
  1010. data/lib/dfp_api/v201306/line_item_template_service_registry.rb +1 -1
  1011. data/lib/dfp_api/v201306/network_service.rb +1 -1
  1012. data/lib/dfp_api/v201306/network_service_registry.rb +1 -1
  1013. data/lib/dfp_api/v201306/order_service.rb +1 -1
  1014. data/lib/dfp_api/v201306/order_service_registry.rb +2 -2
  1015. data/lib/dfp_api/v201306/placement_service.rb +1 -1
  1016. data/lib/dfp_api/v201306/placement_service_registry.rb +1 -1
  1017. data/lib/dfp_api/v201306/product_service.rb +1 -1
  1018. data/lib/dfp_api/v201306/product_service_registry.rb +1 -1
  1019. data/lib/dfp_api/v201306/product_template_service.rb +1 -1
  1020. data/lib/dfp_api/v201306/product_template_service_registry.rb +1 -1
  1021. data/lib/dfp_api/v201306/proposal_line_item_service.rb +1 -1
  1022. data/lib/dfp_api/v201306/proposal_line_item_service_registry.rb +1 -1
  1023. data/lib/dfp_api/v201306/proposal_service.rb +1 -1
  1024. data/lib/dfp_api/v201306/proposal_service_registry.rb +1 -1
  1025. data/lib/dfp_api/v201306/publisher_query_language_service.rb +1 -1
  1026. data/lib/dfp_api/v201306/publisher_query_language_service_registry.rb +1 -1
  1027. data/lib/dfp_api/v201306/rate_card_customization_service.rb +1 -1
  1028. data/lib/dfp_api/v201306/rate_card_customization_service_registry.rb +1 -1
  1029. data/lib/dfp_api/v201306/rate_card_service.rb +1 -1
  1030. data/lib/dfp_api/v201306/rate_card_service_registry.rb +1 -1
  1031. data/lib/dfp_api/v201306/reconciliation_order_report_service.rb +1 -1
  1032. data/lib/dfp_api/v201306/reconciliation_order_report_service_registry.rb +1 -1
  1033. data/lib/dfp_api/v201306/reconciliation_report_row_service.rb +1 -1
  1034. data/lib/dfp_api/v201306/reconciliation_report_row_service_registry.rb +1 -1
  1035. data/lib/dfp_api/v201306/reconciliation_report_service.rb +1 -1
  1036. data/lib/dfp_api/v201306/reconciliation_report_service_registry.rb +1 -1
  1037. data/lib/dfp_api/v201306/report_service.rb +1 -1
  1038. data/lib/dfp_api/v201306/report_service_registry.rb +1 -1
  1039. data/lib/dfp_api/v201306/suggested_ad_unit_service.rb +1 -1
  1040. data/lib/dfp_api/v201306/suggested_ad_unit_service_registry.rb +1 -1
  1041. data/lib/dfp_api/v201306/team_service.rb +1 -1
  1042. data/lib/dfp_api/v201306/team_service_registry.rb +1 -1
  1043. data/lib/dfp_api/v201306/user_service.rb +1 -1
  1044. data/lib/dfp_api/v201306/user_service_registry.rb +1 -1
  1045. data/lib/dfp_api/v201306/user_team_association_service.rb +1 -1
  1046. data/lib/dfp_api/v201306/user_team_association_service_registry.rb +1 -1
  1047. data/lib/dfp_api/v201306/workflow_action_service.rb +1 -1
  1048. data/lib/dfp_api/v201306/workflow_action_service_registry.rb +1 -1
  1049. data/lib/dfp_api/v201308/activity_group_service.rb +1 -1
  1050. data/lib/dfp_api/v201308/activity_group_service_registry.rb +1 -1
  1051. data/lib/dfp_api/v201308/activity_service.rb +1 -1
  1052. data/lib/dfp_api/v201308/activity_service_registry.rb +1 -1
  1053. data/lib/dfp_api/v201308/ad_rule_service.rb +1 -1
  1054. data/lib/dfp_api/v201308/ad_rule_service_registry.rb +1 -1
  1055. data/lib/dfp_api/v201308/audience_segment_service.rb +1 -1
  1056. data/lib/dfp_api/v201308/audience_segment_service_registry.rb +1 -1
  1057. data/lib/dfp_api/v201308/base_rate_service.rb +1 -1
  1058. data/lib/dfp_api/v201308/base_rate_service_registry.rb +1 -1
  1059. data/lib/dfp_api/v201308/company_service.rb +1 -1
  1060. data/lib/dfp_api/v201308/company_service_registry.rb +1 -1
  1061. data/lib/dfp_api/v201308/contact_service.rb +1 -1
  1062. data/lib/dfp_api/v201308/contact_service_registry.rb +1 -1
  1063. data/lib/dfp_api/v201308/content_bundle_service.rb +1 -1
  1064. data/lib/dfp_api/v201308/content_bundle_service_registry.rb +1 -1
  1065. data/lib/dfp_api/v201308/content_service.rb +1 -1
  1066. data/lib/dfp_api/v201308/content_service_registry.rb +1 -1
  1067. data/lib/dfp_api/v201308/creative_service.rb +1 -1
  1068. data/lib/dfp_api/v201308/creative_service_registry.rb +2 -2
  1069. data/lib/dfp_api/v201308/creative_set_service.rb +1 -1
  1070. data/lib/dfp_api/v201308/creative_set_service_registry.rb +2 -2
  1071. data/lib/dfp_api/v201308/creative_template_service.rb +1 -1
  1072. data/lib/dfp_api/v201308/creative_template_service_registry.rb +1 -1
  1073. data/lib/dfp_api/v201308/creative_wrapper_service.rb +1 -1
  1074. data/lib/dfp_api/v201308/creative_wrapper_service_registry.rb +1 -1
  1075. data/lib/dfp_api/v201308/custom_field_service.rb +1 -1
  1076. data/lib/dfp_api/v201308/custom_field_service_registry.rb +1 -1
  1077. data/lib/dfp_api/v201308/custom_targeting_service.rb +1 -1
  1078. data/lib/dfp_api/v201308/custom_targeting_service_registry.rb +1 -1
  1079. data/lib/dfp_api/v201308/forecast_service.rb +1 -1
  1080. data/lib/dfp_api/v201308/forecast_service_registry.rb +1 -1
  1081. data/lib/dfp_api/v201308/inventory_service.rb +1 -1
  1082. data/lib/dfp_api/v201308/inventory_service_registry.rb +1 -1
  1083. data/lib/dfp_api/v201308/label_service.rb +1 -1
  1084. data/lib/dfp_api/v201308/label_service_registry.rb +1 -1
  1085. data/lib/dfp_api/v201308/line_item_creative_association_service.rb +1 -1
  1086. data/lib/dfp_api/v201308/line_item_creative_association_service_registry.rb +2 -2
  1087. data/lib/dfp_api/v201308/line_item_service.rb +1 -1
  1088. data/lib/dfp_api/v201308/line_item_service_registry.rb +1 -1
  1089. data/lib/dfp_api/v201308/line_item_template_service.rb +1 -1
  1090. data/lib/dfp_api/v201308/line_item_template_service_registry.rb +1 -1
  1091. data/lib/dfp_api/v201308/network_service.rb +1 -1
  1092. data/lib/dfp_api/v201308/network_service_registry.rb +1 -1
  1093. data/lib/dfp_api/v201308/order_service.rb +1 -1
  1094. data/lib/dfp_api/v201308/order_service_registry.rb +2 -2
  1095. data/lib/dfp_api/v201308/placement_service.rb +1 -1
  1096. data/lib/dfp_api/v201308/placement_service_registry.rb +1 -1
  1097. data/lib/dfp_api/v201308/product_service.rb +1 -1
  1098. data/lib/dfp_api/v201308/product_service_registry.rb +1 -1
  1099. data/lib/dfp_api/v201308/product_template_service.rb +1 -1
  1100. data/lib/dfp_api/v201308/product_template_service_registry.rb +1 -1
  1101. data/lib/dfp_api/v201308/proposal_line_item_service.rb +1 -1
  1102. data/lib/dfp_api/v201308/proposal_line_item_service_registry.rb +1 -1
  1103. data/lib/dfp_api/v201308/proposal_service.rb +1 -1
  1104. data/lib/dfp_api/v201308/proposal_service_registry.rb +1 -1
  1105. data/lib/dfp_api/v201308/publisher_query_language_service.rb +1 -1
  1106. data/lib/dfp_api/v201308/publisher_query_language_service_registry.rb +1 -1
  1107. data/lib/dfp_api/v201308/rate_card_customization_service.rb +1 -1
  1108. data/lib/dfp_api/v201308/rate_card_customization_service_registry.rb +1 -1
  1109. data/lib/dfp_api/v201308/rate_card_service.rb +1 -1
  1110. data/lib/dfp_api/v201308/rate_card_service_registry.rb +1 -1
  1111. data/lib/dfp_api/v201308/reconciliation_order_report_service.rb +1 -1
  1112. data/lib/dfp_api/v201308/reconciliation_order_report_service_registry.rb +1 -1
  1113. data/lib/dfp_api/v201308/reconciliation_report_row_service.rb +1 -1
  1114. data/lib/dfp_api/v201308/reconciliation_report_row_service_registry.rb +1 -1
  1115. data/lib/dfp_api/v201308/reconciliation_report_service.rb +1 -1
  1116. data/lib/dfp_api/v201308/reconciliation_report_service_registry.rb +1 -1
  1117. data/lib/dfp_api/v201308/report_service.rb +1 -1
  1118. data/lib/dfp_api/v201308/report_service_registry.rb +1 -1
  1119. data/lib/dfp_api/v201308/suggested_ad_unit_service.rb +1 -1
  1120. data/lib/dfp_api/v201308/suggested_ad_unit_service_registry.rb +1 -1
  1121. data/lib/dfp_api/v201308/team_service.rb +1 -1
  1122. data/lib/dfp_api/v201308/team_service_registry.rb +1 -1
  1123. data/lib/dfp_api/v201308/user_service.rb +1 -1
  1124. data/lib/dfp_api/v201308/user_service_registry.rb +1 -1
  1125. data/lib/dfp_api/v201308/user_team_association_service.rb +1 -1
  1126. data/lib/dfp_api/v201308/user_team_association_service_registry.rb +1 -1
  1127. data/lib/dfp_api/v201308/workflow_action_service.rb +1 -1
  1128. data/lib/dfp_api/v201308/workflow_action_service_registry.rb +1 -1
  1129. data/lib/dfp_api/v201311/activity_group_service.rb +1 -1
  1130. data/lib/dfp_api/v201311/activity_group_service_registry.rb +1 -1
  1131. data/lib/dfp_api/v201311/activity_service.rb +1 -1
  1132. data/lib/dfp_api/v201311/activity_service_registry.rb +1 -1
  1133. data/lib/dfp_api/v201311/ad_rule_service.rb +1 -1
  1134. data/lib/dfp_api/v201311/ad_rule_service_registry.rb +1 -1
  1135. data/lib/dfp_api/v201311/audience_segment_service.rb +1 -1
  1136. data/lib/dfp_api/v201311/audience_segment_service_registry.rb +1 -1
  1137. data/lib/dfp_api/v201311/base_rate_service.rb +1 -1
  1138. data/lib/dfp_api/v201311/base_rate_service_registry.rb +1 -1
  1139. data/lib/dfp_api/v201311/company_service.rb +1 -1
  1140. data/lib/dfp_api/v201311/company_service_registry.rb +1 -1
  1141. data/lib/dfp_api/v201311/contact_service.rb +1 -1
  1142. data/lib/dfp_api/v201311/contact_service_registry.rb +1 -1
  1143. data/lib/dfp_api/v201311/content_bundle_service.rb +1 -1
  1144. data/lib/dfp_api/v201311/content_bundle_service_registry.rb +1 -1
  1145. data/lib/dfp_api/v201311/content_metadata_key_hierarchy_service.rb +1 -1
  1146. data/lib/dfp_api/v201311/content_metadata_key_hierarchy_service_registry.rb +1 -1
  1147. data/lib/dfp_api/v201311/content_service.rb +1 -1
  1148. data/lib/dfp_api/v201311/content_service_registry.rb +1 -1
  1149. data/lib/dfp_api/v201311/creative_service.rb +1 -1
  1150. data/lib/dfp_api/v201311/creative_service_registry.rb +2 -2
  1151. data/lib/dfp_api/v201311/creative_set_service.rb +1 -1
  1152. data/lib/dfp_api/v201311/creative_set_service_registry.rb +2 -2
  1153. data/lib/dfp_api/v201311/creative_template_service.rb +1 -1
  1154. data/lib/dfp_api/v201311/creative_template_service_registry.rb +1 -1
  1155. data/lib/dfp_api/v201311/creative_wrapper_service.rb +1 -1
  1156. data/lib/dfp_api/v201311/creative_wrapper_service_registry.rb +1 -1
  1157. data/lib/dfp_api/v201311/custom_field_service.rb +1 -1
  1158. data/lib/dfp_api/v201311/custom_field_service_registry.rb +1 -1
  1159. data/lib/dfp_api/v201311/custom_targeting_service.rb +1 -1
  1160. data/lib/dfp_api/v201311/custom_targeting_service_registry.rb +1 -1
  1161. data/lib/dfp_api/v201311/exchange_rate_service.rb +1 -1
  1162. data/lib/dfp_api/v201311/exchange_rate_service_registry.rb +1 -1
  1163. data/lib/dfp_api/v201311/forecast_service.rb +1 -1
  1164. data/lib/dfp_api/v201311/forecast_service_registry.rb +1 -1
  1165. data/lib/dfp_api/v201311/inventory_service.rb +1 -1
  1166. data/lib/dfp_api/v201311/inventory_service_registry.rb +1 -1
  1167. data/lib/dfp_api/v201311/label_service.rb +1 -1
  1168. data/lib/dfp_api/v201311/label_service_registry.rb +1 -1
  1169. data/lib/dfp_api/v201311/line_item_creative_association_service.rb +1 -1
  1170. data/lib/dfp_api/v201311/line_item_creative_association_service_registry.rb +2 -2
  1171. data/lib/dfp_api/v201311/line_item_service.rb +1 -1
  1172. data/lib/dfp_api/v201311/line_item_service_registry.rb +1 -1
  1173. data/lib/dfp_api/v201311/line_item_template_service.rb +1 -1
  1174. data/lib/dfp_api/v201311/line_item_template_service_registry.rb +1 -1
  1175. data/lib/dfp_api/v201311/network_service.rb +1 -1
  1176. data/lib/dfp_api/v201311/network_service_registry.rb +1 -1
  1177. data/lib/dfp_api/v201311/order_service.rb +1 -1
  1178. data/lib/dfp_api/v201311/order_service_registry.rb +2 -2
  1179. data/lib/dfp_api/v201311/placement_service.rb +1 -1
  1180. data/lib/dfp_api/v201311/placement_service_registry.rb +1 -1
  1181. data/lib/dfp_api/v201311/product_service.rb +1 -1
  1182. data/lib/dfp_api/v201311/product_service_registry.rb +1 -1
  1183. data/lib/dfp_api/v201311/product_template_service.rb +1 -1
  1184. data/lib/dfp_api/v201311/product_template_service_registry.rb +1 -1
  1185. data/lib/dfp_api/v201311/proposal_line_item_service.rb +1 -1
  1186. data/lib/dfp_api/v201311/proposal_line_item_service_registry.rb +1 -1
  1187. data/lib/dfp_api/v201311/proposal_service.rb +1 -1
  1188. data/lib/dfp_api/v201311/proposal_service_registry.rb +1 -1
  1189. data/lib/dfp_api/v201311/publisher_query_language_service.rb +1 -1
  1190. data/lib/dfp_api/v201311/publisher_query_language_service_registry.rb +1 -1
  1191. data/lib/dfp_api/v201311/rate_card_customization_service.rb +1 -1
  1192. data/lib/dfp_api/v201311/rate_card_customization_service_registry.rb +1 -1
  1193. data/lib/dfp_api/v201311/rate_card_service.rb +1 -1
  1194. data/lib/dfp_api/v201311/rate_card_service_registry.rb +1 -1
  1195. data/lib/dfp_api/v201311/reconciliation_order_report_service.rb +1 -1
  1196. data/lib/dfp_api/v201311/reconciliation_order_report_service_registry.rb +1 -1
  1197. data/lib/dfp_api/v201311/reconciliation_report_row_service.rb +1 -1
  1198. data/lib/dfp_api/v201311/reconciliation_report_row_service_registry.rb +1 -1
  1199. data/lib/dfp_api/v201311/reconciliation_report_service.rb +1 -1
  1200. data/lib/dfp_api/v201311/reconciliation_report_service_registry.rb +1 -1
  1201. data/lib/dfp_api/v201311/report_service.rb +1 -1
  1202. data/lib/dfp_api/v201311/report_service_registry.rb +1 -1
  1203. data/lib/dfp_api/v201311/suggested_ad_unit_service.rb +1 -1
  1204. data/lib/dfp_api/v201311/suggested_ad_unit_service_registry.rb +1 -1
  1205. data/lib/dfp_api/v201311/team_service.rb +1 -1
  1206. data/lib/dfp_api/v201311/team_service_registry.rb +1 -1
  1207. data/lib/dfp_api/v201311/user_service.rb +1 -1
  1208. data/lib/dfp_api/v201311/user_service_registry.rb +1 -1
  1209. data/lib/dfp_api/v201311/user_team_association_service.rb +1 -1
  1210. data/lib/dfp_api/v201311/user_team_association_service_registry.rb +1 -1
  1211. data/lib/dfp_api/v201311/workflow_request_service.rb +1 -1
  1212. data/lib/dfp_api/v201311/workflow_request_service_registry.rb +2 -2
  1213. data/lib/dfp_api/v201403/activity_group_service.rb +1 -1
  1214. data/lib/dfp_api/v201403/activity_group_service_registry.rb +1 -1
  1215. data/lib/dfp_api/v201403/activity_service.rb +1 -1
  1216. data/lib/dfp_api/v201403/activity_service_registry.rb +1 -1
  1217. data/lib/dfp_api/v201403/ad_rule_service.rb +1 -1
  1218. data/lib/dfp_api/v201403/ad_rule_service_registry.rb +1 -1
  1219. data/lib/dfp_api/v201403/audience_segment_service.rb +1 -1
  1220. data/lib/dfp_api/v201403/audience_segment_service_registry.rb +1 -1
  1221. data/lib/dfp_api/v201403/base_rate_service.rb +1 -1
  1222. data/lib/dfp_api/v201403/base_rate_service_registry.rb +1 -1
  1223. data/lib/dfp_api/v201403/company_service.rb +1 -1
  1224. data/lib/dfp_api/v201403/company_service_registry.rb +1 -1
  1225. data/lib/dfp_api/v201403/contact_service.rb +1 -1
  1226. data/lib/dfp_api/v201403/contact_service_registry.rb +1 -1
  1227. data/lib/dfp_api/v201403/content_bundle_service.rb +1 -1
  1228. data/lib/dfp_api/v201403/content_bundle_service_registry.rb +1 -1
  1229. data/lib/dfp_api/v201403/content_metadata_key_hierarchy_service.rb +1 -1
  1230. data/lib/dfp_api/v201403/content_metadata_key_hierarchy_service_registry.rb +1 -1
  1231. data/lib/dfp_api/v201403/content_service.rb +1 -1
  1232. data/lib/dfp_api/v201403/content_service_registry.rb +1 -1
  1233. data/lib/dfp_api/v201403/creative_service.rb +1 -1
  1234. data/lib/dfp_api/v201403/creative_service_registry.rb +2 -2
  1235. data/lib/dfp_api/v201403/creative_set_service.rb +1 -1
  1236. data/lib/dfp_api/v201403/creative_set_service_registry.rb +2 -2
  1237. data/lib/dfp_api/v201403/creative_template_service.rb +1 -1
  1238. data/lib/dfp_api/v201403/creative_template_service_registry.rb +1 -1
  1239. data/lib/dfp_api/v201403/creative_wrapper_service.rb +1 -1
  1240. data/lib/dfp_api/v201403/creative_wrapper_service_registry.rb +1 -1
  1241. data/lib/dfp_api/v201403/custom_field_service.rb +1 -1
  1242. data/lib/dfp_api/v201403/custom_field_service_registry.rb +1 -1
  1243. data/lib/dfp_api/v201403/custom_targeting_service.rb +1 -1
  1244. data/lib/dfp_api/v201403/custom_targeting_service_registry.rb +1 -1
  1245. data/lib/dfp_api/v201403/exchange_rate_service.rb +1 -1
  1246. data/lib/dfp_api/v201403/exchange_rate_service_registry.rb +1 -1
  1247. data/lib/dfp_api/v201403/forecast_service.rb +1 -1
  1248. data/lib/dfp_api/v201403/forecast_service_registry.rb +1 -1
  1249. data/lib/dfp_api/v201403/inventory_service.rb +1 -1
  1250. data/lib/dfp_api/v201403/inventory_service_registry.rb +1 -1
  1251. data/lib/dfp_api/v201403/label_service.rb +1 -1
  1252. data/lib/dfp_api/v201403/label_service_registry.rb +1 -1
  1253. data/lib/dfp_api/v201403/line_item_creative_association_service.rb +1 -1
  1254. data/lib/dfp_api/v201403/line_item_creative_association_service_registry.rb +2 -2
  1255. data/lib/dfp_api/v201403/line_item_service.rb +1 -1
  1256. data/lib/dfp_api/v201403/line_item_service_registry.rb +1 -1
  1257. data/lib/dfp_api/v201403/line_item_template_service.rb +1 -1
  1258. data/lib/dfp_api/v201403/line_item_template_service_registry.rb +1 -1
  1259. data/lib/dfp_api/v201403/live_stream_event_service.rb +1 -1
  1260. data/lib/dfp_api/v201403/live_stream_event_service_registry.rb +1 -1
  1261. data/lib/dfp_api/v201403/network_service.rb +1 -1
  1262. data/lib/dfp_api/v201403/network_service_registry.rb +1 -1
  1263. data/lib/dfp_api/v201403/order_service.rb +1 -1
  1264. data/lib/dfp_api/v201403/order_service_registry.rb +2 -2
  1265. data/lib/dfp_api/v201403/placement_service.rb +1 -1
  1266. data/lib/dfp_api/v201403/placement_service_registry.rb +1 -1
  1267. data/lib/dfp_api/v201403/product_service.rb +1 -1
  1268. data/lib/dfp_api/v201403/product_service_registry.rb +1 -1
  1269. data/lib/dfp_api/v201403/product_template_service.rb +1 -1
  1270. data/lib/dfp_api/v201403/product_template_service_registry.rb +1 -1
  1271. data/lib/dfp_api/v201403/proposal_line_item_service.rb +1 -1
  1272. data/lib/dfp_api/v201403/proposal_line_item_service_registry.rb +2 -2
  1273. data/lib/dfp_api/v201403/proposal_service.rb +1 -5
  1274. data/lib/dfp_api/v201403/proposal_service_registry.rb +3 -3
  1275. data/lib/dfp_api/v201403/publisher_query_language_service.rb +1 -1
  1276. data/lib/dfp_api/v201403/publisher_query_language_service_registry.rb +1 -1
  1277. data/lib/dfp_api/v201403/rate_card_customization_group_service.rb +1 -1
  1278. data/lib/dfp_api/v201403/rate_card_customization_group_service_registry.rb +2 -2
  1279. data/lib/dfp_api/v201403/rate_card_customization_service.rb +1 -1
  1280. data/lib/dfp_api/v201403/rate_card_customization_service_registry.rb +1 -1
  1281. data/lib/dfp_api/v201403/rate_card_service.rb +1 -1
  1282. data/lib/dfp_api/v201403/rate_card_service_registry.rb +1 -1
  1283. data/lib/dfp_api/v201403/reconciliation_order_report_service.rb +1 -1
  1284. data/lib/dfp_api/v201403/reconciliation_order_report_service_registry.rb +1 -1
  1285. data/lib/dfp_api/v201403/reconciliation_report_row_service.rb +1 -1
  1286. data/lib/dfp_api/v201403/reconciliation_report_row_service_registry.rb +1 -1
  1287. data/lib/dfp_api/v201403/reconciliation_report_service.rb +1 -1
  1288. data/lib/dfp_api/v201403/reconciliation_report_service_registry.rb +1 -1
  1289. data/lib/dfp_api/v201403/report_service.rb +1 -1
  1290. data/lib/dfp_api/v201403/report_service_registry.rb +1 -1
  1291. data/lib/dfp_api/v201403/suggested_ad_unit_service.rb +1 -1
  1292. data/lib/dfp_api/v201403/suggested_ad_unit_service_registry.rb +1 -1
  1293. data/lib/dfp_api/v201403/team_service.rb +1 -1
  1294. data/lib/dfp_api/v201403/team_service_registry.rb +1 -1
  1295. data/lib/dfp_api/v201403/user_service.rb +1 -1
  1296. data/lib/dfp_api/v201403/user_service_registry.rb +1 -1
  1297. data/lib/dfp_api/v201403/user_team_association_service.rb +1 -1
  1298. data/lib/dfp_api/v201403/user_team_association_service_registry.rb +1 -1
  1299. data/lib/dfp_api/v201403/workflow_request_service.rb +1 -1
  1300. data/lib/dfp_api/v201403/workflow_request_service_registry.rb +2 -2
  1301. data/lib/dfp_api/v201405/activity_group_service.rb +42 -0
  1302. data/lib/dfp_api/v201405/activity_group_service_registry.rb +46 -0
  1303. data/lib/dfp_api/v201405/activity_service.rb +42 -0
  1304. data/lib/dfp_api/v201405/activity_service_registry.rb +46 -0
  1305. data/lib/dfp_api/v201405/ad_rule_service.rb +46 -0
  1306. data/lib/dfp_api/v201405/ad_rule_service_registry.rb +46 -0
  1307. data/lib/dfp_api/v201405/audience_segment_service.rb +46 -0
  1308. data/lib/dfp_api/v201405/audience_segment_service_registry.rb +46 -0
  1309. data/lib/dfp_api/v201405/base_rate_service.rb +46 -0
  1310. data/lib/dfp_api/v201405/base_rate_service_registry.rb +46 -0
  1311. data/lib/dfp_api/v201405/company_service.rb +42 -0
  1312. data/lib/dfp_api/v201405/company_service_registry.rb +46 -0
  1313. data/lib/dfp_api/v201405/contact_service.rb +42 -0
  1314. data/lib/dfp_api/v201405/contact_service_registry.rb +46 -0
  1315. data/lib/dfp_api/v201405/content_bundle_service.rb +46 -0
  1316. data/lib/dfp_api/v201405/content_bundle_service_registry.rb +46 -0
  1317. data/lib/dfp_api/v201405/content_metadata_key_hierarchy_service.rb +46 -0
  1318. data/lib/dfp_api/v201405/content_metadata_key_hierarchy_service_registry.rb +46 -0
  1319. data/lib/dfp_api/v201405/content_service.rb +38 -0
  1320. data/lib/dfp_api/v201405/content_service_registry.rb +46 -0
  1321. data/lib/dfp_api/v201405/creative_service.rb +42 -0
  1322. data/lib/dfp_api/v201405/creative_service_registry.rb +46 -0
  1323. data/lib/dfp_api/v201405/creative_set_service.rb +42 -0
  1324. data/lib/dfp_api/v201405/creative_set_service_registry.rb +46 -0
  1325. data/lib/dfp_api/v201405/creative_template_service.rb +34 -0
  1326. data/lib/dfp_api/v201405/creative_template_service_registry.rb +46 -0
  1327. data/lib/dfp_api/v201405/creative_wrapper_service.rb +46 -0
  1328. data/lib/dfp_api/v201405/creative_wrapper_service_registry.rb +46 -0
  1329. data/lib/dfp_api/v201405/custom_field_service.rb +58 -0
  1330. data/lib/dfp_api/v201405/custom_field_service_registry.rb +46 -0
  1331. data/lib/dfp_api/v201405/custom_targeting_service.rb +62 -0
  1332. data/lib/dfp_api/v201405/custom_targeting_service_registry.rb +46 -0
  1333. data/lib/dfp_api/v201405/exchange_rate_service.rb +46 -0
  1334. data/lib/dfp_api/v201405/exchange_rate_service_registry.rb +46 -0
  1335. data/lib/dfp_api/v201405/forecast_service.rb +38 -0
  1336. data/lib/dfp_api/v201405/forecast_service_registry.rb +46 -0
  1337. data/lib/dfp_api/v201405/inventory_service.rb +50 -0
  1338. data/lib/dfp_api/v201405/inventory_service_registry.rb +46 -0
  1339. data/lib/dfp_api/v201405/label_service.rb +46 -0
  1340. data/lib/dfp_api/v201405/label_service_registry.rb +46 -0
  1341. data/lib/dfp_api/v201405/line_item_creative_association_service.rb +50 -0
  1342. data/lib/dfp_api/v201405/line_item_creative_association_service_registry.rb +46 -0
  1343. data/lib/dfp_api/v201405/line_item_service.rb +46 -0
  1344. data/lib/dfp_api/v201405/line_item_service_registry.rb +46 -0
  1345. data/lib/dfp_api/v201405/line_item_template_service.rb +34 -0
  1346. data/lib/dfp_api/v201405/line_item_template_service_registry.rb +46 -0
  1347. data/lib/dfp_api/v201405/live_stream_event_service.rb +46 -0
  1348. data/lib/dfp_api/v201405/live_stream_event_service_registry.rb +46 -0
  1349. data/lib/dfp_api/v201405/network_service.rb +46 -0
  1350. data/lib/dfp_api/v201405/network_service_registry.rb +46 -0
  1351. data/lib/dfp_api/v201405/order_service.rb +46 -0
  1352. data/lib/dfp_api/v201405/order_service_registry.rb +46 -0
  1353. data/lib/dfp_api/v201405/placement_service.rb +46 -0
  1354. data/lib/dfp_api/v201405/placement_service_registry.rb +46 -0
  1355. data/lib/dfp_api/v201405/product_service.rb +42 -0
  1356. data/lib/dfp_api/v201405/product_service_registry.rb +46 -0
  1357. data/lib/dfp_api/v201405/product_template_service.rb +46 -0
  1358. data/lib/dfp_api/v201405/product_template_service_registry.rb +46 -0
  1359. data/lib/dfp_api/v201405/proposal_line_item_service.rb +46 -0
  1360. data/lib/dfp_api/v201405/proposal_line_item_service_registry.rb +46 -0
  1361. data/lib/dfp_api/v201405/proposal_service.rb +46 -0
  1362. data/lib/dfp_api/v201405/proposal_service_registry.rb +46 -0
  1363. data/lib/dfp_api/v201405/publisher_query_language_service.rb +34 -0
  1364. data/lib/dfp_api/v201405/publisher_query_language_service_registry.rb +46 -0
  1365. data/lib/dfp_api/v201405/rate_card_customization_group_service.rb +42 -0
  1366. data/lib/dfp_api/v201405/rate_card_customization_group_service_registry.rb +46 -0
  1367. data/lib/dfp_api/v201405/rate_card_customization_service.rb +46 -0
  1368. data/lib/dfp_api/v201405/rate_card_customization_service_registry.rb +46 -0
  1369. data/lib/dfp_api/v201405/rate_card_service.rb +46 -0
  1370. data/lib/dfp_api/v201405/rate_card_service_registry.rb +46 -0
  1371. data/lib/dfp_api/v201405/reconciliation_order_report_service.rb +38 -0
  1372. data/lib/dfp_api/v201405/reconciliation_order_report_service_registry.rb +46 -0
  1373. data/lib/dfp_api/v201405/reconciliation_report_row_service.rb +38 -0
  1374. data/lib/dfp_api/v201405/reconciliation_report_row_service_registry.rb +46 -0
  1375. data/lib/dfp_api/v201405/reconciliation_report_service.rb +38 -0
  1376. data/lib/dfp_api/v201405/reconciliation_report_service_registry.rb +46 -0
  1377. data/lib/dfp_api/v201405/report_service.rb +46 -0
  1378. data/lib/dfp_api/v201405/report_service_registry.rb +46 -0
  1379. data/lib/dfp_api/v201405/suggested_ad_unit_service.rb +38 -0
  1380. data/lib/dfp_api/v201405/suggested_ad_unit_service_registry.rb +46 -0
  1381. data/lib/dfp_api/v201405/team_service.rb +42 -0
  1382. data/lib/dfp_api/v201405/team_service_registry.rb +46 -0
  1383. data/lib/dfp_api/v201405/user_service.rb +54 -0
  1384. data/lib/dfp_api/v201405/user_service_registry.rb +46 -0
  1385. data/lib/dfp_api/v201405/user_team_association_service.rb +46 -0
  1386. data/lib/dfp_api/v201405/user_team_association_service_registry.rb +46 -0
  1387. data/lib/dfp_api/v201405/workflow_request_service.rb +38 -0
  1388. data/lib/dfp_api/v201405/workflow_request_service_registry.rb +46 -0
  1389. data/lib/dfp_api/version.rb +1 -1
  1390. data/test/bugs/test_issue_00000016.rb +2 -2
  1391. data/test/dfp_api/test_dfp_api.rb +7 -3
  1392. metadata +1649 -749
@@ -0,0 +1,46 @@
1
+ # Encoding: utf-8
2
+ #
3
+ # This is auto-generated code, changes will be overwritten.
4
+ #
5
+ # Copyright:: Copyright 2013, Google Inc. All Rights Reserved.
6
+ # License:: Licensed under the Apache License, Version 2.0.
7
+ #
8
+ # Code generated by AdsCommon library 0.9.6 on 2014-05-19 16:46:32.
9
+
10
+ require 'dfp_api/errors'
11
+
12
+ module DfpApi; module V201405; module UserService
13
+ class UserServiceRegistry
14
+ USERSERVICE_METHODS = {:create_users=>{:input=>[{:name=>:users, :type=>"User", :min_occurs=>0, :max_occurs=>:unbounded}], :output=>{:name=>"create_users_response", :fields=>[{:name=>:rval, :type=>"User", :min_occurs=>0, :max_occurs=>:unbounded}]}}, :get_all_roles=>{:input=>[], :output=>{:name=>"get_all_roles_response", :fields=>[{:name=>:rval, :type=>"Role", :min_occurs=>0, :max_occurs=>:unbounded}]}}, :get_current_user=>{:input=>[], :output=>{:name=>"get_current_user_response", :fields=>[{:name=>:rval, :type=>"User", :min_occurs=>0, :max_occurs=>1}]}}, :get_users_by_statement=>{:input=>[{:name=>:filter_statement, :type=>"Statement", :min_occurs=>0, :max_occurs=>1}], :output=>{:name=>"get_users_by_statement_response", :fields=>[{:name=>:rval, :type=>"UserPage", :min_occurs=>0, :max_occurs=>1}]}}, :perform_user_action=>{:input=>[{:name=>:user_action, :type=>"UserAction", :min_occurs=>0, :max_occurs=>1}, {:name=>:filter_statement, :type=>"Statement", :min_occurs=>0, :max_occurs=>1}], :output=>{:name=>"perform_user_action_response", :fields=>[{:name=>:rval, :type=>"UpdateResult", :min_occurs=>0, :max_occurs=>1}]}}, :update_users=>{:input=>[{:name=>:users, :type=>"User", :min_occurs=>0, :max_occurs=>:unbounded}], :output=>{:name=>"update_users_response", :fields=>[{:name=>:rval, :type=>"User", :min_occurs=>0, :max_occurs=>:unbounded}]}}}
15
+ USERSERVICE_TYPES = {:ActivateUsers=>{:fields=>[], :base=>"UserAction"}, :ApiError=>{:fields=>[{:name=>:field_path, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:trigger, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:error_string, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:api_error_type, :original_name=>"ApiError.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :ApiException=>{:fields=>[{:name=>:errors, :type=>"ApiError", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"ApplicationException"}, :ApiVersionError=>{:fields=>[{:name=>:reason, :type=>"ApiVersionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :ApplicationException=>{:fields=>[{:name=>:message, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:application_exception_type, :original_name=>"ApplicationException.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :Authentication=>{:fields=>[{:name=>:authentication_type, :original_name=>"Authentication.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :AuthenticationError=>{:fields=>[{:name=>:reason, :type=>"AuthenticationError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :BaseCustomFieldValue=>{:fields=>[{:name=>:custom_field_id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:base_custom_field_value_type, :original_name=>"BaseCustomFieldValue.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :BooleanValue=>{:fields=>[{:name=>:value, :type=>"boolean", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :CommonError=>{:fields=>[{:name=>:reason, :type=>"CommonError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :CustomFieldValue=>{:fields=>[{:name=>:value, :type=>"Value", :min_occurs=>0, :max_occurs=>1}], :base=>"BaseCustomFieldValue"}, :CustomFieldValueError=>{:fields=>[{:name=>:reason, :type=>"CustomFieldValueError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :Date=>{:fields=>[{:name=>:year, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:month, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:day, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :DateTime=>{:fields=>[{:name=>:date, :type=>"Date", :min_occurs=>0, :max_occurs=>1}, {:name=>:hour, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:minute, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:second, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:time_zone_id, :original_name=>"timeZoneID", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :DateTimeValue=>{:fields=>[{:name=>:value, :type=>"DateTime", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :DateValue=>{:fields=>[{:name=>:value, :type=>"Date", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :DeactivateUsers=>{:fields=>[], :base=>"UserAction"}, :DropDownCustomFieldValue=>{:fields=>[{:name=>:custom_field_option_id, :type=>"long", :min_occurs=>0, :max_occurs=>1}], :base=>"BaseCustomFieldValue"}, :FeatureError=>{:fields=>[{:name=>:reason, :type=>"FeatureError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :InternalApiError=>{:fields=>[{:name=>:reason, :type=>"InternalApiError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :InvalidEmailError=>{:fields=>[{:name=>:reason, :type=>"InvalidEmailError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NotNullError=>{:fields=>[{:name=>:reason, :type=>"NotNullError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NumberValue=>{:fields=>[{:name=>:value, :type=>"string", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :ParseError=>{:fields=>[{:name=>:reason, :type=>"ParseError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PermissionError=>{:fields=>[{:name=>:reason, :type=>"PermissionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PublisherQueryLanguageContextError=>{:fields=>[{:name=>:reason, :type=>"PublisherQueryLanguageContextError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PublisherQueryLanguageSyntaxError=>{:fields=>[{:name=>:reason, :type=>"PublisherQueryLanguageSyntaxError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :QuotaError=>{:fields=>[{:name=>:reason, :type=>"QuotaError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :RequiredError=>{:fields=>[{:name=>:reason, :type=>"RequiredError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :Role=>{:fields=>[{:name=>:id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:description, :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :ServerError=>{:fields=>[{:name=>:reason, :type=>"ServerError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :SetValue=>{:fields=>[{:name=>:values, :type=>"Value", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"Value"}, :SoapRequestHeader=>{:fields=>[{:name=>:network_code, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:application_name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:authentication, :type=>"Authentication", :min_occurs=>0, :max_occurs=>1}]}, :SoapResponseHeader=>{:fields=>[{:name=>:request_id, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:response_time, :type=>"long", :min_occurs=>0, :max_occurs=>1}]}, :Statement=>{:fields=>[{:name=>:query, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:values, :type=>"String_ValueMapEntry", :min_occurs=>0, :max_occurs=>:unbounded}]}, :StatementError=>{:fields=>[{:name=>:reason, :type=>"StatementError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :String_ValueMapEntry=>{:fields=>[{:name=>:key, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:value, :type=>"Value", :min_occurs=>0, :max_occurs=>1}]}, :TeamError=>{:fields=>[{:name=>:reason, :type=>"TeamError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :TextValue=>{:fields=>[{:name=>:value, :type=>"string", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :TypeError=>{:fields=>[], :base=>"ApiError"}, :UniqueError=>{:fields=>[], :base=>"ApiError"}, :UpdateResult=>{:fields=>[{:name=>:num_changes, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :UserAction=>{:fields=>[{:name=>:user_action_type, :original_name=>"UserAction.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :User=>{:fields=>[{:name=>:is_active, :type=>"boolean", :min_occurs=>0, :max_occurs=>1}, {:name=>:is_email_notification_allowed, :type=>"boolean", :min_occurs=>0, :max_occurs=>1}, {:name=>:external_id, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:orders_ui_local_time_zone_id, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:custom_field_values, :type=>"BaseCustomFieldValue", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"UserRecord"}, :UserPage=>{:fields=>[{:name=>:total_result_set_size, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:start_index, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:results, :type=>"User", :min_occurs=>0, :max_occurs=>:unbounded}]}, :UserRecord=>{:fields=>[{:name=>:id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:email, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:role_id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:role_name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:preferred_locale, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:user_record_type, :original_name=>"UserRecord.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :Value=>{:fields=>[{:name=>:value_type, :original_name=>"Value.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :"ApiVersionError.Reason"=>{:fields=>[]}, :"AuthenticationError.Reason"=>{:fields=>[]}, :"CommonError.Reason"=>{:fields=>[]}, :"CustomFieldValueError.Reason"=>{:fields=>[]}, :"FeatureError.Reason"=>{:fields=>[]}, :"InternalApiError.Reason"=>{:fields=>[]}, :"InvalidEmailError.Reason"=>{:fields=>[]}, :"NotNullError.Reason"=>{:fields=>[]}, :"ParseError.Reason"=>{:fields=>[]}, :"PermissionError.Reason"=>{:fields=>[]}, :"PublisherQueryLanguageContextError.Reason"=>{:fields=>[]}, :"PublisherQueryLanguageSyntaxError.Reason"=>{:fields=>[]}, :"QuotaError.Reason"=>{:fields=>[]}, :"RequiredError.Reason"=>{:fields=>[]}, :"ServerError.Reason"=>{:fields=>[]}, :"StatementError.Reason"=>{:fields=>[]}, :"TeamError.Reason"=>{:fields=>[]}}
16
+ USERSERVICE_NAMESPACES = []
17
+
18
+ def self.get_method_signature(method_name)
19
+ return USERSERVICE_METHODS[method_name.to_sym]
20
+ end
21
+
22
+ def self.get_type_signature(type_name)
23
+ return USERSERVICE_TYPES[type_name.to_sym]
24
+ end
25
+
26
+ def self.get_namespace(index)
27
+ return USERSERVICE_NAMESPACES[index]
28
+ end
29
+ end
30
+
31
+ # Base class for exceptions.
32
+ class ApplicationException < DfpApi::Errors::ApiException
33
+ attr_reader :message # string
34
+ attr_reader :application_exception_type # string
35
+ end
36
+
37
+ # Exception class for holding a list of service errors.
38
+ class ApiException < ApplicationException
39
+ attr_reader :errors # ApiError
40
+ def initialize(exception_fault)
41
+ @array_fields ||= []
42
+ @array_fields << 'errors'
43
+ super(exception_fault, UserServiceRegistry)
44
+ end
45
+ end
46
+ end; end; end
@@ -0,0 +1,46 @@
1
+ # Encoding: utf-8
2
+ #
3
+ # This is auto-generated code, changes will be overwritten.
4
+ #
5
+ # Copyright:: Copyright 2013, Google Inc. All Rights Reserved.
6
+ # License:: Licensed under the Apache License, Version 2.0.
7
+ #
8
+ # Code generated by AdsCommon library 0.9.6 on 2014-05-19 16:46:33.
9
+
10
+ require 'ads_common/savon_service'
11
+ require 'dfp_api/v201405/user_team_association_service_registry'
12
+
13
+ module DfpApi; module V201405; module UserTeamAssociationService
14
+ class UserTeamAssociationService < AdsCommon::SavonService
15
+ def initialize(config, endpoint)
16
+ namespace = 'https://www.google.com/apis/ads/publisher/v201405'
17
+ super(config, endpoint, namespace, :v201405)
18
+ end
19
+
20
+ def create_user_team_associations(*args, &block)
21
+ return execute_action('create_user_team_associations', args, &block)
22
+ end
23
+
24
+ def get_user_team_associations_by_statement(*args, &block)
25
+ return execute_action('get_user_team_associations_by_statement', args, &block)
26
+ end
27
+
28
+ def perform_user_team_association_action(*args, &block)
29
+ return execute_action('perform_user_team_association_action', args, &block)
30
+ end
31
+
32
+ def update_user_team_associations(*args, &block)
33
+ return execute_action('update_user_team_associations', args, &block)
34
+ end
35
+
36
+ private
37
+
38
+ def get_service_registry()
39
+ return UserTeamAssociationServiceRegistry
40
+ end
41
+
42
+ def get_module()
43
+ return DfpApi::V201405::UserTeamAssociationService
44
+ end
45
+ end
46
+ end; end; end
@@ -0,0 +1,46 @@
1
+ # Encoding: utf-8
2
+ #
3
+ # This is auto-generated code, changes will be overwritten.
4
+ #
5
+ # Copyright:: Copyright 2013, Google Inc. All Rights Reserved.
6
+ # License:: Licensed under the Apache License, Version 2.0.
7
+ #
8
+ # Code generated by AdsCommon library 0.9.6 on 2014-05-19 16:46:33.
9
+
10
+ require 'dfp_api/errors'
11
+
12
+ module DfpApi; module V201405; module UserTeamAssociationService
13
+ class UserTeamAssociationServiceRegistry
14
+ USERTEAMASSOCIATIONSERVICE_METHODS = {:create_user_team_associations=>{:input=>[{:name=>:user_team_associations, :type=>"UserTeamAssociation", :min_occurs=>0, :max_occurs=>:unbounded}], :output=>{:name=>"create_user_team_associations_response", :fields=>[{:name=>:rval, :type=>"UserTeamAssociation", :min_occurs=>0, :max_occurs=>:unbounded}]}}, :get_user_team_associations_by_statement=>{:input=>[{:name=>:filter_statement, :type=>"Statement", :min_occurs=>0, :max_occurs=>1}], :output=>{:name=>"get_user_team_associations_by_statement_response", :fields=>[{:name=>:rval, :type=>"UserTeamAssociationPage", :min_occurs=>0, :max_occurs=>1}]}}, :perform_user_team_association_action=>{:input=>[{:name=>:user_team_association_action, :type=>"UserTeamAssociationAction", :min_occurs=>0, :max_occurs=>1}, {:name=>:statement, :type=>"Statement", :min_occurs=>0, :max_occurs=>1}], :output=>{:name=>"perform_user_team_association_action_response", :fields=>[{:name=>:rval, :type=>"UpdateResult", :min_occurs=>0, :max_occurs=>1}]}}, :update_user_team_associations=>{:input=>[{:name=>:user_team_associations, :type=>"UserTeamAssociation", :min_occurs=>0, :max_occurs=>:unbounded}], :output=>{:name=>"update_user_team_associations_response", :fields=>[{:name=>:rval, :type=>"UserTeamAssociation", :min_occurs=>0, :max_occurs=>:unbounded}]}}}
15
+ USERTEAMASSOCIATIONSERVICE_TYPES = {:ApiError=>{:fields=>[{:name=>:field_path, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:trigger, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:error_string, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:api_error_type, :original_name=>"ApiError.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :ApiException=>{:fields=>[{:name=>:errors, :type=>"ApiError", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"ApplicationException"}, :ApiVersionError=>{:fields=>[{:name=>:reason, :type=>"ApiVersionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :ApplicationException=>{:fields=>[{:name=>:message, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:application_exception_type, :original_name=>"ApplicationException.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :Authentication=>{:fields=>[{:name=>:authentication_type, :original_name=>"Authentication.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :AuthenticationError=>{:fields=>[{:name=>:reason, :type=>"AuthenticationError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :BooleanValue=>{:fields=>[{:name=>:value, :type=>"boolean", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :CommonError=>{:fields=>[{:name=>:reason, :type=>"CommonError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :Date=>{:fields=>[{:name=>:year, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:month, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:day, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :DateTime=>{:fields=>[{:name=>:date, :type=>"Date", :min_occurs=>0, :max_occurs=>1}, {:name=>:hour, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:minute, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:second, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:time_zone_id, :original_name=>"timeZoneID", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :DateTimeValue=>{:fields=>[{:name=>:value, :type=>"DateTime", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :DateValue=>{:fields=>[{:name=>:value, :type=>"Date", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :DeleteUserTeamAssociations=>{:fields=>[], :base=>"UserTeamAssociationAction"}, :FeatureError=>{:fields=>[{:name=>:reason, :type=>"FeatureError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :InternalApiError=>{:fields=>[{:name=>:reason, :type=>"InternalApiError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NotNullError=>{:fields=>[{:name=>:reason, :type=>"NotNullError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NullError=>{:fields=>[{:name=>:reason, :type=>"NullError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NumberValue=>{:fields=>[{:name=>:value, :type=>"string", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :PermissionError=>{:fields=>[{:name=>:reason, :type=>"PermissionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PublisherQueryLanguageContextError=>{:fields=>[{:name=>:reason, :type=>"PublisherQueryLanguageContextError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PublisherQueryLanguageSyntaxError=>{:fields=>[{:name=>:reason, :type=>"PublisherQueryLanguageSyntaxError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :QuotaError=>{:fields=>[{:name=>:reason, :type=>"QuotaError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :ServerError=>{:fields=>[{:name=>:reason, :type=>"ServerError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :SetValue=>{:fields=>[{:name=>:values, :type=>"Value", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"Value"}, :SoapRequestHeader=>{:fields=>[{:name=>:network_code, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:application_name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:authentication, :type=>"Authentication", :min_occurs=>0, :max_occurs=>1}]}, :SoapResponseHeader=>{:fields=>[{:name=>:request_id, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:response_time, :type=>"long", :min_occurs=>0, :max_occurs=>1}]}, :Statement=>{:fields=>[{:name=>:query, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:values, :type=>"String_ValueMapEntry", :min_occurs=>0, :max_occurs=>:unbounded}]}, :StatementError=>{:fields=>[{:name=>:reason, :type=>"StatementError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :String_ValueMapEntry=>{:fields=>[{:name=>:key, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:value, :type=>"Value", :min_occurs=>0, :max_occurs=>1}]}, :TextValue=>{:fields=>[{:name=>:value, :type=>"string", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :UpdateResult=>{:fields=>[{:name=>:num_changes, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :UserRecordTeamAssociation=>{:fields=>[{:name=>:team_id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:overridden_team_access_type, :type=>"TeamAccessType", :min_occurs=>0, :max_occurs=>1}, {:name=>:default_team_access_type, :type=>"TeamAccessType", :min_occurs=>0, :max_occurs=>1}, {:name=>:user_record_team_association_type, :original_name=>"UserRecordTeamAssociation.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :UserTeamAssociationAction=>{:fields=>[{:name=>:user_team_association_action_type, :original_name=>"UserTeamAssociationAction.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :UserTeamAssociation=>{:fields=>[{:name=>:user_id, :type=>"long", :min_occurs=>0, :max_occurs=>1}], :base=>"UserRecordTeamAssociation"}, :UserTeamAssociationPage=>{:fields=>[{:name=>:total_result_set_size, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:start_index, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:results, :type=>"UserTeamAssociation", :min_occurs=>0, :max_occurs=>:unbounded}]}, :Value=>{:fields=>[{:name=>:value_type, :original_name=>"Value.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :"ApiVersionError.Reason"=>{:fields=>[]}, :"AuthenticationError.Reason"=>{:fields=>[]}, :"CommonError.Reason"=>{:fields=>[]}, :"FeatureError.Reason"=>{:fields=>[]}, :"InternalApiError.Reason"=>{:fields=>[]}, :"NotNullError.Reason"=>{:fields=>[]}, :"NullError.Reason"=>{:fields=>[]}, :"PermissionError.Reason"=>{:fields=>[]}, :"PublisherQueryLanguageContextError.Reason"=>{:fields=>[]}, :"PublisherQueryLanguageSyntaxError.Reason"=>{:fields=>[]}, :"QuotaError.Reason"=>{:fields=>[]}, :"ServerError.Reason"=>{:fields=>[]}, :"StatementError.Reason"=>{:fields=>[]}, :TeamAccessType=>{:fields=>[]}}
16
+ USERTEAMASSOCIATIONSERVICE_NAMESPACES = []
17
+
18
+ def self.get_method_signature(method_name)
19
+ return USERTEAMASSOCIATIONSERVICE_METHODS[method_name.to_sym]
20
+ end
21
+
22
+ def self.get_type_signature(type_name)
23
+ return USERTEAMASSOCIATIONSERVICE_TYPES[type_name.to_sym]
24
+ end
25
+
26
+ def self.get_namespace(index)
27
+ return USERTEAMASSOCIATIONSERVICE_NAMESPACES[index]
28
+ end
29
+ end
30
+
31
+ # Base class for exceptions.
32
+ class ApplicationException < DfpApi::Errors::ApiException
33
+ attr_reader :message # string
34
+ attr_reader :application_exception_type # string
35
+ end
36
+
37
+ # Exception class for holding a list of service errors.
38
+ class ApiException < ApplicationException
39
+ attr_reader :errors # ApiError
40
+ def initialize(exception_fault)
41
+ @array_fields ||= []
42
+ @array_fields << 'errors'
43
+ super(exception_fault, UserTeamAssociationServiceRegistry)
44
+ end
45
+ end
46
+ end; end; end
@@ -0,0 +1,38 @@
1
+ # Encoding: utf-8
2
+ #
3
+ # This is auto-generated code, changes will be overwritten.
4
+ #
5
+ # Copyright:: Copyright 2013, Google Inc. All Rights Reserved.
6
+ # License:: Licensed under the Apache License, Version 2.0.
7
+ #
8
+ # Code generated by AdsCommon library 0.9.6 on 2014-05-19 16:46:33.
9
+
10
+ require 'ads_common/savon_service'
11
+ require 'dfp_api/v201405/workflow_request_service_registry'
12
+
13
+ module DfpApi; module V201405; module WorkflowRequestService
14
+ class WorkflowRequestService < AdsCommon::SavonService
15
+ def initialize(config, endpoint)
16
+ namespace = 'https://www.google.com/apis/ads/publisher/v201405'
17
+ super(config, endpoint, namespace, :v201405)
18
+ end
19
+
20
+ def get_workflow_requests_by_statement(*args, &block)
21
+ return execute_action('get_workflow_requests_by_statement', args, &block)
22
+ end
23
+
24
+ def perform_workflow_request_action(*args, &block)
25
+ return execute_action('perform_workflow_request_action', args, &block)
26
+ end
27
+
28
+ private
29
+
30
+ def get_service_registry()
31
+ return WorkflowRequestServiceRegistry
32
+ end
33
+
34
+ def get_module()
35
+ return DfpApi::V201405::WorkflowRequestService
36
+ end
37
+ end
38
+ end; end; end
@@ -0,0 +1,46 @@
1
+ # Encoding: utf-8
2
+ #
3
+ # This is auto-generated code, changes will be overwritten.
4
+ #
5
+ # Copyright:: Copyright 2013, Google Inc. All Rights Reserved.
6
+ # License:: Licensed under the Apache License, Version 2.0.
7
+ #
8
+ # Code generated by AdsCommon library 0.9.6 on 2014-05-19 16:46:33.
9
+
10
+ require 'dfp_api/errors'
11
+
12
+ module DfpApi; module V201405; module WorkflowRequestService
13
+ class WorkflowRequestServiceRegistry
14
+ WORKFLOWREQUESTSERVICE_METHODS = {:get_workflow_requests_by_statement=>{:input=>[{:name=>:filter_statement, :type=>"Statement", :min_occurs=>0, :max_occurs=>1}], :output=>{:name=>"get_workflow_requests_by_statement_response", :fields=>[{:name=>:rval, :type=>"WorkflowRequestPage", :min_occurs=>0, :max_occurs=>1}]}}, :perform_workflow_request_action=>{:input=>[{:name=>:action, :type=>"WorkflowRequestAction", :min_occurs=>0, :max_occurs=>1}, {:name=>:filter_statement, :type=>"Statement", :min_occurs=>0, :max_occurs=>1}], :output=>{:name=>"perform_workflow_request_action_response", :fields=>[{:name=>:rval, :type=>"UpdateResult", :min_occurs=>0, :max_occurs=>1}]}}}
15
+ WORKFLOWREQUESTSERVICE_TYPES = {:ApiError=>{:fields=>[{:name=>:field_path, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:trigger, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:error_string, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:api_error_type, :original_name=>"ApiError.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :ApiException=>{:fields=>[{:name=>:errors, :type=>"ApiError", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"ApplicationException"}, :ApiVersionError=>{:fields=>[{:name=>:reason, :type=>"ApiVersionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :ApplicationException=>{:fields=>[{:name=>:message, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:application_exception_type, :original_name=>"ApplicationException.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :ApproveWorkflowApprovalRequests=>{:fields=>[], :base=>"WorkflowRequestAction"}, :Authentication=>{:fields=>[{:name=>:authentication_type, :original_name=>"Authentication.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :AuthenticationError=>{:fields=>[{:name=>:reason, :type=>"AuthenticationError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :WorkflowRequest=>{:fields=>[{:name=>:id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:workflow_rule_name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:entity_id, :type=>"long", :min_occurs=>0, :max_occurs=>1}, {:name=>:entity_type, :type=>"WorkflowEntityType", :min_occurs=>0, :max_occurs=>1}, {:name=>:type, :type=>"WorkflowRequestType", :min_occurs=>0, :max_occurs=>1}, {:name=>:workflow_request_type, :original_name=>"WorkflowRequest.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :BooleanValue=>{:fields=>[{:name=>:value, :type=>"boolean", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :CommonError=>{:fields=>[{:name=>:reason, :type=>"CommonError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :Date=>{:fields=>[{:name=>:year, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:month, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:day, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :DateTime=>{:fields=>[{:name=>:date, :type=>"Date", :min_occurs=>0, :max_occurs=>1}, {:name=>:hour, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:minute, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:second, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:time_zone_id, :original_name=>"timeZoneID", :type=>"string", :min_occurs=>0, :max_occurs=>1}]}, :DateTimeValue=>{:fields=>[{:name=>:value, :type=>"DateTime", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :DateValue=>{:fields=>[{:name=>:value, :type=>"Date", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :SkipWorkflowExternalConditionRequests=>{:fields=>[], :base=>"WorkflowRequestAction"}, :FeatureError=>{:fields=>[{:name=>:reason, :type=>"FeatureError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :ForecastError=>{:fields=>[{:name=>:reason, :type=>"ForecastError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :InternalApiError=>{:fields=>[{:name=>:reason, :type=>"InternalApiError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :LineItemOperationError=>{:fields=>[{:name=>:reason, :type=>"LineItemOperationError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NotNullError=>{:fields=>[{:name=>:reason, :type=>"NotNullError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :NumberValue=>{:fields=>[{:name=>:value, :type=>"string", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :TriggerWorkflowExternalConditionRequests=>{:fields=>[], :base=>"WorkflowRequestAction"}, :PermissionError=>{:fields=>[{:name=>:reason, :type=>"PermissionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :ProposalActionError=>{:fields=>[{:name=>:reason, :type=>"ProposalActionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PublisherQueryLanguageContextError=>{:fields=>[{:name=>:reason, :type=>"PublisherQueryLanguageContextError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :PublisherQueryLanguageSyntaxError=>{:fields=>[{:name=>:reason, :type=>"PublisherQueryLanguageSyntaxError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :QuotaError=>{:fields=>[{:name=>:reason, :type=>"QuotaError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :RejectWorkflowApprovalRequests=>{:fields=>[], :base=>"WorkflowRequestAction"}, :ServerError=>{:fields=>[{:name=>:reason, :type=>"ServerError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :SetValue=>{:fields=>[{:name=>:values, :type=>"Value", :min_occurs=>0, :max_occurs=>:unbounded}], :base=>"Value"}, :SoapRequestHeader=>{:fields=>[{:name=>:network_code, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:application_name, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:authentication, :type=>"Authentication", :min_occurs=>0, :max_occurs=>1}]}, :SoapResponseHeader=>{:fields=>[{:name=>:request_id, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:response_time, :type=>"long", :min_occurs=>0, :max_occurs=>1}]}, :Statement=>{:fields=>[{:name=>:query, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:values, :type=>"String_ValueMapEntry", :min_occurs=>0, :max_occurs=>:unbounded}]}, :StatementError=>{:fields=>[{:name=>:reason, :type=>"StatementError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :String_ValueMapEntry=>{:fields=>[{:name=>:key, :type=>"string", :min_occurs=>0, :max_occurs=>1}, {:name=>:value, :type=>"Value", :min_occurs=>0, :max_occurs=>1}]}, :TextValue=>{:fields=>[{:name=>:value, :type=>"string", :min_occurs=>0, :max_occurs=>1}], :base=>"Value"}, :UpdateResult=>{:fields=>[{:name=>:num_changes, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :Value=>{:fields=>[{:name=>:value_type, :original_name=>"Value.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :WorkflowActionError=>{:fields=>[{:name=>:reason, :type=>"WorkflowActionError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :WorkflowApprovalRequest=>{:fields=>[{:name=>:status, :type=>"WorkflowApprovalRequestStatus", :min_occurs=>0, :max_occurs=>1}], :base=>"WorkflowRequest"}, :WorkflowExternalConditionRequest=>{:fields=>[{:name=>:status, :type=>"WorkflowExternalConditionStatus", :min_occurs=>0, :max_occurs=>1}], :base=>"WorkflowRequest"}, :WorkflowRequestAction=>{:fields=>[{:name=>:workflow_request_action_type, :original_name=>"WorkflowRequestAction.Type", :type=>"string", :min_occurs=>0, :max_occurs=>1}], :abstract=>true}, :WorkflowRequestError=>{:fields=>[{:name=>:reason, :type=>"WorkflowRequestError.Reason", :min_occurs=>0, :max_occurs=>1}], :base=>"ApiError"}, :WorkflowRequestPage=>{:fields=>[{:name=>:results, :type=>"WorkflowRequest", :min_occurs=>0, :max_occurs=>:unbounded}, {:name=>:start_index, :type=>"int", :min_occurs=>0, :max_occurs=>1}, {:name=>:total_result_set_size, :type=>"int", :min_occurs=>0, :max_occurs=>1}]}, :"ApiVersionError.Reason"=>{:fields=>[]}, :WorkflowApprovalRequestStatus=>{:fields=>[]}, :"AuthenticationError.Reason"=>{:fields=>[]}, :"CommonError.Reason"=>{:fields=>[]}, :"FeatureError.Reason"=>{:fields=>[]}, :"ForecastError.Reason"=>{:fields=>[]}, :"InternalApiError.Reason"=>{:fields=>[]}, :"LineItemOperationError.Reason"=>{:fields=>[]}, :"NotNullError.Reason"=>{:fields=>[]}, :"PermissionError.Reason"=>{:fields=>[]}, :"ProposalActionError.Reason"=>{:fields=>[]}, :"PublisherQueryLanguageContextError.Reason"=>{:fields=>[]}, :"PublisherQueryLanguageSyntaxError.Reason"=>{:fields=>[]}, :"QuotaError.Reason"=>{:fields=>[]}, :"ServerError.Reason"=>{:fields=>[]}, :"StatementError.Reason"=>{:fields=>[]}, :"WorkflowActionError.Reason"=>{:fields=>[]}, :WorkflowEntityType=>{:fields=>[]}, :"WorkflowRequestError.Reason"=>{:fields=>[]}, :WorkflowRequestType=>{:fields=>[]}, :WorkflowExternalConditionStatus=>{:fields=>[]}}
16
+ WORKFLOWREQUESTSERVICE_NAMESPACES = []
17
+
18
+ def self.get_method_signature(method_name)
19
+ return WORKFLOWREQUESTSERVICE_METHODS[method_name.to_sym]
20
+ end
21
+
22
+ def self.get_type_signature(type_name)
23
+ return WORKFLOWREQUESTSERVICE_TYPES[type_name.to_sym]
24
+ end
25
+
26
+ def self.get_namespace(index)
27
+ return WORKFLOWREQUESTSERVICE_NAMESPACES[index]
28
+ end
29
+ end
30
+
31
+ # Base class for exceptions.
32
+ class ApplicationException < DfpApi::Errors::ApiException
33
+ attr_reader :message # string
34
+ attr_reader :application_exception_type # string
35
+ end
36
+
37
+ # Exception class for holding a list of service errors.
38
+ class ApiException < ApplicationException
39
+ attr_reader :errors # ApiError
40
+ def initialize(exception_fault)
41
+ @array_fields ||= []
42
+ @array_fields << 'errors'
43
+ super(exception_fault, WorkflowRequestServiceRegistry)
44
+ end
45
+ end
46
+ end; end; end
@@ -21,6 +21,6 @@
21
21
 
22
22
  module DfpApi
23
23
  module ApiConfig
24
- CLIENT_LIB_VERSION = '0.8.0'
24
+ CLIENT_LIB_VERSION = '0.8.1'
25
25
  end
26
26
  end
@@ -24,12 +24,12 @@ require 'savon'
24
24
  require 'test/unit'
25
25
 
26
26
  require 'ads_common/results_extractor'
27
- require 'dfp_api/v201311/line_item_service_registry'
27
+ require 'dfp_api/v201405/line_item_service_registry'
28
28
 
29
29
  class TestDfpIssue16 < Test::Unit::TestCase
30
30
 
31
31
  def setup()
32
- @registry = DfpApi::v201311::LineItemService::LineItemServiceRegistry
32
+ @registry = DfpApi::v201405::LineItemService::LineItemServiceRegistry
33
33
  end
34
34
 
35
35
  def test_issue_16()
@@ -99,7 +99,7 @@ class TestDfpApi < Test::Unit::TestCase
99
99
  :authentication => {:method => 'ClientLogin'},
100
100
  :service => {:environment => 'PRODUCTION'}
101
101
  })
102
- service = dfp_api.service(:UserService)
102
+ service = dfp_api.service(:UserService, 'v201311')
103
103
  assert_not_nil(@logger.last_warning)
104
104
  end
105
105
 
@@ -110,7 +110,11 @@ class TestDfpApi < Test::Unit::TestCase
110
110
  :authentication => {:method => 'ClientLogin'},
111
111
  :service => {:environment => 'PRODUCTION'}
112
112
  })
113
- assert_nothing_raised(dfp_api.service(:UserService, 'v201311'))
114
- assert_raise(dfp_api.service(:UserService, 'v201403'))
113
+ assert_nothing_raised do
114
+ service = dfp_api.service(:UserService, 'v201311')
115
+ end
116
+ assert_raise(AdsCommon::Errors::AuthError) do
117
+ dfp_api.service(:UserService, 'v201403')
118
+ end
115
119
  end
116
120
  end
metadata CHANGED
@@ -1,27 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-dfp-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
5
- prerelease:
4
+ version: 0.8.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Danial Klimkin
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-03-05 00:00:00.000000000 Z
11
+ date: 2014-06-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: google-ads-common
16
- requirement: &17199160 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
21
19
  version: 0.9.4
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *17199160
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.4
25
27
  description: google-dfp-api is a DFP API client library for Ruby
26
28
  email:
27
29
  - api.dklimkin@gmail.com
@@ -29,822 +31,1720 @@ executables: []
29
31
  extensions: []
30
32
  extra_rdoc_files: []
31
33
  files:
32
- - examples/v201308/common/oauth2_jwt_handling.rb
33
- - examples/v201308/common/setup_oauth2.rb
34
- - examples/v201403/label_service/get_labels_by_statement.rb
35
- - examples/v201403/label_service/get_all_labels.rb
36
- - examples/v201403/label_service/deactivate_labels.rb
37
- - examples/v201403/label_service/update_labels.rb
38
- - examples/v201403/label_service/create_labels.rb
39
- - examples/v201403/line_item_creative_association_service/create_licas.rb
40
- - examples/v201403/line_item_creative_association_service/get_all_licas.rb
41
- - examples/v201403/line_item_creative_association_service/get_licas_by_statement.rb
42
- - examples/v201403/line_item_creative_association_service/deactivate_licas.rb
43
- - examples/v201403/line_item_creative_association_service/update_licas.rb
44
- - examples/v201403/custom_field_service/create_custom_fields.rb
45
- - examples/v201403/custom_field_service/get_all_custom_fields.rb
46
- - examples/v201403/custom_field_service/deactivate_all_line_item_custom_fields.rb
47
- - examples/v201403/custom_field_service/update_custom_fields.rb
48
- - examples/v201403/custom_field_service/create_custom_field_options.rb
49
- - examples/v201403/custom_field_service/set_line_item_custom_field_value.rb
50
- - examples/v201403/custom_field_service/get_all_line_item_custom_fields.rb
51
- - examples/v201403/creative_template_service/get_creative_templates_by_statement.rb
52
- - examples/v201403/creative_template_service/get_creative_template.rb
53
- - examples/v201403/creative_template_service/get_all_creative_templates.rb
54
- - examples/v201403/activity_service/create_activities.rb
55
- - examples/v201403/activity_service/update_activities.rb
56
- - examples/v201403/activity_service/get_all_activities.rb
57
- - examples/v201403/activity_service/get_active_activities.rb
58
- - examples/v201403/team_service/get_all_teams.rb
59
- - examples/v201403/team_service/create_teams.rb
60
- - examples/v201403/team_service/get_teams_by_statement.rb
61
- - examples/v201403/team_service/update_teams.rb
62
- - examples/v201403/activity_group_service/update_activity_groups.rb
63
- - examples/v201403/activity_group_service/get_all_activity_groups.rb
64
- - examples/v201403/activity_group_service/create_activity_groups.rb
65
- - examples/v201403/activity_group_service/get_active_activity_groups.rb
66
- - examples/v201403/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
67
- - examples/v201403/suggested_ad_unit_service/get_suggested_ad_unit.rb
68
- - examples/v201403/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
69
- - examples/v201403/suggested_ad_unit_service/get_all_suggested_ad_units.rb
70
- - examples/v201403/placement_service/update_placements.rb
71
- - examples/v201403/placement_service/get_all_placements.rb
72
- - examples/v201403/placement_service/create_placements.rb
73
- - examples/v201403/placement_service/get_placements_by_statement.rb
74
- - examples/v201403/placement_service/deactivate_placements.rb
75
- - examples/v201403/audience_segment_service/get_first_party_audience_segments.rb
76
- - examples/v201403/audience_segment_service/populate_first_party_audience_segments.rb
77
- - examples/v201403/audience_segment_service/update_audience_segments.rb
78
- - examples/v201403/audience_segment_service/create_audience_segments.rb
79
- - examples/v201403/audience_segment_service/get_all_audience_segments.rb
80
- - examples/v201403/contact_service/create_contacts.rb
81
- - examples/v201403/contact_service/get_all_contacts.rb
82
- - examples/v201403/contact_service/update_contacts.rb
83
- - examples/v201403/contact_service/get_uninvited_contacts.rb
84
- - examples/v201403/report_service/run_report_with_custom_fields.rb
85
- - examples/v201403/report_service/run_reach_report.rb
86
- - examples/v201403/report_service/download_report.rb
87
- - examples/v201403/report_service/run_merged_delivery_report.rb
88
- - examples/v201403/report_service/run_delivery_report.rb
89
- - examples/v201403/report_service/run_sales_report.rb
90
- - examples/v201403/report_service/display_report.rb
91
- - examples/v201403/report_service/run_inventory_report.rb
92
- - examples/v201403/common/oauth2_jwt_handling.rb
93
- - examples/v201403/common/error_handling.rb
94
- - examples/v201403/common/setup_oauth2.rb
95
- - examples/v201403/user_service/deactivate_users.rb
96
- - examples/v201403/user_service/get_current_user.rb
97
- - examples/v201403/user_service/get_all_users.rb
98
- - examples/v201403/user_service/create_users.rb
99
- - examples/v201403/user_service/get_all_roles.rb
100
- - examples/v201403/user_service/update_users.rb
101
- - examples/v201403/user_service/get_users_by_statement.rb
102
- - examples/v201403/network_service/get_current_network.rb
103
- - examples/v201403/network_service/get_all_networks.rb
104
- - examples/v201403/network_service/make_test_network.rb
105
- - examples/v201403/content_service/get_content_by_category.rb
106
- - examples/v201403/content_service/get_all_content.rb
107
- - examples/v201403/user_team_association_service/update_user_team_associations.rb
108
- - examples/v201403/user_team_association_service/get_all_user_team_associations.rb
109
- - examples/v201403/user_team_association_service/create_user_team_associations.rb
110
- - examples/v201403/user_team_association_service/delete_user_team_associations.rb
111
- - examples/v201403/user_team_association_service/get_user_team_associations_by_statement.rb
112
- - examples/v201403/creative_wrapper_service/update_creative_wrappers.rb
113
- - examples/v201403/creative_wrapper_service/get_all_creative_wrappers.rb
114
- - examples/v201403/creative_wrapper_service/deactivate_creative_wrapper.rb
115
- - examples/v201403/creative_wrapper_service/get_creative_wrappers_by_statement.rb
116
- - examples/v201403/creative_wrapper_service/create_creative_wrappers.rb
117
- - examples/v201403/custom_targeting_service/delete_custom_targeting_values.rb
118
- - examples/v201403/custom_targeting_service/update_custom_targeting_keys.rb
119
- - examples/v201403/custom_targeting_service/delete_custom_targeting_keys.rb
120
- - examples/v201403/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
121
- - examples/v201403/custom_targeting_service/update_custom_targeting_values.rb
122
- - examples/v201403/custom_targeting_service/get_custom_targeting_values_by_statement.rb
123
- - examples/v201403/custom_targeting_service/create_custom_targeting_keys_and_values.rb
124
- - examples/v201403/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
125
- - examples/v201403/creative_set_service/create_creative_set.rb
126
- - examples/v201403/creative_set_service/get_creative_sets_by_statement.rb
127
- - examples/v201403/creative_set_service/update_creative_sets.rb
128
- - examples/v201403/creative_set_service/get_all_creative_sets.rb
129
- - examples/v201403/creative_set_service/associate_creative_set_to_line_item.rb
130
- - examples/v201403/publisher_query_language_service/fetch_match_tables.rb
131
- - examples/v201403/publisher_query_language_service/get_geo_targets.rb
132
- - examples/v201403/publisher_query_language_service/get_line_items_named_like.rb
133
- - examples/v201403/publisher_query_language_service/get_all_line_items.rb
134
- - examples/v201403/content_metadata_key_hierarchy_service/update_content_metadata_key_hierarchies.rb
135
- - examples/v201403/content_metadata_key_hierarchy_service/delete_content_metadata_key_hierarchies.rb
136
- - examples/v201403/content_metadata_key_hierarchy_service/get_all_content_metadata_key_hierarchies.rb
137
- - examples/v201403/content_metadata_key_hierarchy_service/create_content_metadata_key_hierarchies.rb
138
- - examples/v201403/creative_service/get_all_creatives.rb
139
- - examples/v201403/creative_service/copy_image_creatives.rb
140
- - examples/v201403/creative_service/get_creatives_by_statement.rb
141
- - examples/v201403/creative_service/create_creative_from_template.rb
142
- - examples/v201403/creative_service/update_creatives.rb
143
- - examples/v201403/creative_service/create_custom_creative.rb
144
- - examples/v201403/creative_service/create_creatives.rb
145
- - examples/v201403/order_service/approve_orders.rb
146
- - examples/v201403/order_service/get_orders_by_statement.rb
147
- - examples/v201403/order_service/update_orders.rb
148
- - examples/v201403/order_service/create_orders.rb
149
- - examples/v201403/order_service/get_all_orders.rb
150
- - examples/v201403/line_item_service/create_mobile_line_item.rb
151
- - examples/v201403/line_item_service/get_recently_updated_line_items.rb
152
- - examples/v201403/line_item_service/update_line_items.rb
153
- - examples/v201403/line_item_service/target_custom_criteria.rb
154
- - examples/v201403/line_item_service/activate_line_items.rb
155
- - examples/v201403/line_item_service/get_line_items_by_statement.rb
156
- - examples/v201403/line_item_service/create_line_items.rb
157
- - examples/v201403/line_item_service/create_video_line_item.rb
158
- - examples/v201403/line_item_service/get_all_line_items.rb
159
- - examples/v201403/inventory_service/create_mobile_ad_unit.rb
160
- - examples/v201403/inventory_service/get_all_ad_units.rb
161
- - examples/v201403/inventory_service/create_video_ad_unit.rb
162
- - examples/v201403/inventory_service/deactivate_ad_units.rb
163
- - examples/v201403/inventory_service/get_ad_units_by_statement.rb
164
- - examples/v201403/inventory_service/create_ad_units.rb
165
- - examples/v201403/inventory_service/get_ad_unit_sizes.rb
166
- - examples/v201403/inventory_service/update_ad_units.rb
167
- - examples/v201403/company_service/get_companies_by_statement.rb
168
- - examples/v201403/company_service/create_companies.rb
169
- - examples/v201403/company_service/update_companies.rb
170
- - examples/v201403/company_service/get_all_companies.rb
171
- - examples/v201403/forecast_service/get_forecast_by_id.rb
172
- - examples/v201403/forecast_service/get_forecast.rb
173
- - examples/v201306/common/oauth2_jwt_handling.rb
174
- - examples/v201306/common/setup_oauth2.rb
34
+ - COPYING
35
+ - ChangeLog
36
+ - README.md
37
+ - dfp_api.yml
38
+ - examples/v201208/audience_segment_service/get_all_audience_segments.rb
39
+ - examples/v201208/common/error_handling.rb
40
+ - examples/v201208/common/setup_oauth2.rb
41
+ - examples/v201208/company_service/create_companies.rb
42
+ - examples/v201208/company_service/get_all_companies.rb
43
+ - examples/v201208/company_service/get_companies_by_statement.rb
44
+ - examples/v201208/company_service/get_company.rb
45
+ - examples/v201208/company_service/update_companies.rb
46
+ - examples/v201208/content_service/get_all_content.rb
47
+ - examples/v201208/content_service/get_content_by_category.rb
48
+ - examples/v201208/creative_service/copy_image_creatives.rb
49
+ - examples/v201208/creative_service/create_creative_from_template.rb
50
+ - examples/v201208/creative_service/create_creatives.rb
51
+ - examples/v201208/creative_service/create_custom_creative.rb
52
+ - examples/v201208/creative_service/get_all_creatives.rb
53
+ - examples/v201208/creative_service/get_creative.rb
54
+ - examples/v201208/creative_service/get_creatives_by_statement.rb
55
+ - examples/v201208/creative_service/update_creatives.rb
56
+ - examples/v201208/creative_set_service/associate_creative_set_to_line_item.rb
57
+ - examples/v201208/creative_set_service/create_creative_set.rb
58
+ - examples/v201208/creative_set_service/get_all_creative_sets.rb
59
+ - examples/v201208/creative_set_service/get_creative_sets_by_statement.rb
60
+ - examples/v201208/creative_set_service/update_creative_sets.rb
61
+ - examples/v201208/creative_template_service/get_all_creative_templates.rb
62
+ - examples/v201208/creative_template_service/get_creative_template.rb
63
+ - examples/v201208/creative_template_service/get_creative_templates_by_statement.rb
64
+ - examples/v201208/custom_field_service/create_custom_field_options.rb
65
+ - examples/v201208/custom_field_service/create_custom_fields.rb
66
+ - examples/v201208/custom_field_service/deactivate_all_line_item_custom_fields.rb
67
+ - examples/v201208/custom_field_service/get_all_custom_fields.rb
68
+ - examples/v201208/custom_field_service/get_all_line_item_custom_fields.rb
69
+ - examples/v201208/custom_field_service/set_line_item_custom_field_value.rb
70
+ - examples/v201208/custom_field_service/update_custom_fields.rb
71
+ - examples/v201208/custom_targeting_service/create_custom_targeting_keys_and_values.rb
72
+ - examples/v201208/custom_targeting_service/delete_custom_targeting_keys.rb
73
+ - examples/v201208/custom_targeting_service/delete_custom_targeting_values.rb
74
+ - examples/v201208/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
75
+ - examples/v201208/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
76
+ - examples/v201208/custom_targeting_service/get_custom_targeting_values_by_statement.rb
77
+ - examples/v201208/custom_targeting_service/update_custom_targeting_keys.rb
78
+ - examples/v201208/custom_targeting_service/update_custom_targeting_values.rb
79
+ - examples/v201208/forecast_service/get_forecast.rb
80
+ - examples/v201208/forecast_service/get_forecast_by_id.rb
81
+ - examples/v201208/inventory_service/create_ad_units.rb
82
+ - examples/v201208/inventory_service/create_mobile_ad_unit.rb
83
+ - examples/v201208/inventory_service/create_video_ad_unit.rb
84
+ - examples/v201208/inventory_service/deactivate_ad_units.rb
85
+ - examples/v201208/inventory_service/get_ad_unit.rb
86
+ - examples/v201208/inventory_service/get_ad_unit_sizes.rb
87
+ - examples/v201208/inventory_service/get_ad_units_by_statement.rb
88
+ - examples/v201208/inventory_service/get_all_ad_units.rb
89
+ - examples/v201208/inventory_service/update_ad_units.rb
90
+ - examples/v201208/label_service/create_labels.rb
91
+ - examples/v201208/label_service/deactivate_labels.rb
92
+ - examples/v201208/label_service/get_all_labels.rb
93
+ - examples/v201208/label_service/get_label.rb
94
+ - examples/v201208/label_service/get_labels_by_statement.rb
95
+ - examples/v201208/label_service/update_labels.rb
96
+ - examples/v201208/line_item_creative_association_service/create_licas.rb
97
+ - examples/v201208/line_item_creative_association_service/deactivate_licas.rb
98
+ - examples/v201208/line_item_creative_association_service/get_all_licas.rb
99
+ - examples/v201208/line_item_creative_association_service/get_lica.rb
100
+ - examples/v201208/line_item_creative_association_service/get_licas_by_statement.rb
101
+ - examples/v201208/line_item_creative_association_service/update_licas.rb
102
+ - examples/v201208/line_item_service/activate_line_items.rb
103
+ - examples/v201208/line_item_service/create_line_items.rb
104
+ - examples/v201208/line_item_service/create_mobile_line_item.rb
105
+ - examples/v201208/line_item_service/create_video_line_item.rb
106
+ - examples/v201208/line_item_service/get_all_line_items.rb
107
+ - examples/v201208/line_item_service/get_line_item.rb
108
+ - examples/v201208/line_item_service/get_line_items_by_statement.rb
109
+ - examples/v201208/line_item_service/get_recently_updated_line_items.rb
110
+ - examples/v201208/line_item_service/target_custom_criteria.rb
111
+ - examples/v201208/line_item_service/update_line_items.rb
112
+ - examples/v201208/network_service/get_all_networks.rb
113
+ - examples/v201208/network_service/get_current_network.rb
114
+ - examples/v201208/network_service/make_test_network.rb
115
+ - examples/v201208/order_service/approve_orders.rb
116
+ - examples/v201208/order_service/create_orders.rb
117
+ - examples/v201208/order_service/get_all_orders.rb
118
+ - examples/v201208/order_service/get_order.rb
119
+ - examples/v201208/order_service/get_orders_by_statement.rb
120
+ - examples/v201208/order_service/update_orders.rb
121
+ - examples/v201208/placement_service/create_placements.rb
122
+ - examples/v201208/placement_service/deactivate_placements.rb
123
+ - examples/v201208/placement_service/get_all_placements.rb
124
+ - examples/v201208/placement_service/get_placement.rb
125
+ - examples/v201208/placement_service/get_placements_by_statement.rb
126
+ - examples/v201208/placement_service/update_placements.rb
127
+ - examples/v201208/publisher_query_language_service/get_all_cities.rb
128
+ - examples/v201208/report_service/download_report.rb
129
+ - examples/v201208/report_service/run_delivery_report.rb
130
+ - examples/v201208/report_service/run_inventory_report.rb
131
+ - examples/v201208/report_service/run_merged_delivery_report.rb
132
+ - examples/v201208/report_service/run_report_with_custom_fields.rb
133
+ - examples/v201208/report_service/run_sales_report.rb
134
+ - examples/v201208/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
135
+ - examples/v201208/suggested_ad_unit_service/get_all_suggested_ad_units.rb
136
+ - examples/v201208/suggested_ad_unit_service/get_suggested_ad_unit.rb
137
+ - examples/v201208/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
138
+ - examples/v201208/team_service/create_teams.rb
139
+ - examples/v201208/team_service/get_all_teams.rb
140
+ - examples/v201208/team_service/get_team.rb
141
+ - examples/v201208/team_service/get_teams_by_statement.rb
142
+ - examples/v201208/team_service/update_teams.rb
143
+ - examples/v201208/third_party_slot_service/archive_third_party_slots.rb
144
+ - examples/v201208/third_party_slot_service/create_third_party_slot.rb
145
+ - examples/v201208/third_party_slot_service/get_all_third_party_slots.rb
146
+ - examples/v201208/third_party_slot_service/get_third_party_slot_by_statement.rb
147
+ - examples/v201208/third_party_slot_service/update_third_party_slots.rb
148
+ - examples/v201208/user_service/create_users.rb
149
+ - examples/v201208/user_service/deactivate_users.rb
150
+ - examples/v201208/user_service/get_all_roles.rb
151
+ - examples/v201208/user_service/get_all_users.rb
152
+ - examples/v201208/user_service/get_current_user.rb
153
+ - examples/v201208/user_service/get_user.rb
154
+ - examples/v201208/user_service/get_users_by_statement.rb
155
+ - examples/v201208/user_service/update_users.rb
156
+ - examples/v201208/user_team_association_service/create_user_team_associations.rb
157
+ - examples/v201208/user_team_association_service/delete_user_team_associations.rb
158
+ - examples/v201208/user_team_association_service/get_all_user_team_associations.rb
159
+ - examples/v201208/user_team_association_service/get_user_team_association.rb
160
+ - examples/v201208/user_team_association_service/get_user_team_associations_by_statement.rb
161
+ - examples/v201208/user_team_association_service/update_user_team_associations.rb
162
+ - examples/v201211/audience_segment_service/get_all_audience_segments.rb
163
+ - examples/v201211/common/error_handling.rb
175
164
  - examples/v201211/common/oauth2_jwt_handling.rb
176
165
  - examples/v201211/common/setup_oauth2.rb
177
- - examples/v201311/label_service/get_labels_by_statement.rb
178
- - examples/v201311/label_service/get_label.rb
179
- - examples/v201311/label_service/get_all_labels.rb
180
- - examples/v201311/label_service/deactivate_labels.rb
181
- - examples/v201311/label_service/update_labels.rb
182
- - examples/v201311/label_service/create_labels.rb
183
- - examples/v201311/line_item_creative_association_service/create_licas.rb
184
- - examples/v201311/line_item_creative_association_service/get_all_licas.rb
185
- - examples/v201311/line_item_creative_association_service/get_licas_by_statement.rb
186
- - examples/v201311/line_item_creative_association_service/get_lica.rb
187
- - examples/v201311/line_item_creative_association_service/deactivate_licas.rb
188
- - examples/v201311/line_item_creative_association_service/update_licas.rb
189
- - examples/v201311/custom_field_service/create_custom_fields.rb
190
- - examples/v201311/custom_field_service/get_all_custom_fields.rb
191
- - examples/v201311/custom_field_service/deactivate_all_line_item_custom_fields.rb
192
- - examples/v201311/custom_field_service/update_custom_fields.rb
193
- - examples/v201311/custom_field_service/create_custom_field_options.rb
194
- - examples/v201311/custom_field_service/set_line_item_custom_field_value.rb
195
- - examples/v201311/custom_field_service/get_all_line_item_custom_fields.rb
196
- - examples/v201311/creative_template_service/get_creative_templates_by_statement.rb
197
- - examples/v201311/creative_template_service/get_creative_template.rb
198
- - examples/v201311/creative_template_service/get_all_creative_templates.rb
199
- - examples/v201311/activity_service/create_activities.rb
200
- - examples/v201311/activity_service/update_activities.rb
201
- - examples/v201311/activity_service/get_all_activities.rb
202
- - examples/v201311/activity_service/get_active_activities.rb
203
- - examples/v201311/team_service/get_all_teams.rb
204
- - examples/v201311/team_service/get_team.rb
205
- - examples/v201311/team_service/create_teams.rb
206
- - examples/v201311/team_service/get_teams_by_statement.rb
207
- - examples/v201311/team_service/update_teams.rb
208
- - examples/v201311/activity_group_service/update_activity_groups.rb
209
- - examples/v201311/activity_group_service/get_all_activity_groups.rb
166
+ - examples/v201211/company_service/create_companies.rb
167
+ - examples/v201211/company_service/get_all_companies.rb
168
+ - examples/v201211/company_service/get_companies_by_statement.rb
169
+ - examples/v201211/company_service/get_company.rb
170
+ - examples/v201211/company_service/update_companies.rb
171
+ - examples/v201211/content_service/get_all_content.rb
172
+ - examples/v201211/content_service/get_content_by_category.rb
173
+ - examples/v201211/creative_service/copy_image_creatives.rb
174
+ - examples/v201211/creative_service/create_creative_from_template.rb
175
+ - examples/v201211/creative_service/create_creatives.rb
176
+ - examples/v201211/creative_service/create_custom_creative.rb
177
+ - examples/v201211/creative_service/get_all_creatives.rb
178
+ - examples/v201211/creative_service/get_creative.rb
179
+ - examples/v201211/creative_service/get_creatives_by_statement.rb
180
+ - examples/v201211/creative_service/update_creatives.rb
181
+ - examples/v201211/creative_set_service/associate_creative_set_to_line_item.rb
182
+ - examples/v201211/creative_set_service/create_creative_set.rb
183
+ - examples/v201211/creative_set_service/get_all_creative_sets.rb
184
+ - examples/v201211/creative_set_service/get_creative_sets_by_statement.rb
185
+ - examples/v201211/creative_set_service/update_creative_sets.rb
186
+ - examples/v201211/creative_template_service/get_all_creative_templates.rb
187
+ - examples/v201211/creative_template_service/get_creative_template.rb
188
+ - examples/v201211/creative_template_service/get_creative_templates_by_statement.rb
189
+ - examples/v201211/creative_wrapper_service/create_creative_wrappers.rb
190
+ - examples/v201211/creative_wrapper_service/deactivate_creative_wrapper.rb
191
+ - examples/v201211/creative_wrapper_service/get_all_creative_wrappers.rb
192
+ - examples/v201211/creative_wrapper_service/get_creative_wrappers_by_statement.rb
193
+ - examples/v201211/creative_wrapper_service/update_creative_wrappers.rb
194
+ - examples/v201211/custom_field_service/create_custom_field_options.rb
195
+ - examples/v201211/custom_field_service/create_custom_fields.rb
196
+ - examples/v201211/custom_field_service/deactivate_all_line_item_custom_fields.rb
197
+ - examples/v201211/custom_field_service/get_all_custom_fields.rb
198
+ - examples/v201211/custom_field_service/get_all_line_item_custom_fields.rb
199
+ - examples/v201211/custom_field_service/set_line_item_custom_field_value.rb
200
+ - examples/v201211/custom_field_service/update_custom_fields.rb
201
+ - examples/v201211/custom_targeting_service/create_custom_targeting_keys_and_values.rb
202
+ - examples/v201211/custom_targeting_service/delete_custom_targeting_keys.rb
203
+ - examples/v201211/custom_targeting_service/delete_custom_targeting_values.rb
204
+ - examples/v201211/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
205
+ - examples/v201211/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
206
+ - examples/v201211/custom_targeting_service/get_custom_targeting_values_by_statement.rb
207
+ - examples/v201211/custom_targeting_service/update_custom_targeting_keys.rb
208
+ - examples/v201211/custom_targeting_service/update_custom_targeting_values.rb
209
+ - examples/v201211/forecast_service/get_forecast.rb
210
+ - examples/v201211/forecast_service/get_forecast_by_id.rb
211
+ - examples/v201211/inventory_service/create_ad_units.rb
212
+ - examples/v201211/inventory_service/create_mobile_ad_unit.rb
213
+ - examples/v201211/inventory_service/create_video_ad_unit.rb
214
+ - examples/v201211/inventory_service/deactivate_ad_units.rb
215
+ - examples/v201211/inventory_service/get_ad_unit.rb
216
+ - examples/v201211/inventory_service/get_ad_unit_sizes.rb
217
+ - examples/v201211/inventory_service/get_ad_units_by_statement.rb
218
+ - examples/v201211/inventory_service/get_all_ad_units.rb
219
+ - examples/v201211/inventory_service/update_ad_units.rb
220
+ - examples/v201211/label_service/create_labels.rb
221
+ - examples/v201211/label_service/deactivate_labels.rb
222
+ - examples/v201211/label_service/get_all_labels.rb
223
+ - examples/v201211/label_service/get_label.rb
224
+ - examples/v201211/label_service/get_labels_by_statement.rb
225
+ - examples/v201211/label_service/update_labels.rb
226
+ - examples/v201211/line_item_creative_association_service/create_licas.rb
227
+ - examples/v201211/line_item_creative_association_service/deactivate_licas.rb
228
+ - examples/v201211/line_item_creative_association_service/get_all_licas.rb
229
+ - examples/v201211/line_item_creative_association_service/get_lica.rb
230
+ - examples/v201211/line_item_creative_association_service/get_licas_by_statement.rb
231
+ - examples/v201211/line_item_creative_association_service/update_licas.rb
232
+ - examples/v201211/line_item_service/activate_line_items.rb
233
+ - examples/v201211/line_item_service/create_line_items.rb
234
+ - examples/v201211/line_item_service/create_mobile_line_item.rb
235
+ - examples/v201211/line_item_service/create_video_line_item.rb
236
+ - examples/v201211/line_item_service/get_all_line_items.rb
237
+ - examples/v201211/line_item_service/get_line_item.rb
238
+ - examples/v201211/line_item_service/get_line_items_by_statement.rb
239
+ - examples/v201211/line_item_service/get_recently_updated_line_items.rb
240
+ - examples/v201211/line_item_service/target_custom_criteria.rb
241
+ - examples/v201211/line_item_service/update_line_items.rb
242
+ - examples/v201211/network_service/get_all_networks.rb
243
+ - examples/v201211/network_service/get_current_network.rb
244
+ - examples/v201211/network_service/make_test_network.rb
245
+ - examples/v201211/order_service/approve_orders.rb
246
+ - examples/v201211/order_service/create_orders.rb
247
+ - examples/v201211/order_service/get_all_orders.rb
248
+ - examples/v201211/order_service/get_order.rb
249
+ - examples/v201211/order_service/get_orders_by_statement.rb
250
+ - examples/v201211/order_service/update_orders.rb
251
+ - examples/v201211/placement_service/create_placements.rb
252
+ - examples/v201211/placement_service/deactivate_placements.rb
253
+ - examples/v201211/placement_service/get_all_placements.rb
254
+ - examples/v201211/placement_service/get_placement.rb
255
+ - examples/v201211/placement_service/get_placements_by_statement.rb
256
+ - examples/v201211/placement_service/update_placements.rb
257
+ - examples/v201211/publisher_query_language_service/get_all_cities.rb
258
+ - examples/v201211/report_service/download_report.rb
259
+ - examples/v201211/report_service/run_delivery_report.rb
260
+ - examples/v201211/report_service/run_inventory_report.rb
261
+ - examples/v201211/report_service/run_merged_delivery_report.rb
262
+ - examples/v201211/report_service/run_report_with_custom_fields.rb
263
+ - examples/v201211/report_service/run_sales_report.rb
264
+ - examples/v201211/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
265
+ - examples/v201211/suggested_ad_unit_service/get_all_suggested_ad_units.rb
266
+ - examples/v201211/suggested_ad_unit_service/get_suggested_ad_unit.rb
267
+ - examples/v201211/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
268
+ - examples/v201211/team_service/create_teams.rb
269
+ - examples/v201211/team_service/get_all_teams.rb
270
+ - examples/v201211/team_service/get_team.rb
271
+ - examples/v201211/team_service/get_teams_by_statement.rb
272
+ - examples/v201211/team_service/update_teams.rb
273
+ - examples/v201211/third_party_slot_service/archive_third_party_slots.rb
274
+ - examples/v201211/third_party_slot_service/create_third_party_slot.rb
275
+ - examples/v201211/third_party_slot_service/get_all_third_party_slots.rb
276
+ - examples/v201211/third_party_slot_service/get_third_party_slot_by_statement.rb
277
+ - examples/v201211/third_party_slot_service/update_third_party_slots.rb
278
+ - examples/v201211/user_service/create_users.rb
279
+ - examples/v201211/user_service/deactivate_users.rb
280
+ - examples/v201211/user_service/get_all_roles.rb
281
+ - examples/v201211/user_service/get_all_users.rb
282
+ - examples/v201211/user_service/get_current_user.rb
283
+ - examples/v201211/user_service/get_user.rb
284
+ - examples/v201211/user_service/get_users_by_statement.rb
285
+ - examples/v201211/user_service/update_users.rb
286
+ - examples/v201211/user_team_association_service/create_user_team_associations.rb
287
+ - examples/v201211/user_team_association_service/delete_user_team_associations.rb
288
+ - examples/v201211/user_team_association_service/get_all_user_team_associations.rb
289
+ - examples/v201211/user_team_association_service/get_user_team_association.rb
290
+ - examples/v201211/user_team_association_service/get_user_team_associations_by_statement.rb
291
+ - examples/v201211/user_team_association_service/update_user_team_associations.rb
292
+ - examples/v201302/activity_group_service/create_activity_groups.rb
293
+ - examples/v201302/activity_group_service/get_active_activity_groups.rb
294
+ - examples/v201302/activity_group_service/get_all_activity_groups.rb
295
+ - examples/v201302/activity_group_service/update_activity_groups.rb
296
+ - examples/v201302/activity_service/create_activities.rb
297
+ - examples/v201302/activity_service/get_active_activities.rb
298
+ - examples/v201302/activity_service/get_all_activities.rb
299
+ - examples/v201302/activity_service/update_activities.rb
300
+ - examples/v201302/audience_segment_service/get_all_audience_segments.rb
301
+ - examples/v201302/common/error_handling.rb
302
+ - examples/v201302/common/oauth2_jwt_handling.rb
303
+ - examples/v201302/common/setup_oauth2.rb
304
+ - examples/v201302/company_service/create_companies.rb
305
+ - examples/v201302/company_service/get_all_companies.rb
306
+ - examples/v201302/company_service/get_companies_by_statement.rb
307
+ - examples/v201302/company_service/get_company.rb
308
+ - examples/v201302/company_service/update_companies.rb
309
+ - examples/v201302/contact_service/create_contacts.rb
310
+ - examples/v201302/contact_service/get_all_contacts.rb
311
+ - examples/v201302/contact_service/get_uninvited_contacts.rb
312
+ - examples/v201302/contact_service/update_contacts.rb
313
+ - examples/v201302/content_service/get_all_content.rb
314
+ - examples/v201302/content_service/get_content_by_category.rb
315
+ - examples/v201302/creative_service/copy_image_creatives.rb
316
+ - examples/v201302/creative_service/create_creative_from_template.rb
317
+ - examples/v201302/creative_service/create_creatives.rb
318
+ - examples/v201302/creative_service/create_custom_creative.rb
319
+ - examples/v201302/creative_service/get_all_creatives.rb
320
+ - examples/v201302/creative_service/get_creative.rb
321
+ - examples/v201302/creative_service/get_creatives_by_statement.rb
322
+ - examples/v201302/creative_service/update_creatives.rb
323
+ - examples/v201302/creative_set_service/associate_creative_set_to_line_item.rb
324
+ - examples/v201302/creative_set_service/create_creative_set.rb
325
+ - examples/v201302/creative_set_service/get_all_creative_sets.rb
326
+ - examples/v201302/creative_set_service/get_creative_sets_by_statement.rb
327
+ - examples/v201302/creative_set_service/update_creative_sets.rb
328
+ - examples/v201302/creative_template_service/get_all_creative_templates.rb
329
+ - examples/v201302/creative_template_service/get_creative_template.rb
330
+ - examples/v201302/creative_template_service/get_creative_templates_by_statement.rb
331
+ - examples/v201302/creative_wrapper_service/create_creative_wrappers.rb
332
+ - examples/v201302/creative_wrapper_service/deactivate_creative_wrapper.rb
333
+ - examples/v201302/creative_wrapper_service/get_all_creative_wrappers.rb
334
+ - examples/v201302/creative_wrapper_service/get_creative_wrappers_by_statement.rb
335
+ - examples/v201302/creative_wrapper_service/update_creative_wrappers.rb
336
+ - examples/v201302/custom_field_service/create_custom_field_options.rb
337
+ - examples/v201302/custom_field_service/create_custom_fields.rb
338
+ - examples/v201302/custom_field_service/deactivate_all_line_item_custom_fields.rb
339
+ - examples/v201302/custom_field_service/get_all_custom_fields.rb
340
+ - examples/v201302/custom_field_service/get_all_line_item_custom_fields.rb
341
+ - examples/v201302/custom_field_service/set_line_item_custom_field_value.rb
342
+ - examples/v201302/custom_field_service/update_custom_fields.rb
343
+ - examples/v201302/custom_targeting_service/create_custom_targeting_keys_and_values.rb
344
+ - examples/v201302/custom_targeting_service/delete_custom_targeting_keys.rb
345
+ - examples/v201302/custom_targeting_service/delete_custom_targeting_values.rb
346
+ - examples/v201302/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
347
+ - examples/v201302/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
348
+ - examples/v201302/custom_targeting_service/get_custom_targeting_values_by_statement.rb
349
+ - examples/v201302/custom_targeting_service/update_custom_targeting_keys.rb
350
+ - examples/v201302/custom_targeting_service/update_custom_targeting_values.rb
351
+ - examples/v201302/forecast_service/get_forecast.rb
352
+ - examples/v201302/forecast_service/get_forecast_by_id.rb
353
+ - examples/v201302/inventory_service/create_ad_units.rb
354
+ - examples/v201302/inventory_service/create_mobile_ad_unit.rb
355
+ - examples/v201302/inventory_service/create_video_ad_unit.rb
356
+ - examples/v201302/inventory_service/deactivate_ad_units.rb
357
+ - examples/v201302/inventory_service/get_ad_unit.rb
358
+ - examples/v201302/inventory_service/get_ad_unit_sizes.rb
359
+ - examples/v201302/inventory_service/get_ad_units_by_statement.rb
360
+ - examples/v201302/inventory_service/get_all_ad_units.rb
361
+ - examples/v201302/inventory_service/update_ad_units.rb
362
+ - examples/v201302/label_service/create_labels.rb
363
+ - examples/v201302/label_service/deactivate_labels.rb
364
+ - examples/v201302/label_service/get_all_labels.rb
365
+ - examples/v201302/label_service/get_label.rb
366
+ - examples/v201302/label_service/get_labels_by_statement.rb
367
+ - examples/v201302/label_service/update_labels.rb
368
+ - examples/v201302/line_item_creative_association_service/create_licas.rb
369
+ - examples/v201302/line_item_creative_association_service/deactivate_licas.rb
370
+ - examples/v201302/line_item_creative_association_service/get_all_licas.rb
371
+ - examples/v201302/line_item_creative_association_service/get_lica.rb
372
+ - examples/v201302/line_item_creative_association_service/get_licas_by_statement.rb
373
+ - examples/v201302/line_item_creative_association_service/update_licas.rb
374
+ - examples/v201302/line_item_service/activate_line_items.rb
375
+ - examples/v201302/line_item_service/create_line_items.rb
376
+ - examples/v201302/line_item_service/create_mobile_line_item.rb
377
+ - examples/v201302/line_item_service/create_video_line_item.rb
378
+ - examples/v201302/line_item_service/get_all_line_items.rb
379
+ - examples/v201302/line_item_service/get_line_item.rb
380
+ - examples/v201302/line_item_service/get_line_items_by_statement.rb
381
+ - examples/v201302/line_item_service/get_recently_updated_line_items.rb
382
+ - examples/v201302/line_item_service/target_custom_criteria.rb
383
+ - examples/v201302/line_item_service/update_line_items.rb
384
+ - examples/v201302/network_service/get_all_networks.rb
385
+ - examples/v201302/network_service/get_current_network.rb
386
+ - examples/v201302/network_service/make_test_network.rb
387
+ - examples/v201302/order_service/approve_orders.rb
388
+ - examples/v201302/order_service/create_orders.rb
389
+ - examples/v201302/order_service/get_all_orders.rb
390
+ - examples/v201302/order_service/get_order.rb
391
+ - examples/v201302/order_service/get_orders_by_statement.rb
392
+ - examples/v201302/order_service/update_orders.rb
393
+ - examples/v201302/placement_service/create_placements.rb
394
+ - examples/v201302/placement_service/deactivate_placements.rb
395
+ - examples/v201302/placement_service/get_all_placements.rb
396
+ - examples/v201302/placement_service/get_placement.rb
397
+ - examples/v201302/placement_service/get_placements_by_statement.rb
398
+ - examples/v201302/placement_service/update_placements.rb
399
+ - examples/v201302/publisher_query_language_service/get_all_cities.rb
400
+ - examples/v201302/report_service/display_report.rb
401
+ - examples/v201302/report_service/download_report.rb
402
+ - examples/v201302/report_service/run_delivery_report.rb
403
+ - examples/v201302/report_service/run_inventory_report.rb
404
+ - examples/v201302/report_service/run_merged_delivery_report.rb
405
+ - examples/v201302/report_service/run_reach_report.rb
406
+ - examples/v201302/report_service/run_report_with_custom_fields.rb
407
+ - examples/v201302/report_service/run_sales_report.rb
408
+ - examples/v201302/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
409
+ - examples/v201302/suggested_ad_unit_service/get_all_suggested_ad_units.rb
410
+ - examples/v201302/suggested_ad_unit_service/get_suggested_ad_unit.rb
411
+ - examples/v201302/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
412
+ - examples/v201302/team_service/create_teams.rb
413
+ - examples/v201302/team_service/get_all_teams.rb
414
+ - examples/v201302/team_service/get_team.rb
415
+ - examples/v201302/team_service/get_teams_by_statement.rb
416
+ - examples/v201302/team_service/update_teams.rb
417
+ - examples/v201302/third_party_slot_service/archive_third_party_slots.rb
418
+ - examples/v201302/third_party_slot_service/create_third_party_slot.rb
419
+ - examples/v201302/third_party_slot_service/get_all_third_party_slots.rb
420
+ - examples/v201302/third_party_slot_service/get_third_party_slot_by_statement.rb
421
+ - examples/v201302/third_party_slot_service/update_third_party_slots.rb
422
+ - examples/v201302/user_service/create_users.rb
423
+ - examples/v201302/user_service/deactivate_users.rb
424
+ - examples/v201302/user_service/get_all_roles.rb
425
+ - examples/v201302/user_service/get_all_users.rb
426
+ - examples/v201302/user_service/get_current_user.rb
427
+ - examples/v201302/user_service/get_user.rb
428
+ - examples/v201302/user_service/get_users_by_statement.rb
429
+ - examples/v201302/user_service/update_users.rb
430
+ - examples/v201302/user_team_association_service/create_user_team_associations.rb
431
+ - examples/v201302/user_team_association_service/delete_user_team_associations.rb
432
+ - examples/v201302/user_team_association_service/get_all_user_team_associations.rb
433
+ - examples/v201302/user_team_association_service/get_user_team_association.rb
434
+ - examples/v201302/user_team_association_service/get_user_team_associations_by_statement.rb
435
+ - examples/v201302/user_team_association_service/update_user_team_associations.rb
436
+ - examples/v201306/activity_group_service/create_activity_groups.rb
437
+ - examples/v201306/activity_group_service/get_active_activity_groups.rb
438
+ - examples/v201306/activity_group_service/get_all_activity_groups.rb
439
+ - examples/v201306/activity_group_service/update_activity_groups.rb
440
+ - examples/v201306/activity_service/create_activities.rb
441
+ - examples/v201306/activity_service/get_active_activities.rb
442
+ - examples/v201306/activity_service/get_all_activities.rb
443
+ - examples/v201306/activity_service/update_activities.rb
444
+ - examples/v201306/audience_segment_service/get_all_audience_segments.rb
445
+ - examples/v201306/common/error_handling.rb
446
+ - examples/v201306/common/oauth2_jwt_handling.rb
447
+ - examples/v201306/common/setup_oauth2.rb
448
+ - examples/v201306/company_service/create_companies.rb
449
+ - examples/v201306/company_service/get_all_companies.rb
450
+ - examples/v201306/company_service/get_companies_by_statement.rb
451
+ - examples/v201306/company_service/get_company.rb
452
+ - examples/v201306/company_service/update_companies.rb
453
+ - examples/v201306/contact_service/create_contacts.rb
454
+ - examples/v201306/contact_service/get_all_contacts.rb
455
+ - examples/v201306/contact_service/get_uninvited_contacts.rb
456
+ - examples/v201306/contact_service/update_contacts.rb
457
+ - examples/v201306/content_service/get_all_content.rb
458
+ - examples/v201306/content_service/get_content_by_category.rb
459
+ - examples/v201306/creative_service/copy_image_creatives.rb
460
+ - examples/v201306/creative_service/create_creative_from_template.rb
461
+ - examples/v201306/creative_service/create_creatives.rb
462
+ - examples/v201306/creative_service/create_custom_creative.rb
463
+ - examples/v201306/creative_service/get_all_creatives.rb
464
+ - examples/v201306/creative_service/get_creative.rb
465
+ - examples/v201306/creative_service/get_creatives_by_statement.rb
466
+ - examples/v201306/creative_service/update_creatives.rb
467
+ - examples/v201306/creative_set_service/associate_creative_set_to_line_item.rb
468
+ - examples/v201306/creative_set_service/create_creative_set.rb
469
+ - examples/v201306/creative_set_service/get_all_creative_sets.rb
470
+ - examples/v201306/creative_set_service/get_creative_sets_by_statement.rb
471
+ - examples/v201306/creative_set_service/update_creative_sets.rb
472
+ - examples/v201306/creative_template_service/get_all_creative_templates.rb
473
+ - examples/v201306/creative_template_service/get_creative_template.rb
474
+ - examples/v201306/creative_template_service/get_creative_templates_by_statement.rb
475
+ - examples/v201306/creative_wrapper_service/create_creative_wrappers.rb
476
+ - examples/v201306/creative_wrapper_service/deactivate_creative_wrapper.rb
477
+ - examples/v201306/creative_wrapper_service/get_all_creative_wrappers.rb
478
+ - examples/v201306/creative_wrapper_service/get_creative_wrappers_by_statement.rb
479
+ - examples/v201306/creative_wrapper_service/update_creative_wrappers.rb
480
+ - examples/v201306/custom_field_service/create_custom_field_options.rb
481
+ - examples/v201306/custom_field_service/create_custom_fields.rb
482
+ - examples/v201306/custom_field_service/deactivate_all_line_item_custom_fields.rb
483
+ - examples/v201306/custom_field_service/get_all_custom_fields.rb
484
+ - examples/v201306/custom_field_service/get_all_line_item_custom_fields.rb
485
+ - examples/v201306/custom_field_service/set_line_item_custom_field_value.rb
486
+ - examples/v201306/custom_field_service/update_custom_fields.rb
487
+ - examples/v201306/custom_targeting_service/create_custom_targeting_keys_and_values.rb
488
+ - examples/v201306/custom_targeting_service/delete_custom_targeting_keys.rb
489
+ - examples/v201306/custom_targeting_service/delete_custom_targeting_values.rb
490
+ - examples/v201306/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
491
+ - examples/v201306/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
492
+ - examples/v201306/custom_targeting_service/get_custom_targeting_values_by_statement.rb
493
+ - examples/v201306/custom_targeting_service/update_custom_targeting_keys.rb
494
+ - examples/v201306/custom_targeting_service/update_custom_targeting_values.rb
495
+ - examples/v201306/forecast_service/get_forecast.rb
496
+ - examples/v201306/forecast_service/get_forecast_by_id.rb
497
+ - examples/v201306/inventory_service/create_ad_units.rb
498
+ - examples/v201306/inventory_service/create_mobile_ad_unit.rb
499
+ - examples/v201306/inventory_service/create_video_ad_unit.rb
500
+ - examples/v201306/inventory_service/deactivate_ad_units.rb
501
+ - examples/v201306/inventory_service/get_ad_unit.rb
502
+ - examples/v201306/inventory_service/get_ad_unit_sizes.rb
503
+ - examples/v201306/inventory_service/get_ad_units_by_statement.rb
504
+ - examples/v201306/inventory_service/get_all_ad_units.rb
505
+ - examples/v201306/inventory_service/update_ad_units.rb
506
+ - examples/v201306/label_service/create_labels.rb
507
+ - examples/v201306/label_service/deactivate_labels.rb
508
+ - examples/v201306/label_service/get_all_labels.rb
509
+ - examples/v201306/label_service/get_label.rb
510
+ - examples/v201306/label_service/get_labels_by_statement.rb
511
+ - examples/v201306/label_service/update_labels.rb
512
+ - examples/v201306/line_item_creative_association_service/create_licas.rb
513
+ - examples/v201306/line_item_creative_association_service/deactivate_licas.rb
514
+ - examples/v201306/line_item_creative_association_service/get_all_licas.rb
515
+ - examples/v201306/line_item_creative_association_service/get_lica.rb
516
+ - examples/v201306/line_item_creative_association_service/get_licas_by_statement.rb
517
+ - examples/v201306/line_item_creative_association_service/update_licas.rb
518
+ - examples/v201306/line_item_service/activate_line_items.rb
519
+ - examples/v201306/line_item_service/create_line_items.rb
520
+ - examples/v201306/line_item_service/create_mobile_line_item.rb
521
+ - examples/v201306/line_item_service/create_video_line_item.rb
522
+ - examples/v201306/line_item_service/get_all_line_items.rb
523
+ - examples/v201306/line_item_service/get_line_item.rb
524
+ - examples/v201306/line_item_service/get_line_items_by_statement.rb
525
+ - examples/v201306/line_item_service/get_recently_updated_line_items.rb
526
+ - examples/v201306/line_item_service/target_custom_criteria.rb
527
+ - examples/v201306/line_item_service/update_line_items.rb
528
+ - examples/v201306/network_service/get_all_networks.rb
529
+ - examples/v201306/network_service/get_current_network.rb
530
+ - examples/v201306/network_service/make_test_network.rb
531
+ - examples/v201306/order_service/approve_orders.rb
532
+ - examples/v201306/order_service/create_orders.rb
533
+ - examples/v201306/order_service/get_all_orders.rb
534
+ - examples/v201306/order_service/get_order.rb
535
+ - examples/v201306/order_service/get_orders_by_statement.rb
536
+ - examples/v201306/order_service/update_orders.rb
537
+ - examples/v201306/placement_service/create_placements.rb
538
+ - examples/v201306/placement_service/deactivate_placements.rb
539
+ - examples/v201306/placement_service/get_all_placements.rb
540
+ - examples/v201306/placement_service/get_placement.rb
541
+ - examples/v201306/placement_service/get_placements_by_statement.rb
542
+ - examples/v201306/placement_service/update_placements.rb
543
+ - examples/v201306/publisher_query_language_service/get_all_cities.rb
544
+ - examples/v201306/report_service/display_report.rb
545
+ - examples/v201306/report_service/download_report.rb
546
+ - examples/v201306/report_service/run_delivery_report.rb
547
+ - examples/v201306/report_service/run_inventory_report.rb
548
+ - examples/v201306/report_service/run_merged_delivery_report.rb
549
+ - examples/v201306/report_service/run_reach_report.rb
550
+ - examples/v201306/report_service/run_report_with_custom_fields.rb
551
+ - examples/v201306/report_service/run_sales_report.rb
552
+ - examples/v201306/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
553
+ - examples/v201306/suggested_ad_unit_service/get_all_suggested_ad_units.rb
554
+ - examples/v201306/suggested_ad_unit_service/get_suggested_ad_unit.rb
555
+ - examples/v201306/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
556
+ - examples/v201306/team_service/create_teams.rb
557
+ - examples/v201306/team_service/get_all_teams.rb
558
+ - examples/v201306/team_service/get_team.rb
559
+ - examples/v201306/team_service/get_teams_by_statement.rb
560
+ - examples/v201306/team_service/update_teams.rb
561
+ - examples/v201306/user_service/create_users.rb
562
+ - examples/v201306/user_service/deactivate_users.rb
563
+ - examples/v201306/user_service/get_all_roles.rb
564
+ - examples/v201306/user_service/get_all_users.rb
565
+ - examples/v201306/user_service/get_current_user.rb
566
+ - examples/v201306/user_service/get_user.rb
567
+ - examples/v201306/user_service/get_users_by_statement.rb
568
+ - examples/v201306/user_service/update_users.rb
569
+ - examples/v201306/user_team_association_service/create_user_team_associations.rb
570
+ - examples/v201306/user_team_association_service/delete_user_team_associations.rb
571
+ - examples/v201306/user_team_association_service/get_all_user_team_associations.rb
572
+ - examples/v201306/user_team_association_service/get_user_team_association.rb
573
+ - examples/v201306/user_team_association_service/get_user_team_associations_by_statement.rb
574
+ - examples/v201306/user_team_association_service/update_user_team_associations.rb
575
+ - examples/v201308/activity_group_service/create_activity_groups.rb
576
+ - examples/v201308/activity_group_service/get_active_activity_groups.rb
577
+ - examples/v201308/activity_group_service/get_all_activity_groups.rb
578
+ - examples/v201308/activity_group_service/update_activity_groups.rb
579
+ - examples/v201308/activity_service/create_activities.rb
580
+ - examples/v201308/activity_service/get_active_activities.rb
581
+ - examples/v201308/activity_service/get_all_activities.rb
582
+ - examples/v201308/activity_service/update_activities.rb
583
+ - examples/v201308/audience_segment_service/create_audience_segments.rb
584
+ - examples/v201308/audience_segment_service/get_all_audience_segments.rb
585
+ - examples/v201308/audience_segment_service/get_first_party_audience_segments.rb
586
+ - examples/v201308/audience_segment_service/populate_first_party_audience_segments.rb
587
+ - examples/v201308/audience_segment_service/update_audience_segments.rb
588
+ - examples/v201308/common/error_handling.rb
589
+ - examples/v201308/common/oauth2_jwt_handling.rb
590
+ - examples/v201308/common/setup_oauth2.rb
591
+ - examples/v201308/company_service/create_companies.rb
592
+ - examples/v201308/company_service/get_all_companies.rb
593
+ - examples/v201308/company_service/get_companies_by_statement.rb
594
+ - examples/v201308/company_service/get_company.rb
595
+ - examples/v201308/company_service/update_companies.rb
596
+ - examples/v201308/contact_service/create_contacts.rb
597
+ - examples/v201308/contact_service/get_all_contacts.rb
598
+ - examples/v201308/contact_service/get_uninvited_contacts.rb
599
+ - examples/v201308/contact_service/update_contacts.rb
600
+ - examples/v201308/content_service/get_all_content.rb
601
+ - examples/v201308/content_service/get_content_by_category.rb
602
+ - examples/v201308/creative_service/copy_image_creatives.rb
603
+ - examples/v201308/creative_service/create_creative_from_template.rb
604
+ - examples/v201308/creative_service/create_creatives.rb
605
+ - examples/v201308/creative_service/create_custom_creative.rb
606
+ - examples/v201308/creative_service/get_all_creatives.rb
607
+ - examples/v201308/creative_service/get_creative.rb
608
+ - examples/v201308/creative_service/get_creatives_by_statement.rb
609
+ - examples/v201308/creative_service/update_creatives.rb
610
+ - examples/v201308/creative_set_service/associate_creative_set_to_line_item.rb
611
+ - examples/v201308/creative_set_service/create_creative_set.rb
612
+ - examples/v201308/creative_set_service/get_all_creative_sets.rb
613
+ - examples/v201308/creative_set_service/get_creative_sets_by_statement.rb
614
+ - examples/v201308/creative_set_service/update_creative_sets.rb
615
+ - examples/v201308/creative_template_service/get_all_creative_templates.rb
616
+ - examples/v201308/creative_template_service/get_creative_template.rb
617
+ - examples/v201308/creative_template_service/get_creative_templates_by_statement.rb
618
+ - examples/v201308/creative_wrapper_service/create_creative_wrappers.rb
619
+ - examples/v201308/creative_wrapper_service/deactivate_creative_wrapper.rb
620
+ - examples/v201308/creative_wrapper_service/get_all_creative_wrappers.rb
621
+ - examples/v201308/creative_wrapper_service/get_creative_wrappers_by_statement.rb
622
+ - examples/v201308/creative_wrapper_service/update_creative_wrappers.rb
623
+ - examples/v201308/custom_field_service/create_custom_field_options.rb
624
+ - examples/v201308/custom_field_service/create_custom_fields.rb
625
+ - examples/v201308/custom_field_service/deactivate_all_line_item_custom_fields.rb
626
+ - examples/v201308/custom_field_service/get_all_custom_fields.rb
627
+ - examples/v201308/custom_field_service/get_all_line_item_custom_fields.rb
628
+ - examples/v201308/custom_field_service/set_line_item_custom_field_value.rb
629
+ - examples/v201308/custom_field_service/update_custom_fields.rb
630
+ - examples/v201308/custom_targeting_service/create_custom_targeting_keys_and_values.rb
631
+ - examples/v201308/custom_targeting_service/delete_custom_targeting_keys.rb
632
+ - examples/v201308/custom_targeting_service/delete_custom_targeting_values.rb
633
+ - examples/v201308/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
634
+ - examples/v201308/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
635
+ - examples/v201308/custom_targeting_service/get_custom_targeting_values_by_statement.rb
636
+ - examples/v201308/custom_targeting_service/update_custom_targeting_keys.rb
637
+ - examples/v201308/custom_targeting_service/update_custom_targeting_values.rb
638
+ - examples/v201308/forecast_service/get_forecast.rb
639
+ - examples/v201308/forecast_service/get_forecast_by_id.rb
640
+ - examples/v201308/inventory_service/create_ad_units.rb
641
+ - examples/v201308/inventory_service/create_mobile_ad_unit.rb
642
+ - examples/v201308/inventory_service/create_video_ad_unit.rb
643
+ - examples/v201308/inventory_service/deactivate_ad_units.rb
644
+ - examples/v201308/inventory_service/get_ad_unit.rb
645
+ - examples/v201308/inventory_service/get_ad_unit_sizes.rb
646
+ - examples/v201308/inventory_service/get_ad_units_by_statement.rb
647
+ - examples/v201308/inventory_service/get_all_ad_units.rb
648
+ - examples/v201308/inventory_service/update_ad_units.rb
649
+ - examples/v201308/label_service/create_labels.rb
650
+ - examples/v201308/label_service/deactivate_labels.rb
651
+ - examples/v201308/label_service/get_all_labels.rb
652
+ - examples/v201308/label_service/get_label.rb
653
+ - examples/v201308/label_service/get_labels_by_statement.rb
654
+ - examples/v201308/label_service/update_labels.rb
655
+ - examples/v201308/line_item_creative_association_service/create_licas.rb
656
+ - examples/v201308/line_item_creative_association_service/deactivate_licas.rb
657
+ - examples/v201308/line_item_creative_association_service/get_all_licas.rb
658
+ - examples/v201308/line_item_creative_association_service/get_lica.rb
659
+ - examples/v201308/line_item_creative_association_service/get_licas_by_statement.rb
660
+ - examples/v201308/line_item_creative_association_service/update_licas.rb
661
+ - examples/v201308/line_item_service/activate_line_items.rb
662
+ - examples/v201308/line_item_service/create_line_items.rb
663
+ - examples/v201308/line_item_service/create_mobile_line_item.rb
664
+ - examples/v201308/line_item_service/create_video_line_item.rb
665
+ - examples/v201308/line_item_service/get_all_line_items.rb
666
+ - examples/v201308/line_item_service/get_line_item.rb
667
+ - examples/v201308/line_item_service/get_line_items_by_statement.rb
668
+ - examples/v201308/line_item_service/get_recently_updated_line_items.rb
669
+ - examples/v201308/line_item_service/target_custom_criteria.rb
670
+ - examples/v201308/line_item_service/update_line_items.rb
671
+ - examples/v201308/network_service/get_all_networks.rb
672
+ - examples/v201308/network_service/get_current_network.rb
673
+ - examples/v201308/network_service/make_test_network.rb
674
+ - examples/v201308/order_service/approve_orders.rb
675
+ - examples/v201308/order_service/create_orders.rb
676
+ - examples/v201308/order_service/get_all_orders.rb
677
+ - examples/v201308/order_service/get_order.rb
678
+ - examples/v201308/order_service/get_orders_by_statement.rb
679
+ - examples/v201308/order_service/update_orders.rb
680
+ - examples/v201308/placement_service/create_placements.rb
681
+ - examples/v201308/placement_service/deactivate_placements.rb
682
+ - examples/v201308/placement_service/get_all_placements.rb
683
+ - examples/v201308/placement_service/get_placement.rb
684
+ - examples/v201308/placement_service/get_placements_by_statement.rb
685
+ - examples/v201308/placement_service/update_placements.rb
686
+ - examples/v201308/publisher_query_language_service/get_all_line_items.rb
687
+ - examples/v201308/publisher_query_language_service/get_geo_targets.rb
688
+ - examples/v201308/publisher_query_language_service/get_line_items_named_like.rb
689
+ - examples/v201308/report_service/display_report.rb
690
+ - examples/v201308/report_service/download_report.rb
691
+ - examples/v201308/report_service/run_delivery_report.rb
692
+ - examples/v201308/report_service/run_inventory_report.rb
693
+ - examples/v201308/report_service/run_merged_delivery_report.rb
694
+ - examples/v201308/report_service/run_reach_report.rb
695
+ - examples/v201308/report_service/run_report_with_custom_fields.rb
696
+ - examples/v201308/report_service/run_sales_report.rb
697
+ - examples/v201308/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
698
+ - examples/v201308/suggested_ad_unit_service/get_all_suggested_ad_units.rb
699
+ - examples/v201308/suggested_ad_unit_service/get_suggested_ad_unit.rb
700
+ - examples/v201308/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
701
+ - examples/v201308/team_service/create_teams.rb
702
+ - examples/v201308/team_service/get_all_teams.rb
703
+ - examples/v201308/team_service/get_team.rb
704
+ - examples/v201308/team_service/get_teams_by_statement.rb
705
+ - examples/v201308/team_service/update_teams.rb
706
+ - examples/v201308/user_service/create_users.rb
707
+ - examples/v201308/user_service/deactivate_users.rb
708
+ - examples/v201308/user_service/get_all_roles.rb
709
+ - examples/v201308/user_service/get_all_users.rb
710
+ - examples/v201308/user_service/get_current_user.rb
711
+ - examples/v201308/user_service/get_user.rb
712
+ - examples/v201308/user_service/get_users_by_statement.rb
713
+ - examples/v201308/user_service/update_users.rb
714
+ - examples/v201308/user_team_association_service/create_user_team_associations.rb
715
+ - examples/v201308/user_team_association_service/delete_user_team_associations.rb
716
+ - examples/v201308/user_team_association_service/get_all_user_team_associations.rb
717
+ - examples/v201308/user_team_association_service/get_user_team_association.rb
718
+ - examples/v201308/user_team_association_service/get_user_team_associations_by_statement.rb
719
+ - examples/v201308/user_team_association_service/update_user_team_associations.rb
210
720
  - examples/v201311/activity_group_service/create_activity_groups.rb
211
721
  - examples/v201311/activity_group_service/get_active_activity_groups.rb
212
- - examples/v201311/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
213
- - examples/v201311/suggested_ad_unit_service/get_suggested_ad_unit.rb
214
- - examples/v201311/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
215
- - examples/v201311/suggested_ad_unit_service/get_all_suggested_ad_units.rb
216
- - examples/v201311/placement_service/update_placements.rb
217
- - examples/v201311/placement_service/get_all_placements.rb
218
- - examples/v201311/placement_service/create_placements.rb
219
- - examples/v201311/placement_service/get_placements_by_statement.rb
220
- - examples/v201311/placement_service/deactivate_placements.rb
221
- - examples/v201311/placement_service/get_placement.rb
722
+ - examples/v201311/activity_group_service/get_all_activity_groups.rb
723
+ - examples/v201311/activity_group_service/update_activity_groups.rb
724
+ - examples/v201311/activity_service/create_activities.rb
725
+ - examples/v201311/activity_service/get_active_activities.rb
726
+ - examples/v201311/activity_service/get_all_activities.rb
727
+ - examples/v201311/activity_service/update_activities.rb
728
+ - examples/v201311/audience_segment_service/create_audience_segments.rb
729
+ - examples/v201311/audience_segment_service/get_all_audience_segments.rb
222
730
  - examples/v201311/audience_segment_service/get_first_party_audience_segments.rb
223
731
  - examples/v201311/audience_segment_service/populate_first_party_audience_segments.rb
224
732
  - examples/v201311/audience_segment_service/update_audience_segments.rb
225
- - examples/v201311/audience_segment_service/create_audience_segments.rb
226
- - examples/v201311/audience_segment_service/get_all_audience_segments.rb
733
+ - examples/v201311/common/error_handling.rb
734
+ - examples/v201311/common/oauth2_jwt_handling.rb
735
+ - examples/v201311/common/setup_oauth2.rb
736
+ - examples/v201311/company_service/create_companies.rb
737
+ - examples/v201311/company_service/get_all_companies.rb
738
+ - examples/v201311/company_service/get_companies_by_statement.rb
739
+ - examples/v201311/company_service/get_company.rb
740
+ - examples/v201311/company_service/update_companies.rb
227
741
  - examples/v201311/contact_service/create_contacts.rb
228
742
  - examples/v201311/contact_service/get_all_contacts.rb
229
- - examples/v201311/contact_service/update_contacts.rb
230
743
  - examples/v201311/contact_service/get_uninvited_contacts.rb
231
- - examples/v201311/report_service/run_report_with_custom_fields.rb
232
- - examples/v201311/report_service/run_reach_report.rb
233
- - examples/v201311/report_service/download_report.rb
234
- - examples/v201311/report_service/run_merged_delivery_report.rb
235
- - examples/v201311/report_service/run_delivery_report.rb
236
- - examples/v201311/report_service/run_sales_report.rb
237
- - examples/v201311/report_service/display_report.rb
238
- - examples/v201311/report_service/run_inventory_report.rb
239
- - examples/v201311/common/oauth2_jwt_handling.rb
240
- - examples/v201311/common/error_handling.rb
241
- - examples/v201311/common/setup_oauth2.rb
242
- - examples/v201311/user_service/get_user.rb
243
- - examples/v201311/user_service/deactivate_users.rb
244
- - examples/v201311/user_service/get_current_user.rb
245
- - examples/v201311/user_service/get_all_users.rb
246
- - examples/v201311/user_service/create_users.rb
247
- - examples/v201311/user_service/get_all_roles.rb
248
- - examples/v201311/user_service/update_users.rb
249
- - examples/v201311/user_service/get_users_by_statement.rb
250
- - examples/v201311/network_service/get_current_network.rb
251
- - examples/v201311/network_service/get_all_networks.rb
252
- - examples/v201311/network_service/make_test_network.rb
253
- - examples/v201311/content_service/get_content_by_category.rb
744
+ - examples/v201311/contact_service/update_contacts.rb
254
745
  - examples/v201311/content_service/get_all_content.rb
255
- - examples/v201311/user_team_association_service/update_user_team_associations.rb
256
- - examples/v201311/user_team_association_service/get_all_user_team_associations.rb
257
- - examples/v201311/user_team_association_service/create_user_team_associations.rb
258
- - examples/v201311/user_team_association_service/delete_user_team_associations.rb
259
- - examples/v201311/user_team_association_service/get_user_team_associations_by_statement.rb
260
- - examples/v201311/user_team_association_service/get_user_team_association.rb
261
- - examples/v201311/creative_wrapper_service/update_creative_wrappers.rb
262
- - examples/v201311/creative_wrapper_service/get_all_creative_wrappers.rb
263
- - examples/v201311/creative_wrapper_service/deactivate_creative_wrapper.rb
264
- - examples/v201311/creative_wrapper_service/get_creative_wrappers_by_statement.rb
265
- - examples/v201311/creative_wrapper_service/create_creative_wrappers.rb
266
- - examples/v201311/custom_targeting_service/delete_custom_targeting_values.rb
267
- - examples/v201311/custom_targeting_service/update_custom_targeting_keys.rb
268
- - examples/v201311/custom_targeting_service/delete_custom_targeting_keys.rb
269
- - examples/v201311/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
270
- - examples/v201311/custom_targeting_service/update_custom_targeting_values.rb
271
- - examples/v201311/custom_targeting_service/get_custom_targeting_values_by_statement.rb
272
- - examples/v201311/custom_targeting_service/create_custom_targeting_keys_and_values.rb
273
- - examples/v201311/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
274
- - examples/v201311/creative_set_service/create_creative_set.rb
275
- - examples/v201311/creative_set_service/get_creative_sets_by_statement.rb
276
- - examples/v201311/creative_set_service/update_creative_sets.rb
277
- - examples/v201311/creative_set_service/get_all_creative_sets.rb
278
- - examples/v201311/creative_set_service/associate_creative_set_to_line_item.rb
279
- - examples/v201311/publisher_query_language_service/fetch_match_tables.rb
280
- - examples/v201311/publisher_query_language_service/get_geo_targets.rb
281
- - examples/v201311/publisher_query_language_service/get_line_items_named_like.rb
282
- - examples/v201311/publisher_query_language_service/get_all_line_items.rb
283
- - examples/v201311/creative_service/get_all_creatives.rb
746
+ - examples/v201311/content_service/get_content_by_category.rb
284
747
  - examples/v201311/creative_service/copy_image_creatives.rb
748
+ - examples/v201311/creative_service/create_creative_from_template.rb
749
+ - examples/v201311/creative_service/create_creatives.rb
750
+ - examples/v201311/creative_service/create_custom_creative.rb
751
+ - examples/v201311/creative_service/get_all_creatives.rb
285
752
  - examples/v201311/creative_service/get_creative.rb
286
753
  - examples/v201311/creative_service/get_creatives_by_statement.rb
287
- - examples/v201311/creative_service/create_creative_from_template.rb
288
754
  - examples/v201311/creative_service/update_creatives.rb
289
- - examples/v201311/creative_service/create_custom_creative.rb
290
- - examples/v201311/creative_service/create_creatives.rb
291
- - examples/v201311/order_service/approve_orders.rb
292
- - examples/v201311/order_service/get_orders_by_statement.rb
293
- - examples/v201311/order_service/get_order.rb
294
- - examples/v201311/order_service/update_orders.rb
295
- - examples/v201311/order_service/create_orders.rb
296
- - examples/v201311/order_service/get_all_orders.rb
297
- - examples/v201311/line_item_service/get_line_item.rb
298
- - examples/v201311/line_item_service/create_mobile_line_item.rb
299
- - examples/v201311/line_item_service/get_recently_updated_line_items.rb
300
- - examples/v201311/line_item_service/update_line_items.rb
301
- - examples/v201311/line_item_service/target_custom_criteria.rb
302
- - examples/v201311/line_item_service/activate_line_items.rb
303
- - examples/v201311/line_item_service/get_line_items_by_statement.rb
304
- - examples/v201311/line_item_service/create_line_items.rb
305
- - examples/v201311/line_item_service/create_video_line_item.rb
306
- - examples/v201311/line_item_service/get_all_line_items.rb
755
+ - examples/v201311/creative_set_service/associate_creative_set_to_line_item.rb
756
+ - examples/v201311/creative_set_service/create_creative_set.rb
757
+ - examples/v201311/creative_set_service/get_all_creative_sets.rb
758
+ - examples/v201311/creative_set_service/get_creative_sets_by_statement.rb
759
+ - examples/v201311/creative_set_service/update_creative_sets.rb
760
+ - examples/v201311/creative_template_service/get_all_creative_templates.rb
761
+ - examples/v201311/creative_template_service/get_creative_template.rb
762
+ - examples/v201311/creative_template_service/get_creative_templates_by_statement.rb
763
+ - examples/v201311/creative_wrapper_service/create_creative_wrappers.rb
764
+ - examples/v201311/creative_wrapper_service/deactivate_creative_wrapper.rb
765
+ - examples/v201311/creative_wrapper_service/get_all_creative_wrappers.rb
766
+ - examples/v201311/creative_wrapper_service/get_creative_wrappers_by_statement.rb
767
+ - examples/v201311/creative_wrapper_service/update_creative_wrappers.rb
768
+ - examples/v201311/custom_field_service/create_custom_field_options.rb
769
+ - examples/v201311/custom_field_service/create_custom_fields.rb
770
+ - examples/v201311/custom_field_service/deactivate_all_line_item_custom_fields.rb
771
+ - examples/v201311/custom_field_service/get_all_custom_fields.rb
772
+ - examples/v201311/custom_field_service/get_all_line_item_custom_fields.rb
773
+ - examples/v201311/custom_field_service/set_line_item_custom_field_value.rb
774
+ - examples/v201311/custom_field_service/update_custom_fields.rb
775
+ - examples/v201311/custom_targeting_service/create_custom_targeting_keys_and_values.rb
776
+ - examples/v201311/custom_targeting_service/delete_custom_targeting_keys.rb
777
+ - examples/v201311/custom_targeting_service/delete_custom_targeting_values.rb
778
+ - examples/v201311/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
779
+ - examples/v201311/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
780
+ - examples/v201311/custom_targeting_service/get_custom_targeting_values_by_statement.rb
781
+ - examples/v201311/custom_targeting_service/update_custom_targeting_keys.rb
782
+ - examples/v201311/custom_targeting_service/update_custom_targeting_values.rb
783
+ - examples/v201311/forecast_service/get_forecast.rb
784
+ - examples/v201311/forecast_service/get_forecast_by_id.rb
785
+ - examples/v201311/inventory_service/create_ad_units.rb
307
786
  - examples/v201311/inventory_service/create_mobile_ad_unit.rb
308
- - examples/v201311/inventory_service/get_all_ad_units.rb
309
787
  - examples/v201311/inventory_service/create_video_ad_unit.rb
310
788
  - examples/v201311/inventory_service/deactivate_ad_units.rb
311
- - examples/v201311/inventory_service/get_ad_units_by_statement.rb
312
789
  - examples/v201311/inventory_service/get_ad_unit.rb
313
- - examples/v201311/inventory_service/create_ad_units.rb
314
790
  - examples/v201311/inventory_service/get_ad_unit_sizes.rb
791
+ - examples/v201311/inventory_service/get_ad_units_by_statement.rb
792
+ - examples/v201311/inventory_service/get_all_ad_units.rb
315
793
  - examples/v201311/inventory_service/update_ad_units.rb
316
- - examples/v201311/company_service/get_companies_by_statement.rb
317
- - examples/v201311/company_service/create_companies.rb
318
- - examples/v201311/company_service/update_companies.rb
319
- - examples/v201311/company_service/get_all_companies.rb
320
- - examples/v201311/company_service/get_company.rb
321
- - examples/v201311/forecast_service/get_forecast_by_id.rb
322
- - examples/v201311/forecast_service/get_forecast.rb
323
- - examples/v201302/common/oauth2_jwt_handling.rb
324
- - examples/v201302/common/setup_oauth2.rb
325
- - examples/v201208/common/setup_oauth2.rb
326
- - lib/dfp_api/v201308/reconciliation_order_report_service_registry.rb
327
- - lib/dfp_api/v201308/rate_card_customization_service_registry.rb
328
- - lib/dfp_api/v201308/suggested_ad_unit_service.rb
329
- - lib/dfp_api/v201308/company_service.rb
330
- - lib/dfp_api/v201308/placement_service_registry.rb
331
- - lib/dfp_api/v201308/contact_service.rb
332
- - lib/dfp_api/v201308/audience_segment_service.rb
333
- - lib/dfp_api/v201308/activity_service_registry.rb
334
- - lib/dfp_api/v201308/custom_field_service_registry.rb
335
- - lib/dfp_api/v201308/line_item_creative_association_service_registry.rb
336
- - lib/dfp_api/v201308/label_service_registry.rb
337
- - lib/dfp_api/v201308/network_service_registry.rb
338
- - lib/dfp_api/v201308/report_service_registry.rb
339
- - lib/dfp_api/v201308/creative_wrapper_service_registry.rb
340
- - lib/dfp_api/v201308/team_service.rb
341
- - lib/dfp_api/v201308/creative_wrapper_service.rb
342
- - lib/dfp_api/v201308/contact_service_registry.rb
343
- - lib/dfp_api/v201308/content_bundle_service_registry.rb
344
- - lib/dfp_api/v201308/user_team_association_service_registry.rb
345
- - lib/dfp_api/v201308/creative_set_service.rb
346
- - lib/dfp_api/v201308/reconciliation_report_row_service.rb
347
- - lib/dfp_api/v201308/base_rate_service.rb
348
- - lib/dfp_api/v201308/proposal_service.rb
349
- - lib/dfp_api/v201308/publisher_query_language_service_registry.rb
350
- - lib/dfp_api/v201308/activity_service.rb
351
- - lib/dfp_api/v201308/proposal_service_registry.rb
352
- - lib/dfp_api/v201308/user_team_association_service.rb
353
- - lib/dfp_api/v201308/order_service_registry.rb
354
- - lib/dfp_api/v201308/creative_template_service_registry.rb
355
- - lib/dfp_api/v201308/label_service.rb
356
- - lib/dfp_api/v201308/forecast_service.rb
357
- - lib/dfp_api/v201308/report_service.rb
358
- - lib/dfp_api/v201308/forecast_service_registry.rb
359
- - lib/dfp_api/v201308/inventory_service_registry.rb
360
- - lib/dfp_api/v201308/product_template_service_registry.rb
361
- - lib/dfp_api/v201308/workflow_action_service_registry.rb
362
- - lib/dfp_api/v201308/activity_group_service_registry.rb
363
- - lib/dfp_api/v201308/content_service_registry.rb
364
- - lib/dfp_api/v201308/line_item_template_service.rb
365
- - lib/dfp_api/v201308/rate_card_service_registry.rb
366
- - lib/dfp_api/v201308/custom_targeting_service_registry.rb
367
- - lib/dfp_api/v201308/custom_targeting_service.rb
368
- - lib/dfp_api/v201308/line_item_creative_association_service.rb
369
- - lib/dfp_api/v201308/base_rate_service_registry.rb
370
- - lib/dfp_api/v201308/proposal_line_item_service_registry.rb
371
- - lib/dfp_api/v201308/suggested_ad_unit_service_registry.rb
372
- - lib/dfp_api/v201308/network_service.rb
373
- - lib/dfp_api/v201308/ad_rule_service_registry.rb
374
- - lib/dfp_api/v201308/product_template_service.rb
375
- - lib/dfp_api/v201308/custom_field_service.rb
376
- - lib/dfp_api/v201308/company_service_registry.rb
377
- - lib/dfp_api/v201308/user_service_registry.rb
378
- - lib/dfp_api/v201308/team_service_registry.rb
379
- - lib/dfp_api/v201308/reconciliation_report_service_registry.rb
380
- - lib/dfp_api/v201308/workflow_action_service.rb
381
- - lib/dfp_api/v201308/reconciliation_order_report_service.rb
382
- - lib/dfp_api/v201308/line_item_template_service_registry.rb
383
- - lib/dfp_api/v201308/creative_service.rb
384
- - lib/dfp_api/v201308/proposal_line_item_service.rb
385
- - lib/dfp_api/v201308/activity_group_service.rb
386
- - lib/dfp_api/v201308/publisher_query_language_service.rb
387
- - lib/dfp_api/v201308/reconciliation_report_row_service_registry.rb
388
- - lib/dfp_api/v201308/content_service.rb
389
- - lib/dfp_api/v201308/product_service.rb
390
- - lib/dfp_api/v201308/creative_template_service.rb
391
- - lib/dfp_api/v201308/creative_set_service_registry.rb
392
- - lib/dfp_api/v201308/ad_rule_service.rb
393
- - lib/dfp_api/v201308/rate_card_service.rb
394
- - lib/dfp_api/v201308/user_service.rb
395
- - lib/dfp_api/v201308/creative_service_registry.rb
396
- - lib/dfp_api/v201308/content_bundle_service.rb
397
- - lib/dfp_api/v201308/order_service.rb
398
- - lib/dfp_api/v201308/audience_segment_service_registry.rb
399
- - lib/dfp_api/v201308/product_service_registry.rb
400
- - lib/dfp_api/v201308/line_item_service.rb
401
- - lib/dfp_api/v201308/rate_card_customization_service.rb
402
- - lib/dfp_api/v201308/placement_service.rb
403
- - lib/dfp_api/v201308/reconciliation_report_service.rb
404
- - lib/dfp_api/v201308/inventory_service.rb
405
- - lib/dfp_api/v201308/line_item_service_registry.rb
406
- - lib/dfp_api/v201403/reconciliation_order_report_service_registry.rb
407
- - lib/dfp_api/v201403/rate_card_customization_service_registry.rb
408
- - lib/dfp_api/v201403/suggested_ad_unit_service.rb
409
- - lib/dfp_api/v201403/company_service.rb
410
- - lib/dfp_api/v201403/workflow_request_service_registry.rb
411
- - lib/dfp_api/v201403/placement_service_registry.rb
412
- - lib/dfp_api/v201403/contact_service.rb
413
- - lib/dfp_api/v201403/audience_segment_service.rb
414
- - lib/dfp_api/v201403/activity_service_registry.rb
415
- - lib/dfp_api/v201403/custom_field_service_registry.rb
416
- - lib/dfp_api/v201403/line_item_creative_association_service_registry.rb
417
- - lib/dfp_api/v201403/label_service_registry.rb
418
- - lib/dfp_api/v201403/network_service_registry.rb
419
- - lib/dfp_api/v201403/rate_card_customization_group_service_registry.rb
420
- - lib/dfp_api/v201403/report_service_registry.rb
421
- - lib/dfp_api/v201403/creative_wrapper_service_registry.rb
422
- - lib/dfp_api/v201403/team_service.rb
423
- - lib/dfp_api/v201403/creative_wrapper_service.rb
424
- - lib/dfp_api/v201403/contact_service_registry.rb
425
- - lib/dfp_api/v201403/content_bundle_service_registry.rb
426
- - lib/dfp_api/v201403/user_team_association_service_registry.rb
427
- - lib/dfp_api/v201403/creative_set_service.rb
428
- - lib/dfp_api/v201403/reconciliation_report_row_service.rb
429
- - lib/dfp_api/v201403/base_rate_service.rb
430
- - lib/dfp_api/v201403/proposal_service.rb
431
- - lib/dfp_api/v201403/publisher_query_language_service_registry.rb
432
- - lib/dfp_api/v201403/activity_service.rb
433
- - lib/dfp_api/v201403/proposal_service_registry.rb
434
- - lib/dfp_api/v201403/exchange_rate_service_registry.rb
435
- - lib/dfp_api/v201403/user_team_association_service.rb
436
- - lib/dfp_api/v201403/order_service_registry.rb
437
- - lib/dfp_api/v201403/creative_template_service_registry.rb
438
- - lib/dfp_api/v201403/label_service.rb
439
- - lib/dfp_api/v201403/forecast_service.rb
440
- - lib/dfp_api/v201403/report_service.rb
441
- - lib/dfp_api/v201403/forecast_service_registry.rb
442
- - lib/dfp_api/v201403/rate_card_customization_group_service.rb
443
- - lib/dfp_api/v201403/inventory_service_registry.rb
444
- - lib/dfp_api/v201403/product_template_service_registry.rb
445
- - lib/dfp_api/v201403/activity_group_service_registry.rb
446
- - lib/dfp_api/v201403/content_service_registry.rb
447
- - lib/dfp_api/v201403/line_item_template_service.rb
448
- - lib/dfp_api/v201403/content_metadata_key_hierarchy_service.rb
449
- - lib/dfp_api/v201403/rate_card_service_registry.rb
450
- - lib/dfp_api/v201403/live_stream_event_service.rb
451
- - lib/dfp_api/v201403/custom_targeting_service_registry.rb
452
- - lib/dfp_api/v201403/custom_targeting_service.rb
453
- - lib/dfp_api/v201403/line_item_creative_association_service.rb
454
- - lib/dfp_api/v201403/workflow_request_service.rb
455
- - lib/dfp_api/v201403/base_rate_service_registry.rb
456
- - lib/dfp_api/v201403/proposal_line_item_service_registry.rb
457
- - lib/dfp_api/v201403/suggested_ad_unit_service_registry.rb
458
- - lib/dfp_api/v201403/network_service.rb
459
- - lib/dfp_api/v201403/ad_rule_service_registry.rb
460
- - lib/dfp_api/v201403/product_template_service.rb
461
- - lib/dfp_api/v201403/custom_field_service.rb
462
- - lib/dfp_api/v201403/company_service_registry.rb
463
- - lib/dfp_api/v201403/user_service_registry.rb
464
- - lib/dfp_api/v201403/team_service_registry.rb
465
- - lib/dfp_api/v201403/reconciliation_report_service_registry.rb
466
- - lib/dfp_api/v201403/reconciliation_order_report_service.rb
467
- - lib/dfp_api/v201403/line_item_template_service_registry.rb
468
- - lib/dfp_api/v201403/exchange_rate_service.rb
469
- - lib/dfp_api/v201403/creative_service.rb
470
- - lib/dfp_api/v201403/proposal_line_item_service.rb
471
- - lib/dfp_api/v201403/activity_group_service.rb
472
- - lib/dfp_api/v201403/publisher_query_language_service.rb
473
- - lib/dfp_api/v201403/reconciliation_report_row_service_registry.rb
474
- - lib/dfp_api/v201403/content_service.rb
475
- - lib/dfp_api/v201403/product_service.rb
476
- - lib/dfp_api/v201403/creative_template_service.rb
477
- - lib/dfp_api/v201403/creative_set_service_registry.rb
478
- - lib/dfp_api/v201403/ad_rule_service.rb
479
- - lib/dfp_api/v201403/rate_card_service.rb
480
- - lib/dfp_api/v201403/user_service.rb
481
- - lib/dfp_api/v201403/creative_service_registry.rb
482
- - lib/dfp_api/v201403/content_bundle_service.rb
483
- - lib/dfp_api/v201403/order_service.rb
484
- - lib/dfp_api/v201403/live_stream_event_service_registry.rb
485
- - lib/dfp_api/v201403/audience_segment_service_registry.rb
486
- - lib/dfp_api/v201403/product_service_registry.rb
487
- - lib/dfp_api/v201403/line_item_service.rb
488
- - lib/dfp_api/v201403/rate_card_customization_service.rb
489
- - lib/dfp_api/v201403/content_metadata_key_hierarchy_service_registry.rb
490
- - lib/dfp_api/v201403/placement_service.rb
491
- - lib/dfp_api/v201403/reconciliation_report_service.rb
492
- - lib/dfp_api/v201403/inventory_service.rb
493
- - lib/dfp_api/v201403/line_item_service_registry.rb
494
- - lib/dfp_api/client_login_header_handler.rb
495
- - lib/dfp_api/credential_handler.rb
496
- - lib/dfp_api/v201306/reconciliation_order_report_service_registry.rb
497
- - lib/dfp_api/v201306/rate_card_customization_service_registry.rb
498
- - lib/dfp_api/v201306/suggested_ad_unit_service.rb
794
+ - examples/v201311/label_service/create_labels.rb
795
+ - examples/v201311/label_service/deactivate_labels.rb
796
+ - examples/v201311/label_service/get_all_labels.rb
797
+ - examples/v201311/label_service/get_label.rb
798
+ - examples/v201311/label_service/get_labels_by_statement.rb
799
+ - examples/v201311/label_service/update_labels.rb
800
+ - examples/v201311/line_item_creative_association_service/create_licas.rb
801
+ - examples/v201311/line_item_creative_association_service/deactivate_licas.rb
802
+ - examples/v201311/line_item_creative_association_service/get_all_licas.rb
803
+ - examples/v201311/line_item_creative_association_service/get_lica.rb
804
+ - examples/v201311/line_item_creative_association_service/get_licas_by_statement.rb
805
+ - examples/v201311/line_item_creative_association_service/update_licas.rb
806
+ - examples/v201311/line_item_service/activate_line_items.rb
807
+ - examples/v201311/line_item_service/create_line_items.rb
808
+ - examples/v201311/line_item_service/create_mobile_line_item.rb
809
+ - examples/v201311/line_item_service/create_video_line_item.rb
810
+ - examples/v201311/line_item_service/get_all_line_items.rb
811
+ - examples/v201311/line_item_service/get_line_item.rb
812
+ - examples/v201311/line_item_service/get_line_items_by_statement.rb
813
+ - examples/v201311/line_item_service/get_recently_updated_line_items.rb
814
+ - examples/v201311/line_item_service/target_custom_criteria.rb
815
+ - examples/v201311/line_item_service/update_line_items.rb
816
+ - examples/v201311/network_service/get_all_networks.rb
817
+ - examples/v201311/network_service/get_current_network.rb
818
+ - examples/v201311/network_service/make_test_network.rb
819
+ - examples/v201311/order_service/approve_orders.rb
820
+ - examples/v201311/order_service/create_orders.rb
821
+ - examples/v201311/order_service/get_all_orders.rb
822
+ - examples/v201311/order_service/get_order.rb
823
+ - examples/v201311/order_service/get_orders_by_statement.rb
824
+ - examples/v201311/order_service/update_orders.rb
825
+ - examples/v201311/placement_service/create_placements.rb
826
+ - examples/v201311/placement_service/deactivate_placements.rb
827
+ - examples/v201311/placement_service/get_all_placements.rb
828
+ - examples/v201311/placement_service/get_placement.rb
829
+ - examples/v201311/placement_service/get_placements_by_statement.rb
830
+ - examples/v201311/placement_service/update_placements.rb
831
+ - examples/v201311/publisher_query_language_service/fetch_match_tables.rb
832
+ - examples/v201311/publisher_query_language_service/get_all_line_items.rb
833
+ - examples/v201311/publisher_query_language_service/get_geo_targets.rb
834
+ - examples/v201311/publisher_query_language_service/get_line_items_named_like.rb
835
+ - examples/v201311/report_service/display_report.rb
836
+ - examples/v201311/report_service/download_report.rb
837
+ - examples/v201311/report_service/run_delivery_report.rb
838
+ - examples/v201311/report_service/run_inventory_report.rb
839
+ - examples/v201311/report_service/run_merged_delivery_report.rb
840
+ - examples/v201311/report_service/run_reach_report.rb
841
+ - examples/v201311/report_service/run_report_with_custom_fields.rb
842
+ - examples/v201311/report_service/run_sales_report.rb
843
+ - examples/v201311/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
844
+ - examples/v201311/suggested_ad_unit_service/get_all_suggested_ad_units.rb
845
+ - examples/v201311/suggested_ad_unit_service/get_suggested_ad_unit.rb
846
+ - examples/v201311/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
847
+ - examples/v201311/team_service/create_teams.rb
848
+ - examples/v201311/team_service/get_all_teams.rb
849
+ - examples/v201311/team_service/get_team.rb
850
+ - examples/v201311/team_service/get_teams_by_statement.rb
851
+ - examples/v201311/team_service/update_teams.rb
852
+ - examples/v201311/user_service/create_users.rb
853
+ - examples/v201311/user_service/deactivate_users.rb
854
+ - examples/v201311/user_service/get_all_roles.rb
855
+ - examples/v201311/user_service/get_all_users.rb
856
+ - examples/v201311/user_service/get_current_user.rb
857
+ - examples/v201311/user_service/get_user.rb
858
+ - examples/v201311/user_service/get_users_by_statement.rb
859
+ - examples/v201311/user_service/update_users.rb
860
+ - examples/v201311/user_team_association_service/create_user_team_associations.rb
861
+ - examples/v201311/user_team_association_service/delete_user_team_associations.rb
862
+ - examples/v201311/user_team_association_service/get_all_user_team_associations.rb
863
+ - examples/v201311/user_team_association_service/get_user_team_association.rb
864
+ - examples/v201311/user_team_association_service/get_user_team_associations_by_statement.rb
865
+ - examples/v201311/user_team_association_service/update_user_team_associations.rb
866
+ - examples/v201403/activity_group_service/create_activity_groups.rb
867
+ - examples/v201403/activity_group_service/get_active_activity_groups.rb
868
+ - examples/v201403/activity_group_service/get_all_activity_groups.rb
869
+ - examples/v201403/activity_group_service/update_activity_groups.rb
870
+ - examples/v201403/activity_service/create_activities.rb
871
+ - examples/v201403/activity_service/get_active_activities.rb
872
+ - examples/v201403/activity_service/get_all_activities.rb
873
+ - examples/v201403/activity_service/update_activities.rb
874
+ - examples/v201403/audience_segment_service/create_audience_segments.rb
875
+ - examples/v201403/audience_segment_service/get_all_audience_segments.rb
876
+ - examples/v201403/audience_segment_service/get_first_party_audience_segments.rb
877
+ - examples/v201403/audience_segment_service/populate_first_party_audience_segments.rb
878
+ - examples/v201403/audience_segment_service/update_audience_segments.rb
879
+ - examples/v201403/common/error_handling.rb
880
+ - examples/v201403/common/oauth2_jwt_handling.rb
881
+ - examples/v201403/common/setup_oauth2.rb
882
+ - examples/v201403/company_service/create_companies.rb
883
+ - examples/v201403/company_service/get_all_companies.rb
884
+ - examples/v201403/company_service/get_companies_by_statement.rb
885
+ - examples/v201403/company_service/update_companies.rb
886
+ - examples/v201403/contact_service/create_contacts.rb
887
+ - examples/v201403/contact_service/get_all_contacts.rb
888
+ - examples/v201403/contact_service/get_uninvited_contacts.rb
889
+ - examples/v201403/contact_service/update_contacts.rb
890
+ - examples/v201403/content_metadata_key_hierarchy_service/create_content_metadata_key_hierarchies.rb
891
+ - examples/v201403/content_metadata_key_hierarchy_service/delete_content_metadata_key_hierarchies.rb
892
+ - examples/v201403/content_metadata_key_hierarchy_service/get_all_content_metadata_key_hierarchies.rb
893
+ - examples/v201403/content_metadata_key_hierarchy_service/update_content_metadata_key_hierarchies.rb
894
+ - examples/v201403/content_service/get_all_content.rb
895
+ - examples/v201403/content_service/get_content_by_category.rb
896
+ - examples/v201403/creative_service/copy_image_creatives.rb
897
+ - examples/v201403/creative_service/create_creative_from_template.rb
898
+ - examples/v201403/creative_service/create_creatives.rb
899
+ - examples/v201403/creative_service/create_custom_creative.rb
900
+ - examples/v201403/creative_service/get_all_creatives.rb
901
+ - examples/v201403/creative_service/get_creatives_by_statement.rb
902
+ - examples/v201403/creative_service/update_creatives.rb
903
+ - examples/v201403/creative_set_service/associate_creative_set_to_line_item.rb
904
+ - examples/v201403/creative_set_service/create_creative_set.rb
905
+ - examples/v201403/creative_set_service/get_all_creative_sets.rb
906
+ - examples/v201403/creative_set_service/get_creative_sets_by_statement.rb
907
+ - examples/v201403/creative_set_service/update_creative_sets.rb
908
+ - examples/v201403/creative_template_service/get_all_creative_templates.rb
909
+ - examples/v201403/creative_template_service/get_creative_template.rb
910
+ - examples/v201403/creative_template_service/get_creative_templates_by_statement.rb
911
+ - examples/v201403/creative_wrapper_service/create_creative_wrappers.rb
912
+ - examples/v201403/creative_wrapper_service/deactivate_creative_wrapper.rb
913
+ - examples/v201403/creative_wrapper_service/get_all_creative_wrappers.rb
914
+ - examples/v201403/creative_wrapper_service/get_creative_wrappers_by_statement.rb
915
+ - examples/v201403/creative_wrapper_service/update_creative_wrappers.rb
916
+ - examples/v201403/custom_field_service/create_custom_field_options.rb
917
+ - examples/v201403/custom_field_service/create_custom_fields.rb
918
+ - examples/v201403/custom_field_service/deactivate_all_line_item_custom_fields.rb
919
+ - examples/v201403/custom_field_service/get_all_custom_fields.rb
920
+ - examples/v201403/custom_field_service/get_all_line_item_custom_fields.rb
921
+ - examples/v201403/custom_field_service/set_line_item_custom_field_value.rb
922
+ - examples/v201403/custom_field_service/update_custom_fields.rb
923
+ - examples/v201403/custom_targeting_service/create_custom_targeting_keys_and_values.rb
924
+ - examples/v201403/custom_targeting_service/delete_custom_targeting_keys.rb
925
+ - examples/v201403/custom_targeting_service/delete_custom_targeting_values.rb
926
+ - examples/v201403/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
927
+ - examples/v201403/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
928
+ - examples/v201403/custom_targeting_service/get_custom_targeting_values_by_statement.rb
929
+ - examples/v201403/custom_targeting_service/update_custom_targeting_keys.rb
930
+ - examples/v201403/custom_targeting_service/update_custom_targeting_values.rb
931
+ - examples/v201403/forecast_service/get_forecast.rb
932
+ - examples/v201403/forecast_service/get_forecast_by_id.rb
933
+ - examples/v201403/inventory_service/create_ad_units.rb
934
+ - examples/v201403/inventory_service/create_mobile_ad_unit.rb
935
+ - examples/v201403/inventory_service/create_video_ad_unit.rb
936
+ - examples/v201403/inventory_service/deactivate_ad_units.rb
937
+ - examples/v201403/inventory_service/get_ad_unit_sizes.rb
938
+ - examples/v201403/inventory_service/get_ad_units_by_statement.rb
939
+ - examples/v201403/inventory_service/get_all_ad_units.rb
940
+ - examples/v201403/inventory_service/update_ad_units.rb
941
+ - examples/v201403/label_service/create_labels.rb
942
+ - examples/v201403/label_service/deactivate_labels.rb
943
+ - examples/v201403/label_service/get_all_labels.rb
944
+ - examples/v201403/label_service/get_labels_by_statement.rb
945
+ - examples/v201403/label_service/update_labels.rb
946
+ - examples/v201403/line_item_creative_association_service/create_licas.rb
947
+ - examples/v201403/line_item_creative_association_service/deactivate_licas.rb
948
+ - examples/v201403/line_item_creative_association_service/get_all_licas.rb
949
+ - examples/v201403/line_item_creative_association_service/get_licas_by_statement.rb
950
+ - examples/v201403/line_item_creative_association_service/update_licas.rb
951
+ - examples/v201403/line_item_service/activate_line_items.rb
952
+ - examples/v201403/line_item_service/create_line_items.rb
953
+ - examples/v201403/line_item_service/create_mobile_line_item.rb
954
+ - examples/v201403/line_item_service/create_video_line_item.rb
955
+ - examples/v201403/line_item_service/get_all_line_items.rb
956
+ - examples/v201403/line_item_service/get_line_items_by_statement.rb
957
+ - examples/v201403/line_item_service/get_recently_updated_line_items.rb
958
+ - examples/v201403/line_item_service/target_custom_criteria.rb
959
+ - examples/v201403/line_item_service/update_line_items.rb
960
+ - examples/v201403/network_service/get_all_networks.rb
961
+ - examples/v201403/network_service/get_current_network.rb
962
+ - examples/v201403/network_service/make_test_network.rb
963
+ - examples/v201403/order_service/approve_orders.rb
964
+ - examples/v201403/order_service/create_orders.rb
965
+ - examples/v201403/order_service/get_all_orders.rb
966
+ - examples/v201403/order_service/get_orders_by_statement.rb
967
+ - examples/v201403/order_service/update_orders.rb
968
+ - examples/v201403/placement_service/create_placements.rb
969
+ - examples/v201403/placement_service/deactivate_placements.rb
970
+ - examples/v201403/placement_service/get_all_placements.rb
971
+ - examples/v201403/placement_service/get_placements_by_statement.rb
972
+ - examples/v201403/placement_service/update_placements.rb
973
+ - examples/v201403/publisher_query_language_service/fetch_match_tables.rb
974
+ - examples/v201403/publisher_query_language_service/get_all_line_items.rb
975
+ - examples/v201403/publisher_query_language_service/get_geo_targets.rb
976
+ - examples/v201403/publisher_query_language_service/get_line_items_named_like.rb
977
+ - examples/v201403/report_service/display_report.rb
978
+ - examples/v201403/report_service/download_report.rb
979
+ - examples/v201403/report_service/run_delivery_report.rb
980
+ - examples/v201403/report_service/run_inventory_report.rb
981
+ - examples/v201403/report_service/run_merged_delivery_report.rb
982
+ - examples/v201403/report_service/run_reach_report.rb
983
+ - examples/v201403/report_service/run_report_with_custom_fields.rb
984
+ - examples/v201403/report_service/run_sales_report.rb
985
+ - examples/v201403/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
986
+ - examples/v201403/suggested_ad_unit_service/get_all_suggested_ad_units.rb
987
+ - examples/v201403/suggested_ad_unit_service/get_suggested_ad_unit.rb
988
+ - examples/v201403/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
989
+ - examples/v201403/team_service/create_teams.rb
990
+ - examples/v201403/team_service/get_all_teams.rb
991
+ - examples/v201403/team_service/get_teams_by_statement.rb
992
+ - examples/v201403/team_service/update_teams.rb
993
+ - examples/v201403/user_service/create_users.rb
994
+ - examples/v201403/user_service/deactivate_users.rb
995
+ - examples/v201403/user_service/get_all_roles.rb
996
+ - examples/v201403/user_service/get_all_users.rb
997
+ - examples/v201403/user_service/get_current_user.rb
998
+ - examples/v201403/user_service/get_users_by_statement.rb
999
+ - examples/v201403/user_service/update_users.rb
1000
+ - examples/v201403/user_team_association_service/create_user_team_associations.rb
1001
+ - examples/v201403/user_team_association_service/delete_user_team_associations.rb
1002
+ - examples/v201403/user_team_association_service/get_all_user_team_associations.rb
1003
+ - examples/v201403/user_team_association_service/get_user_team_associations_by_statement.rb
1004
+ - examples/v201403/user_team_association_service/update_user_team_associations.rb
1005
+ - examples/v201405/activity_group_service/create_activity_groups.rb
1006
+ - examples/v201405/activity_group_service/get_active_activity_groups.rb
1007
+ - examples/v201405/activity_group_service/get_all_activity_groups.rb
1008
+ - examples/v201405/activity_group_service/update_activity_groups.rb
1009
+ - examples/v201405/activity_service/create_activities.rb
1010
+ - examples/v201405/activity_service/get_active_activities.rb
1011
+ - examples/v201405/activity_service/get_all_activities.rb
1012
+ - examples/v201405/activity_service/update_activities.rb
1013
+ - examples/v201405/audience_segment_service/create_audience_segments.rb
1014
+ - examples/v201405/audience_segment_service/get_all_audience_segments.rb
1015
+ - examples/v201405/audience_segment_service/get_first_party_audience_segments.rb
1016
+ - examples/v201405/audience_segment_service/populate_first_party_audience_segments.rb
1017
+ - examples/v201405/audience_segment_service/update_audience_segments.rb
1018
+ - examples/v201405/common/error_handling.rb
1019
+ - examples/v201405/common/oauth2_jwt_handling.rb
1020
+ - examples/v201405/common/setup_oauth2.rb
1021
+ - examples/v201405/company_service/create_companies.rb
1022
+ - examples/v201405/company_service/get_all_companies.rb
1023
+ - examples/v201405/company_service/get_companies_by_statement.rb
1024
+ - examples/v201405/company_service/update_companies.rb
1025
+ - examples/v201405/contact_service/create_contacts.rb
1026
+ - examples/v201405/contact_service/get_all_contacts.rb
1027
+ - examples/v201405/contact_service/get_uninvited_contacts.rb
1028
+ - examples/v201405/contact_service/update_contacts.rb
1029
+ - examples/v201405/content_metadata_key_hierarchy_service/create_content_metadata_key_hierarchies.rb
1030
+ - examples/v201405/content_metadata_key_hierarchy_service/delete_content_metadata_key_hierarchies.rb
1031
+ - examples/v201405/content_metadata_key_hierarchy_service/get_all_content_metadata_key_hierarchies.rb
1032
+ - examples/v201405/content_metadata_key_hierarchy_service/update_content_metadata_key_hierarchies.rb
1033
+ - examples/v201405/content_service/get_all_content.rb
1034
+ - examples/v201405/content_service/get_content_by_category.rb
1035
+ - examples/v201405/creative_service/copy_image_creatives.rb
1036
+ - examples/v201405/creative_service/create_creative_from_template.rb
1037
+ - examples/v201405/creative_service/create_creatives.rb
1038
+ - examples/v201405/creative_service/create_custom_creative.rb
1039
+ - examples/v201405/creative_service/get_all_creatives.rb
1040
+ - examples/v201405/creative_service/get_creatives_by_statement.rb
1041
+ - examples/v201405/creative_service/update_creatives.rb
1042
+ - examples/v201405/creative_set_service/associate_creative_set_to_line_item.rb
1043
+ - examples/v201405/creative_set_service/create_creative_set.rb
1044
+ - examples/v201405/creative_set_service/get_all_creative_sets.rb
1045
+ - examples/v201405/creative_set_service/get_creative_sets_by_statement.rb
1046
+ - examples/v201405/creative_set_service/update_creative_sets.rb
1047
+ - examples/v201405/creative_template_service/get_all_creative_templates.rb
1048
+ - examples/v201405/creative_template_service/get_creative_template.rb
1049
+ - examples/v201405/creative_template_service/get_creative_templates_by_statement.rb
1050
+ - examples/v201405/creative_wrapper_service/create_creative_wrappers.rb
1051
+ - examples/v201405/creative_wrapper_service/deactivate_creative_wrapper.rb
1052
+ - examples/v201405/creative_wrapper_service/get_all_creative_wrappers.rb
1053
+ - examples/v201405/creative_wrapper_service/get_creative_wrappers_by_statement.rb
1054
+ - examples/v201405/creative_wrapper_service/update_creative_wrappers.rb
1055
+ - examples/v201405/custom_field_service/create_custom_field_options.rb
1056
+ - examples/v201405/custom_field_service/create_custom_fields.rb
1057
+ - examples/v201405/custom_field_service/deactivate_all_line_item_custom_fields.rb
1058
+ - examples/v201405/custom_field_service/get_all_custom_fields.rb
1059
+ - examples/v201405/custom_field_service/get_all_line_item_custom_fields.rb
1060
+ - examples/v201405/custom_field_service/set_line_item_custom_field_value.rb
1061
+ - examples/v201405/custom_field_service/update_custom_fields.rb
1062
+ - examples/v201405/custom_targeting_service/create_custom_targeting_keys_and_values.rb
1063
+ - examples/v201405/custom_targeting_service/delete_custom_targeting_keys.rb
1064
+ - examples/v201405/custom_targeting_service/delete_custom_targeting_values.rb
1065
+ - examples/v201405/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb
1066
+ - examples/v201405/custom_targeting_service/get_custom_targeting_keys_by_statement.rb
1067
+ - examples/v201405/custom_targeting_service/get_custom_targeting_values_by_statement.rb
1068
+ - examples/v201405/custom_targeting_service/update_custom_targeting_keys.rb
1069
+ - examples/v201405/custom_targeting_service/update_custom_targeting_values.rb
1070
+ - examples/v201405/forecast_service/get_forecast.rb
1071
+ - examples/v201405/forecast_service/get_forecast_by_id.rb
1072
+ - examples/v201405/inventory_service/create_ad_units.rb
1073
+ - examples/v201405/inventory_service/create_mobile_ad_unit.rb
1074
+ - examples/v201405/inventory_service/create_video_ad_unit.rb
1075
+ - examples/v201405/inventory_service/deactivate_ad_units.rb
1076
+ - examples/v201405/inventory_service/get_ad_unit_sizes.rb
1077
+ - examples/v201405/inventory_service/get_ad_units_by_statement.rb
1078
+ - examples/v201405/inventory_service/get_all_ad_units.rb
1079
+ - examples/v201405/inventory_service/update_ad_units.rb
1080
+ - examples/v201405/label_service/create_labels.rb
1081
+ - examples/v201405/label_service/deactivate_labels.rb
1082
+ - examples/v201405/label_service/get_all_labels.rb
1083
+ - examples/v201405/label_service/get_labels_by_statement.rb
1084
+ - examples/v201405/label_service/update_labels.rb
1085
+ - examples/v201405/line_item_creative_association_service/create_licas.rb
1086
+ - examples/v201405/line_item_creative_association_service/deactivate_licas.rb
1087
+ - examples/v201405/line_item_creative_association_service/get_all_licas.rb
1088
+ - examples/v201405/line_item_creative_association_service/get_licas_by_statement.rb
1089
+ - examples/v201405/line_item_creative_association_service/update_licas.rb
1090
+ - examples/v201405/line_item_service/activate_line_items.rb
1091
+ - examples/v201405/line_item_service/create_line_items.rb
1092
+ - examples/v201405/line_item_service/create_video_line_item.rb
1093
+ - examples/v201405/line_item_service/get_all_line_items.rb
1094
+ - examples/v201405/line_item_service/get_line_items_by_statement.rb
1095
+ - examples/v201405/line_item_service/get_recently_updated_line_items.rb
1096
+ - examples/v201405/line_item_service/target_custom_criteria.rb
1097
+ - examples/v201405/line_item_service/update_line_items.rb
1098
+ - examples/v201405/network_service/get_all_networks.rb
1099
+ - examples/v201405/network_service/get_current_network.rb
1100
+ - examples/v201405/network_service/make_test_network.rb
1101
+ - examples/v201405/order_service/approve_orders.rb
1102
+ - examples/v201405/order_service/create_orders.rb
1103
+ - examples/v201405/order_service/get_all_orders.rb
1104
+ - examples/v201405/order_service/get_orders_by_statement.rb
1105
+ - examples/v201405/order_service/update_orders.rb
1106
+ - examples/v201405/placement_service/create_placements.rb
1107
+ - examples/v201405/placement_service/deactivate_placements.rb
1108
+ - examples/v201405/placement_service/get_all_placements.rb
1109
+ - examples/v201405/placement_service/get_placements_by_statement.rb
1110
+ - examples/v201405/placement_service/update_placements.rb
1111
+ - examples/v201405/publisher_query_language_service/fetch_match_tables.rb
1112
+ - examples/v201405/publisher_query_language_service/get_all_line_items.rb
1113
+ - examples/v201405/publisher_query_language_service/get_geo_targets.rb
1114
+ - examples/v201405/publisher_query_language_service/get_line_items_named_like.rb
1115
+ - examples/v201405/report_service/display_report.rb
1116
+ - examples/v201405/report_service/download_report.rb
1117
+ - examples/v201405/report_service/run_delivery_report.rb
1118
+ - examples/v201405/report_service/run_inventory_report.rb
1119
+ - examples/v201405/report_service/run_merged_delivery_report.rb
1120
+ - examples/v201405/report_service/run_reach_report.rb
1121
+ - examples/v201405/report_service/run_report_with_custom_fields.rb
1122
+ - examples/v201405/report_service/run_sales_report.rb
1123
+ - examples/v201405/suggested_ad_unit_service/approve_all_suggested_ad_units.rb
1124
+ - examples/v201405/suggested_ad_unit_service/get_all_suggested_ad_units.rb
1125
+ - examples/v201405/suggested_ad_unit_service/get_suggested_ad_unit.rb
1126
+ - examples/v201405/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb
1127
+ - examples/v201405/team_service/create_teams.rb
1128
+ - examples/v201405/team_service/get_all_teams.rb
1129
+ - examples/v201405/team_service/get_teams_by_statement.rb
1130
+ - examples/v201405/team_service/update_teams.rb
1131
+ - examples/v201405/user_service/create_users.rb
1132
+ - examples/v201405/user_service/deactivate_users.rb
1133
+ - examples/v201405/user_service/get_all_roles.rb
1134
+ - examples/v201405/user_service/get_all_users.rb
1135
+ - examples/v201405/user_service/get_current_user.rb
1136
+ - examples/v201405/user_service/get_users_by_statement.rb
1137
+ - examples/v201405/user_service/update_users.rb
1138
+ - examples/v201405/user_team_association_service/create_user_team_associations.rb
1139
+ - examples/v201405/user_team_association_service/delete_user_team_associations.rb
1140
+ - examples/v201405/user_team_association_service/get_all_user_team_associations.rb
1141
+ - examples/v201405/user_team_association_service/get_user_team_associations_by_statement.rb
1142
+ - examples/v201405/user_team_association_service/update_user_team_associations.rb
1143
+ - lib/dfp_api.rb
1144
+ - lib/dfp_api/api_config.rb
1145
+ - lib/dfp_api/client_login_header_handler.rb
1146
+ - lib/dfp_api/credential_handler.rb
1147
+ - lib/dfp_api/errors.rb
1148
+ - lib/dfp_api/v201208/audience_segment_service.rb
1149
+ - lib/dfp_api/v201208/audience_segment_service_registry.rb
1150
+ - lib/dfp_api/v201208/company_service.rb
1151
+ - lib/dfp_api/v201208/company_service_registry.rb
1152
+ - lib/dfp_api/v201208/content_service.rb
1153
+ - lib/dfp_api/v201208/content_service_registry.rb
1154
+ - lib/dfp_api/v201208/creative_service.rb
1155
+ - lib/dfp_api/v201208/creative_service_registry.rb
1156
+ - lib/dfp_api/v201208/creative_set_service.rb
1157
+ - lib/dfp_api/v201208/creative_set_service_registry.rb
1158
+ - lib/dfp_api/v201208/creative_template_service.rb
1159
+ - lib/dfp_api/v201208/creative_template_service_registry.rb
1160
+ - lib/dfp_api/v201208/custom_field_service.rb
1161
+ - lib/dfp_api/v201208/custom_field_service_registry.rb
1162
+ - lib/dfp_api/v201208/custom_targeting_service.rb
1163
+ - lib/dfp_api/v201208/custom_targeting_service_registry.rb
1164
+ - lib/dfp_api/v201208/forecast_service.rb
1165
+ - lib/dfp_api/v201208/forecast_service_registry.rb
1166
+ - lib/dfp_api/v201208/inventory_service.rb
1167
+ - lib/dfp_api/v201208/inventory_service_registry.rb
1168
+ - lib/dfp_api/v201208/label_service.rb
1169
+ - lib/dfp_api/v201208/label_service_registry.rb
1170
+ - lib/dfp_api/v201208/line_item_creative_association_service.rb
1171
+ - lib/dfp_api/v201208/line_item_creative_association_service_registry.rb
1172
+ - lib/dfp_api/v201208/line_item_service.rb
1173
+ - lib/dfp_api/v201208/line_item_service_registry.rb
1174
+ - lib/dfp_api/v201208/network_service.rb
1175
+ - lib/dfp_api/v201208/network_service_registry.rb
1176
+ - lib/dfp_api/v201208/order_service.rb
1177
+ - lib/dfp_api/v201208/order_service_registry.rb
1178
+ - lib/dfp_api/v201208/placement_service.rb
1179
+ - lib/dfp_api/v201208/placement_service_registry.rb
1180
+ - lib/dfp_api/v201208/publisher_query_language_service.rb
1181
+ - lib/dfp_api/v201208/publisher_query_language_service_registry.rb
1182
+ - lib/dfp_api/v201208/report_service.rb
1183
+ - lib/dfp_api/v201208/report_service_registry.rb
1184
+ - lib/dfp_api/v201208/suggested_ad_unit_service.rb
1185
+ - lib/dfp_api/v201208/suggested_ad_unit_service_registry.rb
1186
+ - lib/dfp_api/v201208/team_service.rb
1187
+ - lib/dfp_api/v201208/team_service_registry.rb
1188
+ - lib/dfp_api/v201208/third_party_slot_service.rb
1189
+ - lib/dfp_api/v201208/third_party_slot_service_registry.rb
1190
+ - lib/dfp_api/v201208/user_service.rb
1191
+ - lib/dfp_api/v201208/user_service_registry.rb
1192
+ - lib/dfp_api/v201208/user_team_association_service.rb
1193
+ - lib/dfp_api/v201208/user_team_association_service_registry.rb
1194
+ - lib/dfp_api/v201211/audience_segment_service.rb
1195
+ - lib/dfp_api/v201211/audience_segment_service_registry.rb
1196
+ - lib/dfp_api/v201211/company_service.rb
1197
+ - lib/dfp_api/v201211/company_service_registry.rb
1198
+ - lib/dfp_api/v201211/content_service.rb
1199
+ - lib/dfp_api/v201211/content_service_registry.rb
1200
+ - lib/dfp_api/v201211/creative_service.rb
1201
+ - lib/dfp_api/v201211/creative_service_registry.rb
1202
+ - lib/dfp_api/v201211/creative_set_service.rb
1203
+ - lib/dfp_api/v201211/creative_set_service_registry.rb
1204
+ - lib/dfp_api/v201211/creative_template_service.rb
1205
+ - lib/dfp_api/v201211/creative_template_service_registry.rb
1206
+ - lib/dfp_api/v201211/creative_wrapper_service.rb
1207
+ - lib/dfp_api/v201211/creative_wrapper_service_registry.rb
1208
+ - lib/dfp_api/v201211/custom_field_service.rb
1209
+ - lib/dfp_api/v201211/custom_field_service_registry.rb
1210
+ - lib/dfp_api/v201211/custom_targeting_service.rb
1211
+ - lib/dfp_api/v201211/custom_targeting_service_registry.rb
1212
+ - lib/dfp_api/v201211/forecast_service.rb
1213
+ - lib/dfp_api/v201211/forecast_service_registry.rb
1214
+ - lib/dfp_api/v201211/inventory_service.rb
1215
+ - lib/dfp_api/v201211/inventory_service_registry.rb
1216
+ - lib/dfp_api/v201211/label_service.rb
1217
+ - lib/dfp_api/v201211/label_service_registry.rb
1218
+ - lib/dfp_api/v201211/line_item_creative_association_service.rb
1219
+ - lib/dfp_api/v201211/line_item_creative_association_service_registry.rb
1220
+ - lib/dfp_api/v201211/line_item_service.rb
1221
+ - lib/dfp_api/v201211/line_item_service_registry.rb
1222
+ - lib/dfp_api/v201211/network_service.rb
1223
+ - lib/dfp_api/v201211/network_service_registry.rb
1224
+ - lib/dfp_api/v201211/order_service.rb
1225
+ - lib/dfp_api/v201211/order_service_registry.rb
1226
+ - lib/dfp_api/v201211/placement_service.rb
1227
+ - lib/dfp_api/v201211/placement_service_registry.rb
1228
+ - lib/dfp_api/v201211/publisher_query_language_service.rb
1229
+ - lib/dfp_api/v201211/publisher_query_language_service_registry.rb
1230
+ - lib/dfp_api/v201211/report_service.rb
1231
+ - lib/dfp_api/v201211/report_service_registry.rb
1232
+ - lib/dfp_api/v201211/suggested_ad_unit_service.rb
1233
+ - lib/dfp_api/v201211/suggested_ad_unit_service_registry.rb
1234
+ - lib/dfp_api/v201211/team_service.rb
1235
+ - lib/dfp_api/v201211/team_service_registry.rb
1236
+ - lib/dfp_api/v201211/third_party_slot_service.rb
1237
+ - lib/dfp_api/v201211/third_party_slot_service_registry.rb
1238
+ - lib/dfp_api/v201211/user_service.rb
1239
+ - lib/dfp_api/v201211/user_service_registry.rb
1240
+ - lib/dfp_api/v201211/user_team_association_service.rb
1241
+ - lib/dfp_api/v201211/user_team_association_service_registry.rb
1242
+ - lib/dfp_api/v201302/activity_group_service.rb
1243
+ - lib/dfp_api/v201302/activity_group_service_registry.rb
1244
+ - lib/dfp_api/v201302/activity_service.rb
1245
+ - lib/dfp_api/v201302/activity_service_registry.rb
1246
+ - lib/dfp_api/v201302/ad_rule_service.rb
1247
+ - lib/dfp_api/v201302/ad_rule_service_registry.rb
1248
+ - lib/dfp_api/v201302/audience_segment_service.rb
1249
+ - lib/dfp_api/v201302/audience_segment_service_registry.rb
1250
+ - lib/dfp_api/v201302/company_service.rb
1251
+ - lib/dfp_api/v201302/company_service_registry.rb
1252
+ - lib/dfp_api/v201302/contact_service.rb
1253
+ - lib/dfp_api/v201302/contact_service_registry.rb
1254
+ - lib/dfp_api/v201302/content_bundle_service.rb
1255
+ - lib/dfp_api/v201302/content_bundle_service_registry.rb
1256
+ - lib/dfp_api/v201302/content_service.rb
1257
+ - lib/dfp_api/v201302/content_service_registry.rb
1258
+ - lib/dfp_api/v201302/creative_service.rb
1259
+ - lib/dfp_api/v201302/creative_service_registry.rb
1260
+ - lib/dfp_api/v201302/creative_set_service.rb
1261
+ - lib/dfp_api/v201302/creative_set_service_registry.rb
1262
+ - lib/dfp_api/v201302/creative_template_service.rb
1263
+ - lib/dfp_api/v201302/creative_template_service_registry.rb
1264
+ - lib/dfp_api/v201302/creative_wrapper_service.rb
1265
+ - lib/dfp_api/v201302/creative_wrapper_service_registry.rb
1266
+ - lib/dfp_api/v201302/custom_field_service.rb
1267
+ - lib/dfp_api/v201302/custom_field_service_registry.rb
1268
+ - lib/dfp_api/v201302/custom_targeting_service.rb
1269
+ - lib/dfp_api/v201302/custom_targeting_service_registry.rb
1270
+ - lib/dfp_api/v201302/forecast_service.rb
1271
+ - lib/dfp_api/v201302/forecast_service_registry.rb
1272
+ - lib/dfp_api/v201302/inventory_service.rb
1273
+ - lib/dfp_api/v201302/inventory_service_registry.rb
1274
+ - lib/dfp_api/v201302/label_service.rb
1275
+ - lib/dfp_api/v201302/label_service_registry.rb
1276
+ - lib/dfp_api/v201302/line_item_creative_association_service.rb
1277
+ - lib/dfp_api/v201302/line_item_creative_association_service_registry.rb
1278
+ - lib/dfp_api/v201302/line_item_service.rb
1279
+ - lib/dfp_api/v201302/line_item_service_registry.rb
1280
+ - lib/dfp_api/v201302/network_service.rb
1281
+ - lib/dfp_api/v201302/network_service_registry.rb
1282
+ - lib/dfp_api/v201302/order_service.rb
1283
+ - lib/dfp_api/v201302/order_service_registry.rb
1284
+ - lib/dfp_api/v201302/placement_service.rb
1285
+ - lib/dfp_api/v201302/placement_service_registry.rb
1286
+ - lib/dfp_api/v201302/publisher_query_language_service.rb
1287
+ - lib/dfp_api/v201302/publisher_query_language_service_registry.rb
1288
+ - lib/dfp_api/v201302/report_service.rb
1289
+ - lib/dfp_api/v201302/report_service_registry.rb
1290
+ - lib/dfp_api/v201302/suggested_ad_unit_service.rb
1291
+ - lib/dfp_api/v201302/suggested_ad_unit_service_registry.rb
1292
+ - lib/dfp_api/v201302/team_service.rb
1293
+ - lib/dfp_api/v201302/team_service_registry.rb
1294
+ - lib/dfp_api/v201302/third_party_slot_service.rb
1295
+ - lib/dfp_api/v201302/third_party_slot_service_registry.rb
1296
+ - lib/dfp_api/v201302/user_service.rb
1297
+ - lib/dfp_api/v201302/user_service_registry.rb
1298
+ - lib/dfp_api/v201302/user_team_association_service.rb
1299
+ - lib/dfp_api/v201302/user_team_association_service_registry.rb
1300
+ - lib/dfp_api/v201306/activity_group_service.rb
1301
+ - lib/dfp_api/v201306/activity_group_service_registry.rb
1302
+ - lib/dfp_api/v201306/activity_service.rb
1303
+ - lib/dfp_api/v201306/activity_service_registry.rb
1304
+ - lib/dfp_api/v201306/ad_rule_service.rb
1305
+ - lib/dfp_api/v201306/ad_rule_service_registry.rb
1306
+ - lib/dfp_api/v201306/audience_segment_service.rb
1307
+ - lib/dfp_api/v201306/audience_segment_service_registry.rb
1308
+ - lib/dfp_api/v201306/base_rate_service.rb
1309
+ - lib/dfp_api/v201306/base_rate_service_registry.rb
499
1310
  - lib/dfp_api/v201306/company_service.rb
500
- - lib/dfp_api/v201306/placement_service_registry.rb
1311
+ - lib/dfp_api/v201306/company_service_registry.rb
501
1312
  - lib/dfp_api/v201306/contact_service.rb
502
- - lib/dfp_api/v201306/audience_segment_service.rb
503
- - lib/dfp_api/v201306/activity_service_registry.rb
504
- - lib/dfp_api/v201306/custom_field_service_registry.rb
505
- - lib/dfp_api/v201306/line_item_creative_association_service_registry.rb
506
- - lib/dfp_api/v201306/label_service_registry.rb
507
- - lib/dfp_api/v201306/network_service_registry.rb
508
- - lib/dfp_api/v201306/report_service_registry.rb
509
- - lib/dfp_api/v201306/creative_wrapper_service_registry.rb
510
- - lib/dfp_api/v201306/team_service.rb
511
- - lib/dfp_api/v201306/creative_wrapper_service.rb
512
1313
  - lib/dfp_api/v201306/contact_service_registry.rb
1314
+ - lib/dfp_api/v201306/content_bundle_service.rb
513
1315
  - lib/dfp_api/v201306/content_bundle_service_registry.rb
514
- - lib/dfp_api/v201306/user_team_association_service_registry.rb
1316
+ - lib/dfp_api/v201306/content_service.rb
1317
+ - lib/dfp_api/v201306/content_service_registry.rb
1318
+ - lib/dfp_api/v201306/creative_service.rb
1319
+ - lib/dfp_api/v201306/creative_service_registry.rb
515
1320
  - lib/dfp_api/v201306/creative_set_service.rb
516
- - lib/dfp_api/v201306/reconciliation_report_row_service.rb
517
- - lib/dfp_api/v201306/base_rate_service.rb
518
- - lib/dfp_api/v201306/proposal_service.rb
519
- - lib/dfp_api/v201306/publisher_query_language_service_registry.rb
520
- - lib/dfp_api/v201306/activity_service.rb
521
- - lib/dfp_api/v201306/proposal_service_registry.rb
522
- - lib/dfp_api/v201306/user_team_association_service.rb
523
- - lib/dfp_api/v201306/order_service_registry.rb
1321
+ - lib/dfp_api/v201306/creative_set_service_registry.rb
1322
+ - lib/dfp_api/v201306/creative_template_service.rb
524
1323
  - lib/dfp_api/v201306/creative_template_service_registry.rb
525
- - lib/dfp_api/v201306/label_service.rb
1324
+ - lib/dfp_api/v201306/creative_wrapper_service.rb
1325
+ - lib/dfp_api/v201306/creative_wrapper_service_registry.rb
1326
+ - lib/dfp_api/v201306/custom_field_service.rb
1327
+ - lib/dfp_api/v201306/custom_field_service_registry.rb
1328
+ - lib/dfp_api/v201306/custom_targeting_service.rb
1329
+ - lib/dfp_api/v201306/custom_targeting_service_registry.rb
526
1330
  - lib/dfp_api/v201306/forecast_service.rb
527
- - lib/dfp_api/v201306/report_service.rb
528
1331
  - lib/dfp_api/v201306/forecast_service_registry.rb
1332
+ - lib/dfp_api/v201306/inventory_service.rb
529
1333
  - lib/dfp_api/v201306/inventory_service_registry.rb
530
- - lib/dfp_api/v201306/product_template_service_registry.rb
531
- - lib/dfp_api/v201306/workflow_action_service_registry.rb
532
- - lib/dfp_api/v201306/activity_group_service_registry.rb
533
- - lib/dfp_api/v201306/content_service_registry.rb
534
- - lib/dfp_api/v201306/line_item_template_service.rb
535
- - lib/dfp_api/v201306/rate_card_service_registry.rb
536
- - lib/dfp_api/v201306/custom_targeting_service_registry.rb
537
- - lib/dfp_api/v201306/custom_targeting_service.rb
538
- - lib/dfp_api/v201306/line_item_creative_association_service.rb
539
- - lib/dfp_api/v201306/base_rate_service_registry.rb
540
- - lib/dfp_api/v201306/proposal_line_item_service_registry.rb
541
- - lib/dfp_api/v201306/suggested_ad_unit_service_registry.rb
542
- - lib/dfp_api/v201306/network_service.rb
543
- - lib/dfp_api/v201306/ad_rule_service_registry.rb
544
- - lib/dfp_api/v201306/product_template_service.rb
545
- - lib/dfp_api/v201306/custom_field_service.rb
546
- - lib/dfp_api/v201306/company_service_registry.rb
547
- - lib/dfp_api/v201306/user_service_registry.rb
548
- - lib/dfp_api/v201306/team_service_registry.rb
549
- - lib/dfp_api/v201306/reconciliation_report_service_registry.rb
550
- - lib/dfp_api/v201306/workflow_action_service.rb
551
- - lib/dfp_api/v201306/reconciliation_order_report_service.rb
552
- - lib/dfp_api/v201306/line_item_template_service_registry.rb
553
- - lib/dfp_api/v201306/creative_service.rb
554
- - lib/dfp_api/v201306/proposal_line_item_service.rb
555
- - lib/dfp_api/v201306/activity_group_service.rb
556
- - lib/dfp_api/v201306/publisher_query_language_service.rb
557
- - lib/dfp_api/v201306/reconciliation_report_row_service_registry.rb
558
- - lib/dfp_api/v201306/content_service.rb
559
- - lib/dfp_api/v201306/product_service.rb
560
- - lib/dfp_api/v201306/creative_template_service.rb
561
- - lib/dfp_api/v201306/creative_set_service_registry.rb
562
- - lib/dfp_api/v201306/ad_rule_service.rb
563
- - lib/dfp_api/v201306/rate_card_service.rb
564
- - lib/dfp_api/v201306/user_service.rb
565
- - lib/dfp_api/v201306/creative_service_registry.rb
566
- - lib/dfp_api/v201306/content_bundle_service.rb
1334
+ - lib/dfp_api/v201306/label_service.rb
1335
+ - lib/dfp_api/v201306/label_service_registry.rb
1336
+ - lib/dfp_api/v201306/line_item_creative_association_service.rb
1337
+ - lib/dfp_api/v201306/line_item_creative_association_service_registry.rb
1338
+ - lib/dfp_api/v201306/line_item_service.rb
1339
+ - lib/dfp_api/v201306/line_item_service_registry.rb
1340
+ - lib/dfp_api/v201306/line_item_template_service.rb
1341
+ - lib/dfp_api/v201306/line_item_template_service_registry.rb
1342
+ - lib/dfp_api/v201306/network_service.rb
1343
+ - lib/dfp_api/v201306/network_service_registry.rb
567
1344
  - lib/dfp_api/v201306/order_service.rb
568
- - lib/dfp_api/v201306/audience_segment_service_registry.rb
1345
+ - lib/dfp_api/v201306/order_service_registry.rb
1346
+ - lib/dfp_api/v201306/placement_service.rb
1347
+ - lib/dfp_api/v201306/placement_service_registry.rb
1348
+ - lib/dfp_api/v201306/product_service.rb
569
1349
  - lib/dfp_api/v201306/product_service_registry.rb
570
- - lib/dfp_api/v201306/line_item_service.rb
1350
+ - lib/dfp_api/v201306/product_template_service.rb
1351
+ - lib/dfp_api/v201306/product_template_service_registry.rb
1352
+ - lib/dfp_api/v201306/proposal_line_item_service.rb
1353
+ - lib/dfp_api/v201306/proposal_line_item_service_registry.rb
1354
+ - lib/dfp_api/v201306/proposal_service.rb
1355
+ - lib/dfp_api/v201306/proposal_service_registry.rb
1356
+ - lib/dfp_api/v201306/publisher_query_language_service.rb
1357
+ - lib/dfp_api/v201306/publisher_query_language_service_registry.rb
571
1358
  - lib/dfp_api/v201306/rate_card_customization_service.rb
572
- - lib/dfp_api/v201306/placement_service.rb
1359
+ - lib/dfp_api/v201306/rate_card_customization_service_registry.rb
1360
+ - lib/dfp_api/v201306/rate_card_service.rb
1361
+ - lib/dfp_api/v201306/rate_card_service_registry.rb
1362
+ - lib/dfp_api/v201306/reconciliation_order_report_service.rb
1363
+ - lib/dfp_api/v201306/reconciliation_order_report_service_registry.rb
1364
+ - lib/dfp_api/v201306/reconciliation_report_row_service.rb
1365
+ - lib/dfp_api/v201306/reconciliation_report_row_service_registry.rb
573
1366
  - lib/dfp_api/v201306/reconciliation_report_service.rb
574
- - lib/dfp_api/v201306/inventory_service.rb
575
- - lib/dfp_api/v201306/line_item_service_registry.rb
576
- - lib/dfp_api/errors.rb
577
- - lib/dfp_api/v201211/suggested_ad_unit_service.rb
578
- - lib/dfp_api/v201211/company_service.rb
579
- - lib/dfp_api/v201211/placement_service_registry.rb
580
- - lib/dfp_api/v201211/audience_segment_service.rb
581
- - lib/dfp_api/v201211/custom_field_service_registry.rb
582
- - lib/dfp_api/v201211/line_item_creative_association_service_registry.rb
583
- - lib/dfp_api/v201211/label_service_registry.rb
584
- - lib/dfp_api/v201211/network_service_registry.rb
585
- - lib/dfp_api/v201211/report_service_registry.rb
586
- - lib/dfp_api/v201211/creative_wrapper_service_registry.rb
587
- - lib/dfp_api/v201211/team_service.rb
588
- - lib/dfp_api/v201211/creative_wrapper_service.rb
589
- - lib/dfp_api/v201211/user_team_association_service_registry.rb
590
- - lib/dfp_api/v201211/creative_set_service.rb
591
- - lib/dfp_api/v201211/publisher_query_language_service_registry.rb
592
- - lib/dfp_api/v201211/user_team_association_service.rb
593
- - lib/dfp_api/v201211/order_service_registry.rb
594
- - lib/dfp_api/v201211/creative_template_service_registry.rb
595
- - lib/dfp_api/v201211/label_service.rb
596
- - lib/dfp_api/v201211/forecast_service.rb
597
- - lib/dfp_api/v201211/report_service.rb
598
- - lib/dfp_api/v201211/forecast_service_registry.rb
599
- - lib/dfp_api/v201211/inventory_service_registry.rb
600
- - lib/dfp_api/v201211/content_service_registry.rb
601
- - lib/dfp_api/v201211/custom_targeting_service_registry.rb
602
- - lib/dfp_api/v201211/custom_targeting_service.rb
603
- - lib/dfp_api/v201211/third_party_slot_service_registry.rb
604
- - lib/dfp_api/v201211/line_item_creative_association_service.rb
605
- - lib/dfp_api/v201211/suggested_ad_unit_service_registry.rb
606
- - lib/dfp_api/v201211/network_service.rb
607
- - lib/dfp_api/v201211/custom_field_service.rb
608
- - lib/dfp_api/v201211/company_service_registry.rb
609
- - lib/dfp_api/v201211/user_service_registry.rb
610
- - lib/dfp_api/v201211/team_service_registry.rb
611
- - lib/dfp_api/v201211/creative_service.rb
612
- - lib/dfp_api/v201211/publisher_query_language_service.rb
613
- - lib/dfp_api/v201211/content_service.rb
614
- - lib/dfp_api/v201211/creative_template_service.rb
615
- - lib/dfp_api/v201211/creative_set_service_registry.rb
616
- - lib/dfp_api/v201211/user_service.rb
617
- - lib/dfp_api/v201211/creative_service_registry.rb
618
- - lib/dfp_api/v201211/order_service.rb
619
- - lib/dfp_api/v201211/audience_segment_service_registry.rb
620
- - lib/dfp_api/v201211/line_item_service.rb
621
- - lib/dfp_api/v201211/placement_service.rb
622
- - lib/dfp_api/v201211/inventory_service.rb
623
- - lib/dfp_api/v201211/line_item_service_registry.rb
624
- - lib/dfp_api/v201211/third_party_slot_service.rb
625
- - lib/dfp_api/v201311/reconciliation_order_report_service_registry.rb
626
- - lib/dfp_api/v201311/rate_card_customization_service_registry.rb
627
- - lib/dfp_api/v201311/suggested_ad_unit_service.rb
1367
+ - lib/dfp_api/v201306/reconciliation_report_service_registry.rb
1368
+ - lib/dfp_api/v201306/report_service.rb
1369
+ - lib/dfp_api/v201306/report_service_registry.rb
1370
+ - lib/dfp_api/v201306/suggested_ad_unit_service.rb
1371
+ - lib/dfp_api/v201306/suggested_ad_unit_service_registry.rb
1372
+ - lib/dfp_api/v201306/team_service.rb
1373
+ - lib/dfp_api/v201306/team_service_registry.rb
1374
+ - lib/dfp_api/v201306/user_service.rb
1375
+ - lib/dfp_api/v201306/user_service_registry.rb
1376
+ - lib/dfp_api/v201306/user_team_association_service.rb
1377
+ - lib/dfp_api/v201306/user_team_association_service_registry.rb
1378
+ - lib/dfp_api/v201306/workflow_action_service.rb
1379
+ - lib/dfp_api/v201306/workflow_action_service_registry.rb
1380
+ - lib/dfp_api/v201308/activity_group_service.rb
1381
+ - lib/dfp_api/v201308/activity_group_service_registry.rb
1382
+ - lib/dfp_api/v201308/activity_service.rb
1383
+ - lib/dfp_api/v201308/activity_service_registry.rb
1384
+ - lib/dfp_api/v201308/ad_rule_service.rb
1385
+ - lib/dfp_api/v201308/ad_rule_service_registry.rb
1386
+ - lib/dfp_api/v201308/audience_segment_service.rb
1387
+ - lib/dfp_api/v201308/audience_segment_service_registry.rb
1388
+ - lib/dfp_api/v201308/base_rate_service.rb
1389
+ - lib/dfp_api/v201308/base_rate_service_registry.rb
1390
+ - lib/dfp_api/v201308/company_service.rb
1391
+ - lib/dfp_api/v201308/company_service_registry.rb
1392
+ - lib/dfp_api/v201308/contact_service.rb
1393
+ - lib/dfp_api/v201308/contact_service_registry.rb
1394
+ - lib/dfp_api/v201308/content_bundle_service.rb
1395
+ - lib/dfp_api/v201308/content_bundle_service_registry.rb
1396
+ - lib/dfp_api/v201308/content_service.rb
1397
+ - lib/dfp_api/v201308/content_service_registry.rb
1398
+ - lib/dfp_api/v201308/creative_service.rb
1399
+ - lib/dfp_api/v201308/creative_service_registry.rb
1400
+ - lib/dfp_api/v201308/creative_set_service.rb
1401
+ - lib/dfp_api/v201308/creative_set_service_registry.rb
1402
+ - lib/dfp_api/v201308/creative_template_service.rb
1403
+ - lib/dfp_api/v201308/creative_template_service_registry.rb
1404
+ - lib/dfp_api/v201308/creative_wrapper_service.rb
1405
+ - lib/dfp_api/v201308/creative_wrapper_service_registry.rb
1406
+ - lib/dfp_api/v201308/custom_field_service.rb
1407
+ - lib/dfp_api/v201308/custom_field_service_registry.rb
1408
+ - lib/dfp_api/v201308/custom_targeting_service.rb
1409
+ - lib/dfp_api/v201308/custom_targeting_service_registry.rb
1410
+ - lib/dfp_api/v201308/forecast_service.rb
1411
+ - lib/dfp_api/v201308/forecast_service_registry.rb
1412
+ - lib/dfp_api/v201308/inventory_service.rb
1413
+ - lib/dfp_api/v201308/inventory_service_registry.rb
1414
+ - lib/dfp_api/v201308/label_service.rb
1415
+ - lib/dfp_api/v201308/label_service_registry.rb
1416
+ - lib/dfp_api/v201308/line_item_creative_association_service.rb
1417
+ - lib/dfp_api/v201308/line_item_creative_association_service_registry.rb
1418
+ - lib/dfp_api/v201308/line_item_service.rb
1419
+ - lib/dfp_api/v201308/line_item_service_registry.rb
1420
+ - lib/dfp_api/v201308/line_item_template_service.rb
1421
+ - lib/dfp_api/v201308/line_item_template_service_registry.rb
1422
+ - lib/dfp_api/v201308/network_service.rb
1423
+ - lib/dfp_api/v201308/network_service_registry.rb
1424
+ - lib/dfp_api/v201308/order_service.rb
1425
+ - lib/dfp_api/v201308/order_service_registry.rb
1426
+ - lib/dfp_api/v201308/placement_service.rb
1427
+ - lib/dfp_api/v201308/placement_service_registry.rb
1428
+ - lib/dfp_api/v201308/product_service.rb
1429
+ - lib/dfp_api/v201308/product_service_registry.rb
1430
+ - lib/dfp_api/v201308/product_template_service.rb
1431
+ - lib/dfp_api/v201308/product_template_service_registry.rb
1432
+ - lib/dfp_api/v201308/proposal_line_item_service.rb
1433
+ - lib/dfp_api/v201308/proposal_line_item_service_registry.rb
1434
+ - lib/dfp_api/v201308/proposal_service.rb
1435
+ - lib/dfp_api/v201308/proposal_service_registry.rb
1436
+ - lib/dfp_api/v201308/publisher_query_language_service.rb
1437
+ - lib/dfp_api/v201308/publisher_query_language_service_registry.rb
1438
+ - lib/dfp_api/v201308/rate_card_customization_service.rb
1439
+ - lib/dfp_api/v201308/rate_card_customization_service_registry.rb
1440
+ - lib/dfp_api/v201308/rate_card_service.rb
1441
+ - lib/dfp_api/v201308/rate_card_service_registry.rb
1442
+ - lib/dfp_api/v201308/reconciliation_order_report_service.rb
1443
+ - lib/dfp_api/v201308/reconciliation_order_report_service_registry.rb
1444
+ - lib/dfp_api/v201308/reconciliation_report_row_service.rb
1445
+ - lib/dfp_api/v201308/reconciliation_report_row_service_registry.rb
1446
+ - lib/dfp_api/v201308/reconciliation_report_service.rb
1447
+ - lib/dfp_api/v201308/reconciliation_report_service_registry.rb
1448
+ - lib/dfp_api/v201308/report_service.rb
1449
+ - lib/dfp_api/v201308/report_service_registry.rb
1450
+ - lib/dfp_api/v201308/suggested_ad_unit_service.rb
1451
+ - lib/dfp_api/v201308/suggested_ad_unit_service_registry.rb
1452
+ - lib/dfp_api/v201308/team_service.rb
1453
+ - lib/dfp_api/v201308/team_service_registry.rb
1454
+ - lib/dfp_api/v201308/user_service.rb
1455
+ - lib/dfp_api/v201308/user_service_registry.rb
1456
+ - lib/dfp_api/v201308/user_team_association_service.rb
1457
+ - lib/dfp_api/v201308/user_team_association_service_registry.rb
1458
+ - lib/dfp_api/v201308/workflow_action_service.rb
1459
+ - lib/dfp_api/v201308/workflow_action_service_registry.rb
1460
+ - lib/dfp_api/v201311/activity_group_service.rb
1461
+ - lib/dfp_api/v201311/activity_group_service_registry.rb
1462
+ - lib/dfp_api/v201311/activity_service.rb
1463
+ - lib/dfp_api/v201311/activity_service_registry.rb
1464
+ - lib/dfp_api/v201311/ad_rule_service.rb
1465
+ - lib/dfp_api/v201311/ad_rule_service_registry.rb
1466
+ - lib/dfp_api/v201311/audience_segment_service.rb
1467
+ - lib/dfp_api/v201311/audience_segment_service_registry.rb
1468
+ - lib/dfp_api/v201311/base_rate_service.rb
1469
+ - lib/dfp_api/v201311/base_rate_service_registry.rb
628
1470
  - lib/dfp_api/v201311/company_service.rb
629
- - lib/dfp_api/v201311/workflow_request_service_registry.rb
630
- - lib/dfp_api/v201311/placement_service_registry.rb
1471
+ - lib/dfp_api/v201311/company_service_registry.rb
631
1472
  - lib/dfp_api/v201311/contact_service.rb
632
- - lib/dfp_api/v201311/audience_segment_service.rb
633
- - lib/dfp_api/v201311/activity_service_registry.rb
634
- - lib/dfp_api/v201311/custom_field_service_registry.rb
635
- - lib/dfp_api/v201311/line_item_creative_association_service_registry.rb
636
- - lib/dfp_api/v201311/label_service_registry.rb
637
- - lib/dfp_api/v201311/network_service_registry.rb
638
- - lib/dfp_api/v201311/report_service_registry.rb
639
- - lib/dfp_api/v201311/creative_wrapper_service_registry.rb
640
- - lib/dfp_api/v201311/team_service.rb
641
- - lib/dfp_api/v201311/creative_wrapper_service.rb
642
1473
  - lib/dfp_api/v201311/contact_service_registry.rb
1474
+ - lib/dfp_api/v201311/content_bundle_service.rb
643
1475
  - lib/dfp_api/v201311/content_bundle_service_registry.rb
644
- - lib/dfp_api/v201311/user_team_association_service_registry.rb
1476
+ - lib/dfp_api/v201311/content_metadata_key_hierarchy_service.rb
1477
+ - lib/dfp_api/v201311/content_metadata_key_hierarchy_service_registry.rb
1478
+ - lib/dfp_api/v201311/content_service.rb
1479
+ - lib/dfp_api/v201311/content_service_registry.rb
1480
+ - lib/dfp_api/v201311/creative_service.rb
1481
+ - lib/dfp_api/v201311/creative_service_registry.rb
645
1482
  - lib/dfp_api/v201311/creative_set_service.rb
646
- - lib/dfp_api/v201311/reconciliation_report_row_service.rb
647
- - lib/dfp_api/v201311/base_rate_service.rb
648
- - lib/dfp_api/v201311/proposal_service.rb
649
- - lib/dfp_api/v201311/publisher_query_language_service_registry.rb
650
- - lib/dfp_api/v201311/activity_service.rb
651
- - lib/dfp_api/v201311/proposal_service_registry.rb
652
- - lib/dfp_api/v201311/exchange_rate_service_registry.rb
653
- - lib/dfp_api/v201311/user_team_association_service.rb
654
- - lib/dfp_api/v201311/order_service_registry.rb
1483
+ - lib/dfp_api/v201311/creative_set_service_registry.rb
1484
+ - lib/dfp_api/v201311/creative_template_service.rb
655
1485
  - lib/dfp_api/v201311/creative_template_service_registry.rb
656
- - lib/dfp_api/v201311/label_service.rb
1486
+ - lib/dfp_api/v201311/creative_wrapper_service.rb
1487
+ - lib/dfp_api/v201311/creative_wrapper_service_registry.rb
1488
+ - lib/dfp_api/v201311/custom_field_service.rb
1489
+ - lib/dfp_api/v201311/custom_field_service_registry.rb
1490
+ - lib/dfp_api/v201311/custom_targeting_service.rb
1491
+ - lib/dfp_api/v201311/custom_targeting_service_registry.rb
1492
+ - lib/dfp_api/v201311/exchange_rate_service.rb
1493
+ - lib/dfp_api/v201311/exchange_rate_service_registry.rb
657
1494
  - lib/dfp_api/v201311/forecast_service.rb
658
- - lib/dfp_api/v201311/report_service.rb
659
1495
  - lib/dfp_api/v201311/forecast_service_registry.rb
1496
+ - lib/dfp_api/v201311/inventory_service.rb
660
1497
  - lib/dfp_api/v201311/inventory_service_registry.rb
661
- - lib/dfp_api/v201311/product_template_service_registry.rb
662
- - lib/dfp_api/v201311/activity_group_service_registry.rb
663
- - lib/dfp_api/v201311/content_service_registry.rb
664
- - lib/dfp_api/v201311/line_item_template_service.rb
665
- - lib/dfp_api/v201311/content_metadata_key_hierarchy_service.rb
666
- - lib/dfp_api/v201311/rate_card_service_registry.rb
667
- - lib/dfp_api/v201311/custom_targeting_service_registry.rb
668
- - lib/dfp_api/v201311/custom_targeting_service.rb
1498
+ - lib/dfp_api/v201311/label_service.rb
1499
+ - lib/dfp_api/v201311/label_service_registry.rb
669
1500
  - lib/dfp_api/v201311/line_item_creative_association_service.rb
670
- - lib/dfp_api/v201311/workflow_request_service.rb
671
- - lib/dfp_api/v201311/base_rate_service_registry.rb
672
- - lib/dfp_api/v201311/proposal_line_item_service_registry.rb
673
- - lib/dfp_api/v201311/suggested_ad_unit_service_registry.rb
674
- - lib/dfp_api/v201311/network_service.rb
675
- - lib/dfp_api/v201311/ad_rule_service_registry.rb
676
- - lib/dfp_api/v201311/product_template_service.rb
677
- - lib/dfp_api/v201311/custom_field_service.rb
678
- - lib/dfp_api/v201311/company_service_registry.rb
679
- - lib/dfp_api/v201311/user_service_registry.rb
680
- - lib/dfp_api/v201311/team_service_registry.rb
681
- - lib/dfp_api/v201311/reconciliation_report_service_registry.rb
682
- - lib/dfp_api/v201311/reconciliation_order_report_service.rb
1501
+ - lib/dfp_api/v201311/line_item_creative_association_service_registry.rb
1502
+ - lib/dfp_api/v201311/line_item_service.rb
1503
+ - lib/dfp_api/v201311/line_item_service_registry.rb
1504
+ - lib/dfp_api/v201311/line_item_template_service.rb
683
1505
  - lib/dfp_api/v201311/line_item_template_service_registry.rb
684
- - lib/dfp_api/v201311/exchange_rate_service.rb
685
- - lib/dfp_api/v201311/creative_service.rb
686
- - lib/dfp_api/v201311/proposal_line_item_service.rb
687
- - lib/dfp_api/v201311/activity_group_service.rb
688
- - lib/dfp_api/v201311/publisher_query_language_service.rb
689
- - lib/dfp_api/v201311/reconciliation_report_row_service_registry.rb
690
- - lib/dfp_api/v201311/content_service.rb
691
- - lib/dfp_api/v201311/product_service.rb
692
- - lib/dfp_api/v201311/creative_template_service.rb
693
- - lib/dfp_api/v201311/creative_set_service_registry.rb
694
- - lib/dfp_api/v201311/ad_rule_service.rb
695
- - lib/dfp_api/v201311/rate_card_service.rb
696
- - lib/dfp_api/v201311/user_service.rb
697
- - lib/dfp_api/v201311/creative_service_registry.rb
698
- - lib/dfp_api/v201311/content_bundle_service.rb
1506
+ - lib/dfp_api/v201311/network_service.rb
1507
+ - lib/dfp_api/v201311/network_service_registry.rb
699
1508
  - lib/dfp_api/v201311/order_service.rb
700
- - lib/dfp_api/v201311/audience_segment_service_registry.rb
1509
+ - lib/dfp_api/v201311/order_service_registry.rb
1510
+ - lib/dfp_api/v201311/placement_service.rb
1511
+ - lib/dfp_api/v201311/placement_service_registry.rb
1512
+ - lib/dfp_api/v201311/product_service.rb
701
1513
  - lib/dfp_api/v201311/product_service_registry.rb
702
- - lib/dfp_api/v201311/line_item_service.rb
1514
+ - lib/dfp_api/v201311/product_template_service.rb
1515
+ - lib/dfp_api/v201311/product_template_service_registry.rb
1516
+ - lib/dfp_api/v201311/proposal_line_item_service.rb
1517
+ - lib/dfp_api/v201311/proposal_line_item_service_registry.rb
1518
+ - lib/dfp_api/v201311/proposal_service.rb
1519
+ - lib/dfp_api/v201311/proposal_service_registry.rb
1520
+ - lib/dfp_api/v201311/publisher_query_language_service.rb
1521
+ - lib/dfp_api/v201311/publisher_query_language_service_registry.rb
703
1522
  - lib/dfp_api/v201311/rate_card_customization_service.rb
704
- - lib/dfp_api/v201311/content_metadata_key_hierarchy_service_registry.rb
705
- - lib/dfp_api/v201311/placement_service.rb
1523
+ - lib/dfp_api/v201311/rate_card_customization_service_registry.rb
1524
+ - lib/dfp_api/v201311/rate_card_service.rb
1525
+ - lib/dfp_api/v201311/rate_card_service_registry.rb
1526
+ - lib/dfp_api/v201311/reconciliation_order_report_service.rb
1527
+ - lib/dfp_api/v201311/reconciliation_order_report_service_registry.rb
1528
+ - lib/dfp_api/v201311/reconciliation_report_row_service.rb
1529
+ - lib/dfp_api/v201311/reconciliation_report_row_service_registry.rb
706
1530
  - lib/dfp_api/v201311/reconciliation_report_service.rb
707
- - lib/dfp_api/v201311/inventory_service.rb
708
- - lib/dfp_api/v201311/line_item_service_registry.rb
709
- - lib/dfp_api/v201302/suggested_ad_unit_service.rb
710
- - lib/dfp_api/v201302/company_service.rb
711
- - lib/dfp_api/v201302/placement_service_registry.rb
712
- - lib/dfp_api/v201302/contact_service.rb
713
- - lib/dfp_api/v201302/audience_segment_service.rb
714
- - lib/dfp_api/v201302/activity_service_registry.rb
715
- - lib/dfp_api/v201302/custom_field_service_registry.rb
716
- - lib/dfp_api/v201302/line_item_creative_association_service_registry.rb
717
- - lib/dfp_api/v201302/label_service_registry.rb
718
- - lib/dfp_api/v201302/network_service_registry.rb
719
- - lib/dfp_api/v201302/report_service_registry.rb
720
- - lib/dfp_api/v201302/creative_wrapper_service_registry.rb
721
- - lib/dfp_api/v201302/team_service.rb
722
- - lib/dfp_api/v201302/creative_wrapper_service.rb
723
- - lib/dfp_api/v201302/contact_service_registry.rb
724
- - lib/dfp_api/v201302/content_bundle_service_registry.rb
725
- - lib/dfp_api/v201302/user_team_association_service_registry.rb
726
- - lib/dfp_api/v201302/creative_set_service.rb
727
- - lib/dfp_api/v201302/publisher_query_language_service_registry.rb
728
- - lib/dfp_api/v201302/activity_service.rb
729
- - lib/dfp_api/v201302/user_team_association_service.rb
730
- - lib/dfp_api/v201302/order_service_registry.rb
731
- - lib/dfp_api/v201302/creative_template_service_registry.rb
732
- - lib/dfp_api/v201302/label_service.rb
733
- - lib/dfp_api/v201302/forecast_service.rb
734
- - lib/dfp_api/v201302/report_service.rb
735
- - lib/dfp_api/v201302/forecast_service_registry.rb
736
- - lib/dfp_api/v201302/inventory_service_registry.rb
737
- - lib/dfp_api/v201302/activity_group_service_registry.rb
738
- - lib/dfp_api/v201302/content_service_registry.rb
739
- - lib/dfp_api/v201302/custom_targeting_service_registry.rb
740
- - lib/dfp_api/v201302/custom_targeting_service.rb
741
- - lib/dfp_api/v201302/third_party_slot_service_registry.rb
742
- - lib/dfp_api/v201302/line_item_creative_association_service.rb
743
- - lib/dfp_api/v201302/suggested_ad_unit_service_registry.rb
744
- - lib/dfp_api/v201302/network_service.rb
745
- - lib/dfp_api/v201302/ad_rule_service_registry.rb
746
- - lib/dfp_api/v201302/custom_field_service.rb
747
- - lib/dfp_api/v201302/company_service_registry.rb
748
- - lib/dfp_api/v201302/user_service_registry.rb
749
- - lib/dfp_api/v201302/team_service_registry.rb
750
- - lib/dfp_api/v201302/creative_service.rb
751
- - lib/dfp_api/v201302/activity_group_service.rb
752
- - lib/dfp_api/v201302/publisher_query_language_service.rb
753
- - lib/dfp_api/v201302/content_service.rb
754
- - lib/dfp_api/v201302/creative_template_service.rb
755
- - lib/dfp_api/v201302/creative_set_service_registry.rb
756
- - lib/dfp_api/v201302/ad_rule_service.rb
757
- - lib/dfp_api/v201302/user_service.rb
758
- - lib/dfp_api/v201302/creative_service_registry.rb
759
- - lib/dfp_api/v201302/content_bundle_service.rb
760
- - lib/dfp_api/v201302/order_service.rb
761
- - lib/dfp_api/v201302/audience_segment_service_registry.rb
762
- - lib/dfp_api/v201302/line_item_service.rb
763
- - lib/dfp_api/v201302/placement_service.rb
764
- - lib/dfp_api/v201302/inventory_service.rb
765
- - lib/dfp_api/v201302/line_item_service_registry.rb
766
- - lib/dfp_api/v201302/third_party_slot_service.rb
767
- - lib/dfp_api/v201208/suggested_ad_unit_service.rb
768
- - lib/dfp_api/v201208/company_service.rb
769
- - lib/dfp_api/v201208/placement_service_registry.rb
770
- - lib/dfp_api/v201208/audience_segment_service.rb
771
- - lib/dfp_api/v201208/custom_field_service_registry.rb
772
- - lib/dfp_api/v201208/line_item_creative_association_service_registry.rb
773
- - lib/dfp_api/v201208/label_service_registry.rb
774
- - lib/dfp_api/v201208/network_service_registry.rb
775
- - lib/dfp_api/v201208/report_service_registry.rb
776
- - lib/dfp_api/v201208/team_service.rb
777
- - lib/dfp_api/v201208/user_team_association_service_registry.rb
778
- - lib/dfp_api/v201208/creative_set_service.rb
779
- - lib/dfp_api/v201208/publisher_query_language_service_registry.rb
780
- - lib/dfp_api/v201208/user_team_association_service.rb
781
- - lib/dfp_api/v201208/order_service_registry.rb
782
- - lib/dfp_api/v201208/creative_template_service_registry.rb
783
- - lib/dfp_api/v201208/label_service.rb
784
- - lib/dfp_api/v201208/forecast_service.rb
785
- - lib/dfp_api/v201208/report_service.rb
786
- - lib/dfp_api/v201208/forecast_service_registry.rb
787
- - lib/dfp_api/v201208/inventory_service_registry.rb
788
- - lib/dfp_api/v201208/content_service_registry.rb
789
- - lib/dfp_api/v201208/custom_targeting_service_registry.rb
790
- - lib/dfp_api/v201208/custom_targeting_service.rb
791
- - lib/dfp_api/v201208/third_party_slot_service_registry.rb
792
- - lib/dfp_api/v201208/line_item_creative_association_service.rb
793
- - lib/dfp_api/v201208/suggested_ad_unit_service_registry.rb
794
- - lib/dfp_api/v201208/network_service.rb
795
- - lib/dfp_api/v201208/custom_field_service.rb
796
- - lib/dfp_api/v201208/company_service_registry.rb
797
- - lib/dfp_api/v201208/user_service_registry.rb
798
- - lib/dfp_api/v201208/team_service_registry.rb
799
- - lib/dfp_api/v201208/creative_service.rb
800
- - lib/dfp_api/v201208/publisher_query_language_service.rb
801
- - lib/dfp_api/v201208/content_service.rb
802
- - lib/dfp_api/v201208/creative_template_service.rb
803
- - lib/dfp_api/v201208/creative_set_service_registry.rb
804
- - lib/dfp_api/v201208/user_service.rb
805
- - lib/dfp_api/v201208/creative_service_registry.rb
806
- - lib/dfp_api/v201208/order_service.rb
807
- - lib/dfp_api/v201208/audience_segment_service_registry.rb
808
- - lib/dfp_api/v201208/line_item_service.rb
809
- - lib/dfp_api/v201208/placement_service.rb
810
- - lib/dfp_api/v201208/inventory_service.rb
811
- - lib/dfp_api/v201208/line_item_service_registry.rb
812
- - lib/dfp_api/v201208/third_party_slot_service.rb
813
- - lib/dfp_api/api_config.rb
1531
+ - lib/dfp_api/v201311/reconciliation_report_service_registry.rb
1532
+ - lib/dfp_api/v201311/report_service.rb
1533
+ - lib/dfp_api/v201311/report_service_registry.rb
1534
+ - lib/dfp_api/v201311/suggested_ad_unit_service.rb
1535
+ - lib/dfp_api/v201311/suggested_ad_unit_service_registry.rb
1536
+ - lib/dfp_api/v201311/team_service.rb
1537
+ - lib/dfp_api/v201311/team_service_registry.rb
1538
+ - lib/dfp_api/v201311/user_service.rb
1539
+ - lib/dfp_api/v201311/user_service_registry.rb
1540
+ - lib/dfp_api/v201311/user_team_association_service.rb
1541
+ - lib/dfp_api/v201311/user_team_association_service_registry.rb
1542
+ - lib/dfp_api/v201311/workflow_request_service.rb
1543
+ - lib/dfp_api/v201311/workflow_request_service_registry.rb
1544
+ - lib/dfp_api/v201403/activity_group_service.rb
1545
+ - lib/dfp_api/v201403/activity_group_service_registry.rb
1546
+ - lib/dfp_api/v201403/activity_service.rb
1547
+ - lib/dfp_api/v201403/activity_service_registry.rb
1548
+ - lib/dfp_api/v201403/ad_rule_service.rb
1549
+ - lib/dfp_api/v201403/ad_rule_service_registry.rb
1550
+ - lib/dfp_api/v201403/audience_segment_service.rb
1551
+ - lib/dfp_api/v201403/audience_segment_service_registry.rb
1552
+ - lib/dfp_api/v201403/base_rate_service.rb
1553
+ - lib/dfp_api/v201403/base_rate_service_registry.rb
1554
+ - lib/dfp_api/v201403/company_service.rb
1555
+ - lib/dfp_api/v201403/company_service_registry.rb
1556
+ - lib/dfp_api/v201403/contact_service.rb
1557
+ - lib/dfp_api/v201403/contact_service_registry.rb
1558
+ - lib/dfp_api/v201403/content_bundle_service.rb
1559
+ - lib/dfp_api/v201403/content_bundle_service_registry.rb
1560
+ - lib/dfp_api/v201403/content_metadata_key_hierarchy_service.rb
1561
+ - lib/dfp_api/v201403/content_metadata_key_hierarchy_service_registry.rb
1562
+ - lib/dfp_api/v201403/content_service.rb
1563
+ - lib/dfp_api/v201403/content_service_registry.rb
1564
+ - lib/dfp_api/v201403/creative_service.rb
1565
+ - lib/dfp_api/v201403/creative_service_registry.rb
1566
+ - lib/dfp_api/v201403/creative_set_service.rb
1567
+ - lib/dfp_api/v201403/creative_set_service_registry.rb
1568
+ - lib/dfp_api/v201403/creative_template_service.rb
1569
+ - lib/dfp_api/v201403/creative_template_service_registry.rb
1570
+ - lib/dfp_api/v201403/creative_wrapper_service.rb
1571
+ - lib/dfp_api/v201403/creative_wrapper_service_registry.rb
1572
+ - lib/dfp_api/v201403/custom_field_service.rb
1573
+ - lib/dfp_api/v201403/custom_field_service_registry.rb
1574
+ - lib/dfp_api/v201403/custom_targeting_service.rb
1575
+ - lib/dfp_api/v201403/custom_targeting_service_registry.rb
1576
+ - lib/dfp_api/v201403/exchange_rate_service.rb
1577
+ - lib/dfp_api/v201403/exchange_rate_service_registry.rb
1578
+ - lib/dfp_api/v201403/forecast_service.rb
1579
+ - lib/dfp_api/v201403/forecast_service_registry.rb
1580
+ - lib/dfp_api/v201403/inventory_service.rb
1581
+ - lib/dfp_api/v201403/inventory_service_registry.rb
1582
+ - lib/dfp_api/v201403/label_service.rb
1583
+ - lib/dfp_api/v201403/label_service_registry.rb
1584
+ - lib/dfp_api/v201403/line_item_creative_association_service.rb
1585
+ - lib/dfp_api/v201403/line_item_creative_association_service_registry.rb
1586
+ - lib/dfp_api/v201403/line_item_service.rb
1587
+ - lib/dfp_api/v201403/line_item_service_registry.rb
1588
+ - lib/dfp_api/v201403/line_item_template_service.rb
1589
+ - lib/dfp_api/v201403/line_item_template_service_registry.rb
1590
+ - lib/dfp_api/v201403/live_stream_event_service.rb
1591
+ - lib/dfp_api/v201403/live_stream_event_service_registry.rb
1592
+ - lib/dfp_api/v201403/network_service.rb
1593
+ - lib/dfp_api/v201403/network_service_registry.rb
1594
+ - lib/dfp_api/v201403/order_service.rb
1595
+ - lib/dfp_api/v201403/order_service_registry.rb
1596
+ - lib/dfp_api/v201403/placement_service.rb
1597
+ - lib/dfp_api/v201403/placement_service_registry.rb
1598
+ - lib/dfp_api/v201403/product_service.rb
1599
+ - lib/dfp_api/v201403/product_service_registry.rb
1600
+ - lib/dfp_api/v201403/product_template_service.rb
1601
+ - lib/dfp_api/v201403/product_template_service_registry.rb
1602
+ - lib/dfp_api/v201403/proposal_line_item_service.rb
1603
+ - lib/dfp_api/v201403/proposal_line_item_service_registry.rb
1604
+ - lib/dfp_api/v201403/proposal_service.rb
1605
+ - lib/dfp_api/v201403/proposal_service_registry.rb
1606
+ - lib/dfp_api/v201403/publisher_query_language_service.rb
1607
+ - lib/dfp_api/v201403/publisher_query_language_service_registry.rb
1608
+ - lib/dfp_api/v201403/rate_card_customization_group_service.rb
1609
+ - lib/dfp_api/v201403/rate_card_customization_group_service_registry.rb
1610
+ - lib/dfp_api/v201403/rate_card_customization_service.rb
1611
+ - lib/dfp_api/v201403/rate_card_customization_service_registry.rb
1612
+ - lib/dfp_api/v201403/rate_card_service.rb
1613
+ - lib/dfp_api/v201403/rate_card_service_registry.rb
1614
+ - lib/dfp_api/v201403/reconciliation_order_report_service.rb
1615
+ - lib/dfp_api/v201403/reconciliation_order_report_service_registry.rb
1616
+ - lib/dfp_api/v201403/reconciliation_report_row_service.rb
1617
+ - lib/dfp_api/v201403/reconciliation_report_row_service_registry.rb
1618
+ - lib/dfp_api/v201403/reconciliation_report_service.rb
1619
+ - lib/dfp_api/v201403/reconciliation_report_service_registry.rb
1620
+ - lib/dfp_api/v201403/report_service.rb
1621
+ - lib/dfp_api/v201403/report_service_registry.rb
1622
+ - lib/dfp_api/v201403/suggested_ad_unit_service.rb
1623
+ - lib/dfp_api/v201403/suggested_ad_unit_service_registry.rb
1624
+ - lib/dfp_api/v201403/team_service.rb
1625
+ - lib/dfp_api/v201403/team_service_registry.rb
1626
+ - lib/dfp_api/v201403/user_service.rb
1627
+ - lib/dfp_api/v201403/user_service_registry.rb
1628
+ - lib/dfp_api/v201403/user_team_association_service.rb
1629
+ - lib/dfp_api/v201403/user_team_association_service_registry.rb
1630
+ - lib/dfp_api/v201403/workflow_request_service.rb
1631
+ - lib/dfp_api/v201403/workflow_request_service_registry.rb
1632
+ - lib/dfp_api/v201405/activity_group_service.rb
1633
+ - lib/dfp_api/v201405/activity_group_service_registry.rb
1634
+ - lib/dfp_api/v201405/activity_service.rb
1635
+ - lib/dfp_api/v201405/activity_service_registry.rb
1636
+ - lib/dfp_api/v201405/ad_rule_service.rb
1637
+ - lib/dfp_api/v201405/ad_rule_service_registry.rb
1638
+ - lib/dfp_api/v201405/audience_segment_service.rb
1639
+ - lib/dfp_api/v201405/audience_segment_service_registry.rb
1640
+ - lib/dfp_api/v201405/base_rate_service.rb
1641
+ - lib/dfp_api/v201405/base_rate_service_registry.rb
1642
+ - lib/dfp_api/v201405/company_service.rb
1643
+ - lib/dfp_api/v201405/company_service_registry.rb
1644
+ - lib/dfp_api/v201405/contact_service.rb
1645
+ - lib/dfp_api/v201405/contact_service_registry.rb
1646
+ - lib/dfp_api/v201405/content_bundle_service.rb
1647
+ - lib/dfp_api/v201405/content_bundle_service_registry.rb
1648
+ - lib/dfp_api/v201405/content_metadata_key_hierarchy_service.rb
1649
+ - lib/dfp_api/v201405/content_metadata_key_hierarchy_service_registry.rb
1650
+ - lib/dfp_api/v201405/content_service.rb
1651
+ - lib/dfp_api/v201405/content_service_registry.rb
1652
+ - lib/dfp_api/v201405/creative_service.rb
1653
+ - lib/dfp_api/v201405/creative_service_registry.rb
1654
+ - lib/dfp_api/v201405/creative_set_service.rb
1655
+ - lib/dfp_api/v201405/creative_set_service_registry.rb
1656
+ - lib/dfp_api/v201405/creative_template_service.rb
1657
+ - lib/dfp_api/v201405/creative_template_service_registry.rb
1658
+ - lib/dfp_api/v201405/creative_wrapper_service.rb
1659
+ - lib/dfp_api/v201405/creative_wrapper_service_registry.rb
1660
+ - lib/dfp_api/v201405/custom_field_service.rb
1661
+ - lib/dfp_api/v201405/custom_field_service_registry.rb
1662
+ - lib/dfp_api/v201405/custom_targeting_service.rb
1663
+ - lib/dfp_api/v201405/custom_targeting_service_registry.rb
1664
+ - lib/dfp_api/v201405/exchange_rate_service.rb
1665
+ - lib/dfp_api/v201405/exchange_rate_service_registry.rb
1666
+ - lib/dfp_api/v201405/forecast_service.rb
1667
+ - lib/dfp_api/v201405/forecast_service_registry.rb
1668
+ - lib/dfp_api/v201405/inventory_service.rb
1669
+ - lib/dfp_api/v201405/inventory_service_registry.rb
1670
+ - lib/dfp_api/v201405/label_service.rb
1671
+ - lib/dfp_api/v201405/label_service_registry.rb
1672
+ - lib/dfp_api/v201405/line_item_creative_association_service.rb
1673
+ - lib/dfp_api/v201405/line_item_creative_association_service_registry.rb
1674
+ - lib/dfp_api/v201405/line_item_service.rb
1675
+ - lib/dfp_api/v201405/line_item_service_registry.rb
1676
+ - lib/dfp_api/v201405/line_item_template_service.rb
1677
+ - lib/dfp_api/v201405/line_item_template_service_registry.rb
1678
+ - lib/dfp_api/v201405/live_stream_event_service.rb
1679
+ - lib/dfp_api/v201405/live_stream_event_service_registry.rb
1680
+ - lib/dfp_api/v201405/network_service.rb
1681
+ - lib/dfp_api/v201405/network_service_registry.rb
1682
+ - lib/dfp_api/v201405/order_service.rb
1683
+ - lib/dfp_api/v201405/order_service_registry.rb
1684
+ - lib/dfp_api/v201405/placement_service.rb
1685
+ - lib/dfp_api/v201405/placement_service_registry.rb
1686
+ - lib/dfp_api/v201405/product_service.rb
1687
+ - lib/dfp_api/v201405/product_service_registry.rb
1688
+ - lib/dfp_api/v201405/product_template_service.rb
1689
+ - lib/dfp_api/v201405/product_template_service_registry.rb
1690
+ - lib/dfp_api/v201405/proposal_line_item_service.rb
1691
+ - lib/dfp_api/v201405/proposal_line_item_service_registry.rb
1692
+ - lib/dfp_api/v201405/proposal_service.rb
1693
+ - lib/dfp_api/v201405/proposal_service_registry.rb
1694
+ - lib/dfp_api/v201405/publisher_query_language_service.rb
1695
+ - lib/dfp_api/v201405/publisher_query_language_service_registry.rb
1696
+ - lib/dfp_api/v201405/rate_card_customization_group_service.rb
1697
+ - lib/dfp_api/v201405/rate_card_customization_group_service_registry.rb
1698
+ - lib/dfp_api/v201405/rate_card_customization_service.rb
1699
+ - lib/dfp_api/v201405/rate_card_customization_service_registry.rb
1700
+ - lib/dfp_api/v201405/rate_card_service.rb
1701
+ - lib/dfp_api/v201405/rate_card_service_registry.rb
1702
+ - lib/dfp_api/v201405/reconciliation_order_report_service.rb
1703
+ - lib/dfp_api/v201405/reconciliation_order_report_service_registry.rb
1704
+ - lib/dfp_api/v201405/reconciliation_report_row_service.rb
1705
+ - lib/dfp_api/v201405/reconciliation_report_row_service_registry.rb
1706
+ - lib/dfp_api/v201405/reconciliation_report_service.rb
1707
+ - lib/dfp_api/v201405/reconciliation_report_service_registry.rb
1708
+ - lib/dfp_api/v201405/report_service.rb
1709
+ - lib/dfp_api/v201405/report_service_registry.rb
1710
+ - lib/dfp_api/v201405/suggested_ad_unit_service.rb
1711
+ - lib/dfp_api/v201405/suggested_ad_unit_service_registry.rb
1712
+ - lib/dfp_api/v201405/team_service.rb
1713
+ - lib/dfp_api/v201405/team_service_registry.rb
1714
+ - lib/dfp_api/v201405/user_service.rb
1715
+ - lib/dfp_api/v201405/user_service_registry.rb
1716
+ - lib/dfp_api/v201405/user_team_association_service.rb
1717
+ - lib/dfp_api/v201405/user_team_association_service_registry.rb
1718
+ - lib/dfp_api/v201405/workflow_request_service.rb
1719
+ - lib/dfp_api/v201405/workflow_request_service_registry.rb
814
1720
  - lib/dfp_api/version.rb
815
- - lib/dfp_api.rb
816
1721
  - test/bugs/test_issue_00000016.rb
817
- - test/dfp_api/test_dfp_api.rb
818
1722
  - test/dfp_api/test_config.yml
1723
+ - test/dfp_api/test_dfp_api.rb
819
1724
  - test/suite_unittests.rb
820
- - COPYING
821
- - README
822
- - ChangeLog
823
- - dfp_api.yml
824
1725
  homepage: http://code.google.com/p/google-api-ads-ruby/
825
1726
  licenses:
826
1727
  - Apache-2.0
1728
+ metadata: {}
827
1729
  post_install_message:
828
1730
  rdoc_options: []
829
1731
  require_paths:
830
1732
  - lib
831
1733
  required_ruby_version: !ruby/object:Gem::Requirement
832
- none: false
833
1734
  requirements:
834
1735
  - - ! '>='
835
1736
  - !ruby/object:Gem::Version
836
1737
  version: '0'
837
1738
  required_rubygems_version: !ruby/object:Gem::Requirement
838
- none: false
839
1739
  requirements:
840
1740
  - - ! '>='
841
1741
  - !ruby/object:Gem::Version
842
1742
  version: 1.3.6
843
1743
  requirements: []
844
1744
  rubyforge_project: google-dfp-api
845
- rubygems_version: 1.8.11
1745
+ rubygems_version: 2.2.2
846
1746
  signing_key:
847
- specification_version: 3
1747
+ specification_version: 4
848
1748
  summary: Ruby Client libraries for DFP API
849
1749
  test_files:
850
1750
  - test/bugs/test_issue_00000016.rb