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.
5340 5341 5342 5343 5344 5345 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5340 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).
5340 5341 5342 5343 5344 5345 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5340 class OpportunityEngagementInvitationSort < Struct.new( :sort_order, :sort_by) SENSITIVE = [] include Aws::Structure end |