ACAccountCredential.inc 701 B

1234567891011121314151617181920
  1. { Parsed from Accounts.framework ACAccountCredential.h }
  2. {$ifdef TYPES}
  3. type
  4. ACAccountCredentialPtr = ^ACAccountCredential;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. ACAccountCredential = objcclass external (NSObject)
  9. public
  10. function initWithOAuthToken_tokenSecret (token: NSString; secret: NSString): instancetype; message 'initWithOAuthToken:tokenSecret:';
  11. function initWithOAuth2Token_refreshToken_expiryDate (token: NSString; refreshToken: NSString; expiryDate: NSDate): instancetype; message 'initWithOAuth2Token:refreshToken:expiryDate:';
  12. procedure setOauthToken(newValue: NSString); message 'setOauthToken:';
  13. function oauthToken: NSString; message 'oauthToken';
  14. end;
  15. {$endif}