Class: Google::Apis::OndemandscanningV1beta1::License
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::License
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb
Overview
License information.
Instance Attribute Summary collapse
-
#comments ⇒ String
Comments Corresponds to the JSON property
comments
. -
#expression ⇒ String
Often a single license can be used to represent the licensing terms.
Instance Method Summary collapse
-
#initialize(**args) ⇒ License
constructor
A new instance of License.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ License
Returns a new instance of License.
1572 1573 1574 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1572 def initialize(**args) update!(**args) end |
Instance Attribute Details
#comments ⇒ String
Comments
Corresponds to the JSON property comments
1562 1563 1564 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1562 def comments @comments end |
#expression ⇒ String
Often a single license can be used to represent the licensing terms. Sometimes
it is necessary to include a choice of one or more licenses or some
combination of license identifiers. Examples: "LGPL-2.1-only OR MIT", "LGPL-2.
1-only AND MIT", "GPL-2.0-or-later WITH Bison-exception-2.2".
Corresponds to the JSON property expression
1570 1571 1572 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1570 def expression @expression end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1577 1578 1579 1580 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1577 def update!(**args) @comments = args[:comments] if args.key?(:comments) @expression = args[:expression] if args.key?(:expression) end |