DBTEAMLOGGovernancePolicyRemoveFoldersDetails
Objective-C
@interface DBTEAMLOGGovernancePolicyRemoveFoldersDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGGovernancePolicyRemoveFoldersDetails : NSObject, DBSerializable, NSCopying
The GovernancePolicyRemoveFoldersDetails struct.
Removed folders from policy.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Policy ID.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull governancePolicyId;Swift
var governancePolicyId: String { get } -
Policy name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull name;Swift
var name: String { get } -
Policy type.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType;Swift
var policyType: DBTEAMLOGPolicyType? { get } -
Folders.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray<NSString *> *folders;Swift
var folders: [String]? { get } -
Reason.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *reason;Swift
var reason: String? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithGovernancePolicyId:(nonnull NSString *)governancePolicyId name:(nonnull NSString *)name policyType:(nullable DBTEAMLOGPolicyType *)policyType folders:(nullable NSArray<NSString *> *)folders reason:(nullable NSString *)reason;Swift
init(governancePolicyId: String, name: String, policyType: DBTEAMLOGPolicyType?, folders: [String]?, reason: String?)Parameters
governancePolicyIdPolicy ID.
namePolicy name.
policyTypePolicy type.
foldersFolders.
reasonReason.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithGovernancePolicyId: (nonnull NSString *)governancePolicyId name:(nonnull NSString *)name;Swift
init(governancePolicyId: String, name: String)Parameters
governancePolicyIdPolicy ID.
namePolicy name.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGGovernancePolicyRemoveFoldersDetails Class Reference