Class: Google::Apis::AdminDirectoryV1::Customer
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::Customer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Instance Attribute Summary collapse
-
#alternate_email ⇒ String
The customer's secondary contact email address.
-
#customer_creation_time ⇒ DateTime
The customer's creation time (Readonly) Corresponds to the JSON property
customerCreationTime
. -
#customer_domain ⇒ String
The customer's primary domain name string.
-
#etag ⇒ String
ETag of the resource.
-
#id ⇒ String
The unique ID for the customer's Google Workspace account.
-
#kind ⇒ String
Identifies the resource as a customer.
-
#language ⇒ String
The customer's ISO 639-2 language code.
-
#phone_number ⇒ String
The customer's contact phone number in E.164 format.
-
#postal_address ⇒ Google::Apis::AdminDirectoryV1::CustomerPostalAddress
The customer's postal address information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Customer
constructor
A new instance of Customer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Customer
Returns a new instance of Customer.
1951 1952 1953 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1951 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternate_email ⇒ String
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
1904 1905 1906 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1904 def alternate_email @alternate_email end |
#customer_creation_time ⇒ DateTime
The customer's creation time (Readonly)
Corresponds to the JSON property customerCreationTime
1909 1910 1911 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1909 def customer_creation_time @customer_creation_time end |
#customer_domain ⇒ String
The customer's primary domain name string. Do not include the www
prefix
when creating a new customer.
Corresponds to the JSON property customerDomain
1915 1916 1917 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1915 def customer_domain @customer_domain end |
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
1920 1921 1922 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1920 def etag @etag end |
#id ⇒ String
The unique ID for the customer's Google Workspace account. (Readonly)
Corresponds to the JSON property id
1925 1926 1927 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1925 def id @id end |
#kind ⇒ String
Identifies the resource as a customer. Value: admin#directory#customer
Corresponds to the JSON property kind
1930 1931 1932 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1930 def kind @kind end |
#language ⇒ String
The customer's ISO 639-2 language code. See the Language Codes page for the list of supported codes. Valid language
codes outside the supported set will be accepted by the API but may lead to
unexpected behavior. The default value is en
.
Corresponds to the JSON property language
1938 1939 1940 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1938 def language @language end |
#phone_number ⇒ String
The customer's contact phone number in E.164 format.
Corresponds to the JSON property phoneNumber
1944 1945 1946 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1944 def phone_number @phone_number end |
#postal_address ⇒ Google::Apis::AdminDirectoryV1::CustomerPostalAddress
The customer's postal address information.
Corresponds to the JSON property postalAddress
1949 1950 1951 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1949 def postal_address @postal_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1956 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 |