DBFILEPROPERTIESRemoveTemplateArg

Objective-C

@interface DBFILEPROPERTIESRemoveTemplateArg
    : NSObject <DBSerializable, NSCopying>

Swift

class DBFILEPROPERTIESRemoveTemplateArg : NSObject, DBSerializable, NSCopying

The RemoveTemplateArg struct.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • An identifier for a template created by templatesAddForUser or templatesAddForTeam.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull templateId;

    Swift

    var templateId: String { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTemplateId:(nonnull NSString *)templateId;

    Swift

    init(templateId: String)

    Parameters

    templateId

    An identifier for a template created by templatesAddForUser or templatesAddForTeam.

    Return Value

    An initialized instance.