영어 버전 문서로 돌아가기restructurenode 특성
restructurenode 특성
마지막 업데이트 날짜: 2024년 10월 07일
구조변환 노드는 명목 또는 플래그 필드를
아직 또 다른 필드의 값으로 채워질 수 있는 필드 그룹으로
변환합니다. 예를 들어, payment type
이라는 이름의 필드와 credit
, cash
, debit
의 값이 주어진 경우, 각각이 실제 이루어진 지불의 값을 포함할 수 있는 세 개의 새 필드(credit
, cash
, debit
)가 작성됩니다.
예
node = stream.create("restructure", "My node")
node.setKeyedPropertyValue("fields_from", "Drug", ["drugA", "drugX"])
node.setPropertyValue("include_field_name", True)
node.setPropertyValue("value_mode", "OtherFields")
node.setPropertyValue("value_fields", ["Age", "BP"])
restructurenode 특성 |
데이터 유형 | 특성 설명 |
---|---|---|
fields_from |
[카테고리 카테고리] all |
|
include_field_name |
플래그 | 구조변환된 필드 이름에서 필드 이름을 사용할지 여부를 표시합니다. |
value_mode |
OtherFields Flags |
구조변환된 필드의 값을 지정하는 모드를
표시합니다. OtherFields 를 사용하여 사용할 필드를 지정해야 합니다. Flags 의 값은 숫자 플래그입니다. |
value_fields |
목록 | value_mode 이(가) OtherFields 인 경우 필수입니다. 값 필드로
사용할 필드를 지정합니다. |