Class: Aws::SocialMessaging::Types::WhatsAppTimeOfDay

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-socialmessaging/lib/aws-sdk-socialmessaging/types.rb

Overview

A time of day, expressed as an hour and minute.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hoursInteger

The hour of the day, from 0 to 23.

Returns:

  • (Integer)


2813
2814
2815
2816
2817
2818
# File 'gems/aws-sdk-socialmessaging/lib/aws-sdk-socialmessaging/types.rb', line 2813

class WhatsAppTimeOfDay < Struct.new(
  :hours,
  :minutes)
  SENSITIVE = []
  include Aws::Structure
end

#minutesInteger

The minute of the hour, from 0 to 59.

Returns:

  • (Integer)


2813
2814
2815
2816
2817
2818
# File 'gems/aws-sdk-socialmessaging/lib/aws-sdk-socialmessaging/types.rb', line 2813

class WhatsAppTimeOfDay < Struct.new(
  :hours,
  :minutes)
  SENSITIVE = []
  include Aws::Structure
end