Version 1.9 - Updated on 05/04/2017
Superclass: NSObject
Declared In: PCShare.h
PCShareItem
stores the defination of a Share.
creationDate
@property (nonatomic,
readonly) NSDate *creationDate;
expirationDate
@property (nonatomic,
readonly) NSDate *expirationDate;
expirationDate
or expiresIn
when creating a share, but not both. If specified, the expiration interval must be within a configurable min and max range. Otherwise, the time to live of the share is set to a configurable default value. When accessing a share, this returns the date and time the share expires. If the share does not expire, this field is not populated.expiresIn
@property (nonatomic,
readonly) NSNumber *expiresIn;
expiresIn
or expirationDate
when creating a share, but not both. If specified, the value must be within a configurable min and max range. Otherwise, the time to live of the share is set to a configurable default value. When accessing a share, this returns the remaining time to live on the share. A value of 0 indicates that the share does not expire.inboundLastModifiedDate
@property (nonatomic,
readonly) NSDate *inboundLastModifiedDate;
lastModifiedDate
@property (nonatomic,
readonly) NSDate *lastModifiedDate;
link
@property (nonatomic,
readonly) PCLink *link;
name
@property (nonatomic,
readonly) NSString *name;
owner
@property (nonatomic,
readonly) PCUser *owner;
publicInviteKey
@property (nonatomic,
readonly) NSString *publicInviteKey;
resources
@property (nonatomic,
readonly) NSArray *resources;
PCShareResource
type.sharer
@property (nonatomic,
readonly) PCUser *sharer;
totalResourceCount
@property (nonatomic,
readonly,
strong) NSNumber *totalResourceCount;
UID
@property (nonatomic,
readonly) NSString *UID;
Copyright © 2015-2017, Verizon and/or its Licensors. All rights reserved.