Skip to content

Instantly share code, notes, and snippets.

@riebschlager
Created November 2, 2018 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riebschlager/7cf289a305a5947fcddb34281d14d479 to your computer and use it in GitHub Desktop.
Save riebschlager/7cf289a305a5947fcddb34281d14d479 to your computer and use it in GitHub Desktop.
this.eventSearchObj = {
ObjectType: 'Event',
CvSearchObject: {
attributes: {
SearchType: 'AndSearch',
xmlns: 'http://schemas.cvent.com/api/2006-11'
},
Filter: [
{
Field: 'EventStartDate',
Operator: 'Greater than',
Value: this.today(),
ValueArray: ''
},
{
Field: 'EventStartDate',
Operator: 'Less than',
Value: this.future(),
ValueArray: ''
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment