@portone/server-sdk
    Preparing search index...

    Type Alias Decimal

    BigDecimal 타입

    type Decimal = {
        value: number;
        scale?: number;
    }
    Index

    Properties

    Properties

    value: number

    비정규화된 값

    소수점 숫자의 비정규화된(unscaled) 값을 정수로 저장합니다. 예를 들어, 123.45의 경우 12345가 저장됩니다. (int64)

    scale?: number

    소수점 이하 자릿수

    소수점 숫자의 소수점 이하 자릿수를 저장합니다. 기본값은 0입니다. 예를 들어, 123.45의 경우 2가 저장됩니다. (int32)