Skip to content

Instantly share code, notes, and snippets.

@jsjohnst
Created September 25, 2009 03:47
Show Gist options
  • Save jsjohnst/193279 to your computer and use it in GitHub Desktop.
Save jsjohnst/193279 to your computer and use it in GitHub Desktop.
http://msdn.microsoft.com/en-us/library/dd633667.aspx
http://msdn.microsoft.com/en-us/library/exchangewebservices.calendaritemupdateoperationtype.aspx
// From /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/ExchangeWebServices
@interface EWSDeleteItemType : EWSBaseRequestType
{
NSArray *ItemIds;
int DeleteType;
int SendMeetingCancellations;
int AffectedTaskOccurrences;
}
+ (id)definition;
- (void)dealloc;
@property(nonatomic) int AffectedTaskOccurrences; // @synthesize AffectedTaskOccurrences;
@property(nonatomic) int SendMeetingCancellations; // @synthesize SendMeetingCancellations;
@property(nonatomic) int DeleteType; // @synthesize DeleteType;
@property(retain, nonatomic) NSArray *ItemIds; // @synthesize ItemIds;
@end
<soap:Body>
<m:DeleteItem DeleteType="MoveToDeletedItems" SendMeetingCancellations="SendToNone">
<m:ItemIds>
<t:ItemId Id="AAMkA=" ChangeKey="DwAAA" />
</m:ItemIds>
</m:DeleteItem>
</soap:Body>
<soap:Body>
<m:DeleteItem DeleteType="MoveToDeletedItems" SendMeetingCancellations="SendToAllAndSaveCopy">
<m:ItemIds>
<t:ItemId Id="AAMkA=" ChangeKey="DwAAA" />
</m:ItemIds>
</m:DeleteItem>
</soap:Body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment