Class: Google::Apis::PeopleV1::Birthday

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

Overview

A person's birthday. At least one of the date and text fields are specified. The date and text fields typically represent the same date, but are not guaranteed to.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Birthday

Returns a new instance of Birthday.



375
376
377
# File 'lib/google/apis/people_v1/classes.rb', line 375

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

Instance Attribute Details

#dateGoogle::Apis::PeopleV1::Date

Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and google.protobuf.Timestamp. Corresponds to the JSON property date



363
364
365
# File 'lib/google/apis/people_v1/classes.rb', line 363

def date
  @date
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



368
369
370
# File 'lib/google/apis/people_v1/classes.rb', line 368

def 
  @metadata
end

#textString

A free-form string representing the user's birthday. Corresponds to the JSON property text

Returns:

  • (String)


373
374
375
# File 'lib/google/apis/people_v1/classes.rb', line 373

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



380
381
382
383
384
# File 'lib/google/apis/people_v1/classes.rb', line 380

def update!(**args)
  @date = args[:date] if args.key?(:date)
  @metadata = args[:metadata] if args.key?(:metadata)
  @text = args[:text] if args.key?(:text)
end