class Google::Apis::MybusinessverificationsV1::Verification

A verification represents a verification attempt on a location.

Attributes

create_time[RW]

The timestamp when the verification is requested. Corresponds to the JSON property `createTime` @return [String]

method_prop[RW]

The method of the verification. Corresponds to the JSON property `method` @return [String]

name[RW]

Resource name of the verification. Corresponds to the JSON property `name` @return [String]

state[RW]

The state of the verification. Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 533
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 538
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @method_prop = args[:method_prop] if args.key?(:method_prop)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
end