@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
13 lines (12 loc) • 650 B
TypeScript
import type { PlatformPartnerTaxationType } from "./../../platform/PlatformPartnerTaxationType.js";
import type { PlatformTransferSummaryPartnerType } from "./../../platform/transfer/PlatformTransferSummaryPartnerType.js";
import type { PlatformUserDefinedPropertyKeyValue } from "./../../platform/transfer/PlatformUserDefinedPropertyKeyValue.js";
export type PlatformTransferSummaryPartner = {
id: string;
graphqlId: string;
name: string;
type: PlatformTransferSummaryPartnerType;
taxationType?: PlatformPartnerTaxationType;
/** 사용자 정의 속성 */
userDefinedProperties: PlatformUserDefinedPropertyKeyValue[];
};