LCIMConversationCreationOption

Objective-C

@interface LCIMConversationCreationOption : NSObject

Swift

class LCIMConversationCreationOption : NSObject

The option of conversation creation.

  • The name of the conversation.

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSString *name;

    Swift

    var name: String? { get set }
  • The attributes of the conversation.

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSDictionary *attributes;

    Swift

    var attributes: [AnyHashable : Any]? { get set }
  • Create or get an unique conversation, default is true.

    Declaration

    Objective-C

    @property (nonatomic) BOOL isUnique;

    Swift

    var isUnique: Bool { get set }
  • The time interval for the life of the temporary conversation.

    Declaration

    Objective-C

    @property (nonatomic) NSUInteger timeToLive;

    Swift

    var timeToLive: UInt { get set }