OPEN_GRID API - v1.3.1
    Preparing search index...

    Interface XmlStringifyOptions

    데이터 → XML 직렬화 옵션. / Options for serializing data into XML.

    interface XmlStringifyOptions {
        declaration?: boolean;
        excludeFields?: string[];
        fieldMap?: Record<string, string>;
        indent?: number;
        mode?: "element" | "attribute";
        nullAs?: string;
        rootTag?: string;
        rowTag?: string;
    }
    Index

    Properties

    declaration?: boolean

    XML 선언부 포함 여부. 기본 true. / Whether to include the XML declaration. Default true.

    true
    
    excludeFields?: string[]

    출력에서 제외할 필드 목록. / Field names to exclude from the output.

    fieldMap?: Record<string, string>

    그리드 field명 → XML 태그명 매핑. / Grid field name → XML tag name map.

    indent?: number

    들여쓰기 공백 수. 기본 2. / Indentation space count. Default 2.

    2
    
    mode?: "element" | "attribute"

    출력 방식: 'element'(기본) | 'attribute'. / Output mode: 'element' (default) | 'attribute'.

    'element'
    
    nullAs?: string

    null/undefined 처리 문자열. 기본 ''. / String used for null/undefined values. Default ''.

    ''
    
    rootTag?: string

    루트 태그명. 기본 'rows'. / Root tag name. Default 'rows'.

    'rows'
    
    rowTag?: string

    행 태그명. 기본 'row'. / Row tag name. Default 'row'.

    'row'