Class: Aws::PartnerCentralSelling::Types::OpportunityEngagementInvitationSort
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::OpportunityEngagementInvitationSort
- Includes:
- Structure
- Defined in:
- 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`.
4629 4630 4631 4632 4633 4634 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 4629 class OpportunityEngagementInvitationSort < Struct.new( :sort_order, :sort_by) 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).
4629 4630 4631 4632 4633 4634 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 4629 class OpportunityEngagementInvitationSort < Struct.new( :sort_order, :sort_by) SENSITIVE = [] include Aws::Structure end |