Class: Google::Apis::AdminDirectoryV1::Customer

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb

Overview

JSON template for Customer Resource object in Directory API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Customer

Returns a new instance of Customer



1267
1268
1269
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1267

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alternate_emailString

The customer's secondary contact email address. This email address cannot be on the same domain as the customerDomain Corresponds to the JSON property alternateEmail

Returns:

  • (String)


1224
1225
1226
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1224

def alternate_email
  @alternate_email
end

#customer_creation_timeDateTime

The customer's creation time (Readonly) Corresponds to the JSON property customerCreationTime

Returns:

  • (DateTime)


1229
1230
1231
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1229

def customer_creation_time
  @customer_creation_time
end

#customer_domainString

The customer's primary domain name string. Do not include the www prefix when creating a new customer. Corresponds to the JSON property customerDomain

Returns:

  • (String)


1235
1236
1237
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1235

def customer_domain
  @customer_domain
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


1240
1241
1242
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1240

def etag
  @etag
end

#idString

The unique ID for the customer's G Suite account. (Readonly) Corresponds to the JSON property id

Returns:

  • (String)


1245
1246
1247
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1245

def id
  @id
end

#kindString

Identifies the resource as a customer. Value: admin#directory#customer Corresponds to the JSON property kind

Returns:

  • (String)


1250
1251
1252
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1250

def kind
  @kind
end

#languageString

The customer's ISO 639-2 language code. The default value is en-US Corresponds to the JSON property language

Returns:

  • (String)


1255
1256
1257
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1255

def language
  @language
end

#phone_numberString

The customer's contact phone number in E.164 format. Corresponds to the JSON property phoneNumber

Returns:

  • (String)


1260
1261
1262
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1260

def phone_number
  @phone_number
end

#postal_addressGoogle::Apis::AdminDirectoryV1::CustomerPostalAddress

JSON template for postal address of a customer. Corresponds to the JSON property postalAddress



1265
1266
1267
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1265

def postal_address
  @postal_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1272

def update!(**args)
  @alternate_email = args[:alternate_email] if args.key?(:alternate_email)
  @customer_creation_time = args[:customer_creation_time] if args.key?(:customer_creation_time)
  @customer_domain = args[:customer_domain] if args.key?(:customer_domain)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @language = args[:language] if args.key?(:language)
  @phone_number = args[:phone_number] if args.key?(:phone_number)
  @postal_address = args[:postal_address] if args.key?(:postal_address)
end