You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
584 B
Plaintext
14 lines
584 B
Plaintext
decl class +name;
|
|
decl property(name, type, nullability, key);
|
|
|
|
class PEPMessage {
|
|
property "messageID" type = "NSString *" key="id";
|
|
property "direction" type = "PEP_msg_direction" key="outgoing";
|
|
property "shortMessage" type = "NSString *" key="shortmsg";
|
|
property "longMessage" type = "NSString *" key="longmsg";
|
|
property "longMessageFormatted" type = "NSString *" key="longmsg_formatted";
|
|
property "attachments" type = "NSArray *" key="attachments";
|
|
property "sent" type = "NSDate *" key="sent";
|
|
property "received" type = "NSDate *" key="recv";
|
|
}
|