Class: Google::Apis::YoutubeV3::Nonprofit
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::Nonprofit
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb
Overview
Nonprofit information.
Instance Attribute Summary collapse
-
#nonprofit_id ⇒ Google::Apis::YoutubeV3::NonprofitId
Id of the nonprofit.
-
#nonprofit_legal_name ⇒ String
Legal name of the nonprofit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Nonprofit
constructor
A new instance of Nonprofit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Nonprofit
Returns a new instance of Nonprofit
5190 5191 5192 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5190 def initialize(**args) update!(**args) end |
Instance Attribute Details
#nonprofit_id ⇒ Google::Apis::YoutubeV3::NonprofitId
Id of the nonprofit.
Corresponds to the JSON property nonprofitId
5183 5184 5185 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5183 def nonprofit_id @nonprofit_id end |
#nonprofit_legal_name ⇒ String
Legal name of the nonprofit.
Corresponds to the JSON property nonprofitLegalName
5188 5189 5190 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5188 def nonprofit_legal_name @nonprofit_legal_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5195 5196 5197 5198 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5195 def update!(**args) @nonprofit_id = args[:nonprofit_id] if args.key?(:nonprofit_id) @nonprofit_legal_name = args[:nonprofit_legal_name] if args.key?(:nonprofit_legal_name) end |