Skip to content

class SealdConnectorTypeValue

objc
@interface SealdConnectorTypeValue : NSObject
@interface SealdConnectorTypeValue : NSObject

SealdConnectorTypeValue is a simplified representation of a connector for which we don't know all details.

MembersDescriptions
typeThe type of the connector.
valueThe value of the connector.
initWithType:value:Initialize a SealdConnectorTypeValue instance.

type

objc
@property (strong, readonly) NSString * type;
@property (strong, readonly) NSString * type;

The type of the connector.

value

objc
@property (strong, readonly) NSString * value;
@property (strong, readonly) NSString * value;

The value of the connector.

initWithType:value:

objc
- (instancetype) initWithType:(NSString *)type
                        value:(NSString *)value;
- (instancetype) initWithType:(NSString *)type
                        value:(NSString *)value;

Initialize a SealdConnectorTypeValue instance.

Parameters

  • type The type of the connector.

  • value The value of the connector.