class Google::Apis::SiteVerificationV1::SiteVerificationWebResourceResource::Site
The address and type of a site that is verified or will be verified.
Attributes
identifier[RW]
The site identifier. If the type is set to SITE, the identifier is a URL. If the type is set to INET_DOMAIN, the site identifier is a domain name. Corresponds to the JSON property `identifier` @return [String]
type[RW]
The site type. Can be SITE or INET_DOMAIN (domain name). Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/site_verification_v1/classes.rb, line 172 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/site_verification_v1/classes.rb, line 177 def update!(**args) @identifier = args[:identifier] if args.key?(:identifier) @type = args[:type] if args.key?(:type) end