Class: Google::Apis::ProdTtSasportalV1alpha1::SasPortalNrqzValidation
- Inherits:
-
Object
- Object
- Google::Apis::ProdTtSasportalV1alpha1::SasPortalNrqzValidation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb,
lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb,
lib/google/apis/prod_tt_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 that's associated with the validation.
-
#longitude ⇒ Float
Device longitude that's 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.
1113 1114 1115 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#case_id ⇒ String
Validation case ID.
Corresponds to the JSON property caseId
1091 1092 1093 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1091 def case_id @case_id end |
#cpi_id ⇒ String
CPI who signed the validation.
Corresponds to the JSON property cpiId
1096 1097 1098 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1096 def cpi_id @cpi_id end |
#latitude ⇒ Float
Device latitude that's associated with the validation.
Corresponds to the JSON property latitude
1101 1102 1103 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1101 def latitude @latitude end |
#longitude ⇒ Float
Device longitude that's associated with the validation.
Corresponds to the JSON property longitude
1106 1107 1108 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1106 def longitude @longitude end |
#state ⇒ String
State of the NRQZ validation info.
Corresponds to the JSON property state
1111 1112 1113 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1111 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1118 1119 1120 1121 1122 1123 1124 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1118 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 |