Class: Aws::PartnerCentralSelling::Types::OpportunityEngagementInvitationSort
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::OpportunityEngagementInvitationSort
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
Defines sorting options for retrieving Engagement Invitations. Sorting can be done based on various criteria like the invitation date or status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sort_by ⇒ String
Specifies the field by which the Engagement Invitations are sorted.
-
#sort_order ⇒ String
Defines the order in which the Engagement Invitations are sorted.
Instance Attribute Details
#sort_by ⇒ String
Specifies the field by which the Engagement Invitations are sorted.
Common values include InvitationDate
and Status
.
3927 3928 3929 3930 3931 3932 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 3927 class OpportunityEngagementInvitationSort < Struct.new( :sort_by, :sort_order) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
Defines the order in which the Engagement Invitations are sorted.
The values can be ASC
(ascending) or DESC
(descending).
3927 3928 3929 3930 3931 3932 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 3927 class OpportunityEngagementInvitationSort < Struct.new( :sort_by, :sort_order) SENSITIVE = [] include Aws::Structure end |