DBTEAMLOGShowcaseEditCommentDetails
Objective-C
@interface DBTEAMLOGShowcaseEditCommentDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGShowcaseEditCommentDetails : NSObject, DBSerializable, NSCopying
The ShowcaseEditCommentDetails struct.
Edited showcase comment.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Event unique identifier.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull eventUuid;Swift
var eventUuid: String { get } -
Comment text.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *commentText;Swift
var commentText: String? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid commentText:(nullable NSString *)commentText;Swift
init(eventUuid: String, commentText: String?)Parameters
eventUuidEvent unique identifier.
commentTextComment text.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid;Swift
init(eventUuid: String)Parameters
eventUuidEvent unique identifier.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGShowcaseEditCommentDetails Class Reference