Created
November 2, 2018 16:11
-
-
Save riebschlager/7cf289a305a5947fcddb34281d14d479 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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