DBFILEPROPERTIESListTemplateResult
Objective-C
@interface DBFILEPROPERTIESListTemplateResult
: NSObject <DBSerializable, NSCopying>
Swift
class DBFILEPROPERTIESListTemplateResult : NSObject, DBSerializable, NSCopying
The ListTemplateResult
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
List of identifiers for templates added by See
templatesAddForUser
ortemplatesAddForTeam
.Declaration
Objective-C
@property (nonatomic, readonly) NSArray<NSString *> *_Nonnull templateIds;
Swift
var templateIds: [String] { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithTemplateIds: (nonnull NSArray<NSString *> *)templateIds;
Swift
init(templateIds: [String])
Parameters
templateIds
List of identifiers for templates added by See
templatesAddForUser
ortemplatesAddForTeam
.Return Value
An initialized instance.