summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/cloudkit/CKDiscoveredUserInfo.inc
blob: 5a8abf0c3d2d0dbb4863097e41f506f2088d0d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ Parsed from CloudKit.framework CKDiscoveredUserInfo.h }


{$ifdef TYPES}
type
  CKDiscoveredUserInfoPtr = ^CKDiscoveredUserInfo;
{$endif}

{$ifdef CLASSES}

type
  CKDiscoveredUserInfo = objcclass external (NSObject)
  public
    function init: instancetype; message 'init';
    function userRecordID: CKRecordID; message 'userRecordID';
    function firstName: NSString; message 'firstName';
    function lastName: NSString; message 'lastName';
  end;
{$endif}