Class: Google::Cloud::Talent::V4beta1::TimeFilter
- Inherits:
-
Object
- Object
- Google::Cloud::Talent::V4beta1::TimeFilter
- Defined in:
- lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/filters.rb
Overview
Input only.
Filter on create timestamp or update timestamp of profiles.
Defined Under Namespace
Modules: TimeField
Instance Attribute Summary collapse
-
#end_time ⇒ Google::Protobuf::Timestamp
Optional.
-
#start_time ⇒ Google::Protobuf::Timestamp
Optional.
-
#time_field ⇒ Google::Cloud::Talent::V4beta1::TimeFilter::TimeField
Optional.
Instance Attribute Details
#end_time ⇒ Google::Protobuf::Timestamp
Returns Optional.
End timestamp, matching profiles with the end time. If this field missing, The API matches profiles with create / update timestamp after the start timestamp.
747 748 749 750 751 752 753 754 755 756 757 758 759 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/filters.rb', line 747 class TimeFilter # Time fields can be used in TimeFilter. module TimeField # Default value. TIME_FIELD_UNSPECIFIED = 0 # Earliest profile create time. CREATE_TIME = 1 # Latest profile update time. UPDATE_TIME = 2 end end |
#start_time ⇒ Google::Protobuf::Timestamp
Returns Optional.
Start timestamp, matching profiles with the start time. If this field missing, The API matches profiles with create / update timestamp before the end timestamp.
747 748 749 750 751 752 753 754 755 756 757 758 759 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/filters.rb', line 747 class TimeFilter # Time fields can be used in TimeFilter. module TimeField # Default value. TIME_FIELD_UNSPECIFIED = 0 # Earliest profile create time. CREATE_TIME = 1 # Latest profile update time. UPDATE_TIME = 2 end end |
#time_field ⇒ Google::Cloud::Talent::V4beta1::TimeFilter::TimeField
Returns Optional.
Specifies which time field to filter profiles.
Defaults to TimeField::CREATE_TIME.
747 748 749 750 751 752 753 754 755 756 757 758 759 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/filters.rb', line 747 class TimeFilter # Time fields can be used in TimeFilter. module TimeField # Default value. TIME_FIELD_UNSPECIFIED = 0 # Earliest profile create time. CREATE_TIME = 1 # Latest profile update time. UPDATE_TIME = 2 end end |