class SealdConnectorTypeValue
objc
@interface SealdConnectorTypeValue : NSObject
SealdConnectorTypeValue is a simplified representation of a connector for which we don't know all details.
Members | Descriptions |
---|---|
type | The type of the connector. |
value | The value of the connector. |
initWithType:value: | Initialize a SealdConnectorTypeValue instance. |
type
objc
@property (strong, readonly) NSString * type;
The type of the connector.
value
objc
@property (strong, readonly) NSString * value;
The value of the connector.
initWithType:value:
objc
- (instancetype) initWithType:(NSString *)type
value:(NSString *)value;
Initialize a SealdConnectorTypeValue instance.
Parameters
type
The type of the connector.value
The value of the connector.