ConnectorrulecreaterequestSignature
The rule's function signature. Describes the rule's input arguments and output (if any)
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| input | []Argument | [required] | |
| output | Argument | [optional] | |
| } |
Example
from sailpoint.connector_rule_management.models.connectorrulecreaterequest_signature import ConnectorrulecreaterequestSignature
connectorrulecreaterequest_signature = ConnectorrulecreaterequestSignature(
input=[
sailpoint.connector_rule_management.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
],
output=sailpoint.connector_rule_management.models.argument.Argument(
name = 'firstName',
description = 'the first name of the identity',
type = 'String', )
)