Class: Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation
- Inherits:
-
Object
- Object
- Google::Apis::SasportalV1alpha1::SasPortalNrqzValidation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sasportal_v1alpha1/classes.rb,
lib/google/apis/sasportal_v1alpha1/representations.rb,
lib/google/apis/sasportal_v1alpha1/representations.rb
Overview
Information about National Radio Quiet Zone validation.
Instance Attribute Summary collapse
-
#case_id ⇒ String
Validation case id.
-
#cpi_id ⇒ String
CPI who signed the validation.
-
#latitude ⇒ Float
Device latitude associated with the validation.
-
#longitude ⇒ Float
Device longitude associated with the validation.
-
#state ⇒ String
State of the NRQZ validation info.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SasPortalNrqzValidation
constructor
A new instance of SasPortalNrqzValidation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SasPortalNrqzValidation
Returns a new instance of SasPortalNrqzValidation.
989 990 991 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 989 def initialize(**args) update!(**args) end |
Instance Attribute Details
#case_id ⇒ String
Validation case id.
Corresponds to the JSON property caseId
967 968 969 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 967 def case_id @case_id end |
#cpi_id ⇒ String
CPI who signed the validation.
Corresponds to the JSON property cpiId
972 973 974 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 972 def cpi_id @cpi_id end |
#latitude ⇒ Float
Device latitude associated with the validation.
Corresponds to the JSON property latitude
977 978 979 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 977 def latitude @latitude end |
#longitude ⇒ Float
Device longitude associated with the validation.
Corresponds to the JSON property longitude
982 983 984 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 982 def longitude @longitude end |
#state ⇒ String
State of the NRQZ validation info.
Corresponds to the JSON property state
987 988 989 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 987 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
994 995 996 997 998 999 1000 |
# File 'lib/google/apis/sasportal_v1alpha1/classes.rb', line 994 def update!(**args) @case_id = args[:case_id] if args.key?(:case_id) @cpi_id = args[:cpi_id] if args.key?(:cpi_id) @latitude = args[:latitude] if args.key?(:latitude) @longitude = args[:longitude] if args.key?(:longitude) @state = args[:state] if args.key?(:state) end |