google-apis-datamanager_v1 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 973cd24b86415fa1f1e4c8455cf779229a59d8b9d6c30f41f87b5ff62c084cd2
4
- data.tar.gz: caaf7e0b496fb1ad5ef2fdae57aba875759ecd95c9f7d8174b09e1fa52468f05
3
+ metadata.gz: a5e9445500c0ae7a61e92c07d8c1a7dd48a5003fbb352cb0d5c9e2bc3ef36006
4
+ data.tar.gz: 518eee7f25883ff651fad9f8f00e927a53f3b3cf026443d74a8586a29a9af88e
5
5
  SHA512:
6
- metadata.gz: 5533cf1ccf096c9a5bd63c3ac2ba20303a2eccfb996dee3c97201bf4fbfe6173cfcef5fe9036ef3fe507e0f2c67a1b3c536a3005417bc79ac3ad4d2dbf5c057c
7
- data.tar.gz: 5c26fc195e5e9dbf51b287315bf3213a3bb6d6345ad758104edaab2857216d806b28eac0d349b31b3abfa7df6ebba4eed71a1693043346b4d519027a0e81da98
6
+ metadata.gz: 926e0ada2192f3eeb5ee00d0c5c1483270f53f9ce549d566c3a0ff7926a5e0bd89731e5b591a6307abcdae61ae35c22128cc3cc4be8e0f19bbccf599b1e191dc
7
+ data.tar.gz: 241a37556de37bb8b3ae46a14c33c61fc0ff6eae1dca0aa292046b122f6c080719f90a231110d3d190e0487c17eebaf7486a6e11bdf0f694a6ba7abb43fb5577
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datamanager_v1
2
2
 
3
+ ### v0.2.0 (2025-11-09)
4
+
5
+ * Regenerated from discovery document revision 20251105
6
+
3
7
  ### v0.1.0 (2025-10-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20251006
@@ -152,6 +152,46 @@ module Google
152
152
  end
153
153
  end
154
154
 
155
+ # A data encryption key wrapped by an AWS KMS key.
156
+ class AwsWrappedKeyInfo
157
+ include Google::Apis::Core::Hashable
158
+
159
+ # Required. The base64 encoded encrypted data encryption key.
160
+ # Corresponds to the JSON property `encryptedDek`
161
+ # @return [String]
162
+ attr_accessor :encrypted_dek
163
+
164
+ # Required. The URI of the AWS KMS key used to decrypt the DEK. Should be in the
165
+ # format of "arn:`partition`:kms:`region`:`account_id`:key/`key_id`"
166
+ # Corresponds to the JSON property `kekUri`
167
+ # @return [String]
168
+ attr_accessor :kek_uri
169
+
170
+ # Required. The type of algorithm used to encrypt the data.
171
+ # Corresponds to the JSON property `keyType`
172
+ # @return [String]
173
+ attr_accessor :key_type
174
+
175
+ # Required. The Amazon Resource Name of the IAM Role to assume for KMS
176
+ # decryption access. Should be in the format of "arn:`partition`:iam::`
177
+ # account_id`:role/`role_name`"
178
+ # Corresponds to the JSON property `roleArn`
179
+ # @return [String]
180
+ attr_accessor :role_arn
181
+
182
+ def initialize(**args)
183
+ update!(**args)
184
+ end
185
+
186
+ # Update properties of this object
187
+ def update!(**args)
188
+ @encrypted_dek = args[:encrypted_dek] if args.key?(:encrypted_dek)
189
+ @kek_uri = args[:kek_uri] if args.key?(:kek_uri)
190
+ @key_type = args[:key_type] if args.key?(:key_type)
191
+ @role_arn = args[:role_arn] if args.key?(:role_arn)
192
+ end
193
+ end
194
+
155
195
  # The cart data associated with the event.
156
196
  class CartData
157
197
  include Google::Apis::Core::Hashable
@@ -340,6 +380,11 @@ module Google
340
380
  class EncryptionInfo
341
381
  include Google::Apis::Core::Hashable
342
382
 
383
+ # A data encryption key wrapped by an AWS KMS key.
384
+ # Corresponds to the JSON property `awsWrappedKeyInfo`
385
+ # @return [Google::Apis::DatamanagerV1::AwsWrappedKeyInfo]
386
+ attr_accessor :aws_wrapped_key_info
387
+
343
388
  # Information about the Google Cloud Platform wrapped key.
344
389
  # Corresponds to the JSON property `gcpWrappedKeyInfo`
345
390
  # @return [Google::Apis::DatamanagerV1::GcpWrappedKeyInfo]
@@ -351,6 +396,7 @@ module Google
351
396
 
352
397
  # Update properties of this object
353
398
  def update!(**args)
399
+ @aws_wrapped_key_info = args[:aws_wrapped_key_info] if args.key?(:aws_wrapped_key_info)
354
400
  @gcp_wrapped_key_info = args[:gcp_wrapped_key_info] if args.key?(:gcp_wrapped_key_info)
355
401
  end
356
402
  end
@@ -410,11 +456,24 @@ module Google
410
456
  # @return [Google::Apis::DatamanagerV1::AdIdentifiers]
411
457
  attr_accessor :ad_identifiers
412
458
 
459
+ # Optional. A bucket of any [event parameters](https://developers.google.com/
460
+ # analytics/devguides/collection/protocol/ga4/reference/events) to be included
461
+ # within the event that were not already specified using other structured fields.
462
+ # Corresponds to the JSON property `additionalEventParameters`
463
+ # @return [Array<Google::Apis::DatamanagerV1::EventParameter>]
464
+ attr_accessor :additional_event_parameters
465
+
413
466
  # The cart data associated with the event.
414
467
  # Corresponds to the JSON property `cartData`
415
468
  # @return [Google::Apis::DatamanagerV1::CartData]
416
469
  attr_accessor :cart_data
417
470
 
471
+ # Optional. A unique identifier for the user instance of a web client for this
472
+ # GA4 web stream.
473
+ # Corresponds to the JSON property `clientId`
474
+ # @return [String]
475
+ attr_accessor :client_id
476
+
418
477
  # [Digital Markets Act (DMA)](//digital-markets-act.ec.europa.eu/index_en)
419
478
  # consent settings for the user.
420
479
  # Corresponds to the JSON property `consent`
@@ -450,6 +509,11 @@ module Google
450
509
  # @return [Google::Apis::DatamanagerV1::DeviceInfo]
451
510
  attr_accessor :event_device_info
452
511
 
512
+ # Optional. The name of the event. Required for GA4 events.
513
+ # Corresponds to the JSON property `eventName`
514
+ # @return [String]
515
+ attr_accessor :event_name
516
+
453
517
  # Optional. Signal for where the event happened (web, app, in-store, etc.).
454
518
  # Corresponds to the JSON property `eventSource`
455
519
  # @return [String]
@@ -482,6 +546,11 @@ module Google
482
546
  # @return [Google::Apis::DatamanagerV1::UserData]
483
547
  attr_accessor :user_data
484
548
 
549
+ # Optional. A unique identifier for a user, as defined by the advertiser.
550
+ # Corresponds to the JSON property `userId`
551
+ # @return [String]
552
+ attr_accessor :user_id
553
+
485
554
  # Advertiser-assessed information about the user at the time that the event
486
555
  # happened. See https://support.google.com/google-ads/answer/14007601 for more
487
556
  # details.
@@ -496,23 +565,52 @@ module Google
496
565
  # Update properties of this object
497
566
  def update!(**args)
498
567
  @ad_identifiers = args[:ad_identifiers] if args.key?(:ad_identifiers)
568
+ @additional_event_parameters = args[:additional_event_parameters] if args.key?(:additional_event_parameters)
499
569
  @cart_data = args[:cart_data] if args.key?(:cart_data)
570
+ @client_id = args[:client_id] if args.key?(:client_id)
500
571
  @consent = args[:consent] if args.key?(:consent)
501
572
  @conversion_value = args[:conversion_value] if args.key?(:conversion_value)
502
573
  @currency = args[:currency] if args.key?(:currency)
503
574
  @custom_variables = args[:custom_variables] if args.key?(:custom_variables)
504
575
  @destination_references = args[:destination_references] if args.key?(:destination_references)
505
576
  @event_device_info = args[:event_device_info] if args.key?(:event_device_info)
577
+ @event_name = args[:event_name] if args.key?(:event_name)
506
578
  @event_source = args[:event_source] if args.key?(:event_source)
507
579
  @event_timestamp = args[:event_timestamp] if args.key?(:event_timestamp)
508
580
  @experimental_fields = args[:experimental_fields] if args.key?(:experimental_fields)
509
581
  @last_updated_timestamp = args[:last_updated_timestamp] if args.key?(:last_updated_timestamp)
510
582
  @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
511
583
  @user_data = args[:user_data] if args.key?(:user_data)
584
+ @user_id = args[:user_id] if args.key?(:user_id)
512
585
  @user_properties = args[:user_properties] if args.key?(:user_properties)
513
586
  end
514
587
  end
515
588
 
589
+ # Event parameter for GA4 events.
590
+ class EventParameter
591
+ include Google::Apis::Core::Hashable
592
+
593
+ # Required. The name of the parameter to use.
594
+ # Corresponds to the JSON property `parameterName`
595
+ # @return [String]
596
+ attr_accessor :parameter_name
597
+
598
+ # Required. The string representation of the value of the parameter to set.
599
+ # Corresponds to the JSON property `value`
600
+ # @return [String]
601
+ attr_accessor :value
602
+
603
+ def initialize(**args)
604
+ update!(**args)
605
+ end
606
+
607
+ # Update properties of this object
608
+ def update!(**args)
609
+ @parameter_name = args[:parameter_name] if args.key?(:parameter_name)
610
+ @value = args[:value] if args.key?(:value)
611
+ end
612
+ end
613
+
516
614
  # Experimental field representing unofficial fields.
517
615
  class ExperimentalField
518
616
  include Google::Apis::Core::Hashable
@@ -896,6 +994,19 @@ module Google
896
994
  class Item
897
995
  include Google::Apis::Core::Hashable
898
996
 
997
+ # Optional. A bucket of any [event parameters related to an item](https://
998
+ # developers.google.com/analytics/devguides/collection/protocol/ga4/reference/
999
+ # events) to be included within the event that were not already specified using
1000
+ # other structured fields.
1001
+ # Corresponds to the JSON property `additionalItemParameters`
1002
+ # @return [Array<Google::Apis::DatamanagerV1::ItemParameter>]
1003
+ attr_accessor :additional_item_parameters
1004
+
1005
+ # Optional. A unique identifier to reference the item.
1006
+ # Corresponds to the JSON property `itemId`
1007
+ # @return [String]
1008
+ attr_accessor :item_id
1009
+
899
1010
  # Optional. The product ID within the Merchant Center account.
900
1011
  # Corresponds to the JSON property `merchantProductId`
901
1012
  # @return [String]
@@ -918,12 +1029,42 @@ module Google
918
1029
 
919
1030
  # Update properties of this object
920
1031
  def update!(**args)
1032
+ @additional_item_parameters = args[:additional_item_parameters] if args.key?(:additional_item_parameters)
1033
+ @item_id = args[:item_id] if args.key?(:item_id)
921
1034
  @merchant_product_id = args[:merchant_product_id] if args.key?(:merchant_product_id)
922
1035
  @quantity = args[:quantity] if args.key?(:quantity)
923
1036
  @unit_price = args[:unit_price] if args.key?(:unit_price)
924
1037
  end
925
1038
  end
926
1039
 
1040
+ # A bucket of any [event parameters related to an item](https://developers.
1041
+ # google.com/analytics/devguides/collection/protocol/ga4/reference/events) to be
1042
+ # included within the event that were not already specified using other
1043
+ # structured fields.
1044
+ class ItemParameter
1045
+ include Google::Apis::Core::Hashable
1046
+
1047
+ # Required. The name of the parameter to use.
1048
+ # Corresponds to the JSON property `parameterName`
1049
+ # @return [String]
1050
+ attr_accessor :parameter_name
1051
+
1052
+ # Required. The string representation of the value of the parameter to set.
1053
+ # Corresponds to the JSON property `value`
1054
+ # @return [String]
1055
+ attr_accessor :value
1056
+
1057
+ def initialize(**args)
1058
+ update!(**args)
1059
+ end
1060
+
1061
+ # Update properties of this object
1062
+ def update!(**args)
1063
+ @parameter_name = args[:parameter_name] if args.key?(:parameter_name)
1064
+ @value = args[:value] if args.key?(:value)
1065
+ end
1066
+ end
1067
+
927
1068
  # Mobile IDs for the audience. At least one mobile ID is required.
928
1069
  class MobileData
929
1070
  include Google::Apis::Core::Hashable
@@ -1341,6 +1482,13 @@ module Google
1341
1482
  class UserProperties
1342
1483
  include Google::Apis::Core::Hashable
1343
1484
 
1485
+ # Optional. A bucket of any additional [user properties](https://developers.
1486
+ # google.com/analytics/devguides/collection/protocol/ga4/user-properties) for
1487
+ # the user associated with this event.
1488
+ # Corresponds to the JSON property `additionalUserProperties`
1489
+ # @return [Array<Google::Apis::DatamanagerV1::UserProperty>]
1490
+ attr_accessor :additional_user_properties
1491
+
1344
1492
  # Optional. Type of the customer associated with the event.
1345
1493
  # Corresponds to the JSON property `customerType`
1346
1494
  # @return [String]
@@ -1357,11 +1505,39 @@ module Google
1357
1505
 
1358
1506
  # Update properties of this object
1359
1507
  def update!(**args)
1508
+ @additional_user_properties = args[:additional_user_properties] if args.key?(:additional_user_properties)
1360
1509
  @customer_type = args[:customer_type] if args.key?(:customer_type)
1361
1510
  @customer_value_bucket = args[:customer_value_bucket] if args.key?(:customer_value_bucket)
1362
1511
  end
1363
1512
  end
1364
1513
 
1514
+ # A bucket of any additional [user properties](https://developers.google.com/
1515
+ # analytics/devguides/collection/protocol/ga4/user-properties) for the user
1516
+ # associated with this event.
1517
+ class UserProperty
1518
+ include Google::Apis::Core::Hashable
1519
+
1520
+ # Required. The name of the user property to use.
1521
+ # Corresponds to the JSON property `propertyName`
1522
+ # @return [String]
1523
+ attr_accessor :property_name
1524
+
1525
+ # Required. The string representation of the value of the user property to use.
1526
+ # Corresponds to the JSON property `value`
1527
+ # @return [String]
1528
+ attr_accessor :value
1529
+
1530
+ def initialize(**args)
1531
+ update!(**args)
1532
+ end
1533
+
1534
+ # Update properties of this object
1535
+ def update!(**args)
1536
+ @property_name = args[:property_name] if args.key?(:property_name)
1537
+ @value = args[:value] if args.key?(:value)
1538
+ end
1539
+ end
1540
+
1365
1541
  # The warning count for a given warning reason.
1366
1542
  class WarningCount
1367
1543
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamanagerV1
18
18
  # Version of the google-apis-datamanager_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251006"
25
+ REVISION = "20251105"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class AwsWrappedKeyInfo
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class CartData
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -94,6 +100,12 @@ module Google
94
100
  include Google::Apis::Core::JsonObjectSupport
95
101
  end
96
102
 
103
+ class EventParameter
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
97
109
  class ExperimentalField
98
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
111
 
@@ -166,6 +178,12 @@ module Google
166
178
  include Google::Apis::Core::JsonObjectSupport
167
179
  end
168
180
 
181
+ class ItemParameter
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
169
187
  class MobileData
170
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
189
 
@@ -256,6 +274,12 @@ module Google
256
274
  include Google::Apis::Core::JsonObjectSupport
257
275
  end
258
276
 
277
+ class UserProperty
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
259
283
  class WarningCount
260
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
285
 
@@ -305,6 +329,16 @@ module Google
305
329
  end
306
330
  end
307
331
 
332
+ class AwsWrappedKeyInfo
333
+ # @private
334
+ class Representation < Google::Apis::Core::JsonRepresentation
335
+ property :encrypted_dek, as: 'encryptedDek'
336
+ property :kek_uri, as: 'kekUri'
337
+ property :key_type, as: 'keyType'
338
+ property :role_arn, as: 'roleArn'
339
+ end
340
+ end
341
+
308
342
  class CartData
309
343
  # @private
310
344
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -359,6 +393,8 @@ module Google
359
393
  class EncryptionInfo
360
394
  # @private
361
395
  class Representation < Google::Apis::Core::JsonRepresentation
396
+ property :aws_wrapped_key_info, as: 'awsWrappedKeyInfo', class: Google::Apis::DatamanagerV1::AwsWrappedKeyInfo, decorator: Google::Apis::DatamanagerV1::AwsWrappedKeyInfo::Representation
397
+
362
398
  property :gcp_wrapped_key_info, as: 'gcpWrappedKeyInfo', class: Google::Apis::DatamanagerV1::GcpWrappedKeyInfo, decorator: Google::Apis::DatamanagerV1::GcpWrappedKeyInfo::Representation
363
399
 
364
400
  end
@@ -385,8 +421,11 @@ module Google
385
421
  class Representation < Google::Apis::Core::JsonRepresentation
386
422
  property :ad_identifiers, as: 'adIdentifiers', class: Google::Apis::DatamanagerV1::AdIdentifiers, decorator: Google::Apis::DatamanagerV1::AdIdentifiers::Representation
387
423
 
424
+ collection :additional_event_parameters, as: 'additionalEventParameters', class: Google::Apis::DatamanagerV1::EventParameter, decorator: Google::Apis::DatamanagerV1::EventParameter::Representation
425
+
388
426
  property :cart_data, as: 'cartData', class: Google::Apis::DatamanagerV1::CartData, decorator: Google::Apis::DatamanagerV1::CartData::Representation
389
427
 
428
+ property :client_id, as: 'clientId'
390
429
  property :consent, as: 'consent', class: Google::Apis::DatamanagerV1::Consent, decorator: Google::Apis::DatamanagerV1::Consent::Representation
391
430
 
392
431
  property :conversion_value, as: 'conversionValue'
@@ -396,6 +435,7 @@ module Google
396
435
  collection :destination_references, as: 'destinationReferences'
397
436
  property :event_device_info, as: 'eventDeviceInfo', class: Google::Apis::DatamanagerV1::DeviceInfo, decorator: Google::Apis::DatamanagerV1::DeviceInfo::Representation
398
437
 
438
+ property :event_name, as: 'eventName'
399
439
  property :event_source, as: 'eventSource'
400
440
  property :event_timestamp, as: 'eventTimestamp'
401
441
  collection :experimental_fields, as: 'experimentalFields', class: Google::Apis::DatamanagerV1::ExperimentalField, decorator: Google::Apis::DatamanagerV1::ExperimentalField::Representation
@@ -404,11 +444,20 @@ module Google
404
444
  property :transaction_id, as: 'transactionId'
405
445
  property :user_data, as: 'userData', class: Google::Apis::DatamanagerV1::UserData, decorator: Google::Apis::DatamanagerV1::UserData::Representation
406
446
 
447
+ property :user_id, as: 'userId'
407
448
  property :user_properties, as: 'userProperties', class: Google::Apis::DatamanagerV1::UserProperties, decorator: Google::Apis::DatamanagerV1::UserProperties::Representation
408
449
 
409
450
  end
410
451
  end
411
452
 
453
+ class EventParameter
454
+ # @private
455
+ class Representation < Google::Apis::Core::JsonRepresentation
456
+ property :parameter_name, as: 'parameterName'
457
+ property :value, as: 'value'
458
+ end
459
+ end
460
+
412
461
  class ExperimentalField
413
462
  # @private
414
463
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -522,12 +571,23 @@ module Google
522
571
  class Item
523
572
  # @private
524
573
  class Representation < Google::Apis::Core::JsonRepresentation
574
+ collection :additional_item_parameters, as: 'additionalItemParameters', class: Google::Apis::DatamanagerV1::ItemParameter, decorator: Google::Apis::DatamanagerV1::ItemParameter::Representation
575
+
576
+ property :item_id, as: 'itemId'
525
577
  property :merchant_product_id, as: 'merchantProductId'
526
578
  property :quantity, :numeric_string => true, as: 'quantity'
527
579
  property :unit_price, as: 'unitPrice'
528
580
  end
529
581
  end
530
582
 
583
+ class ItemParameter
584
+ # @private
585
+ class Representation < Google::Apis::Core::JsonRepresentation
586
+ property :parameter_name, as: 'parameterName'
587
+ property :value, as: 'value'
588
+ end
589
+ end
590
+
531
591
  class MobileData
532
592
  # @private
533
593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -663,11 +723,21 @@ module Google
663
723
  class UserProperties
664
724
  # @private
665
725
  class Representation < Google::Apis::Core::JsonRepresentation
726
+ collection :additional_user_properties, as: 'additionalUserProperties', class: Google::Apis::DatamanagerV1::UserProperty, decorator: Google::Apis::DatamanagerV1::UserProperty::Representation
727
+
666
728
  property :customer_type, as: 'customerType'
667
729
  property :customer_value_bucket, as: 'customerValueBucket'
668
730
  end
669
731
  end
670
732
 
733
+ class UserProperty
734
+ # @private
735
+ class Representation < Google::Apis::Core::JsonRepresentation
736
+ property :property_name, as: 'propertyName'
737
+ property :value, as: 'value'
738
+ end
739
+ end
740
+
671
741
  class WarningCount
672
742
  # @private
673
743
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.1.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.2.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1
62
62
  rdoc_options: []
63
63
  require_paths: