UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

15 lines (14 loc) 806 B
import type { PlatformProperties } from "./../platform/PlatformProperties.js"; import type { SchedulePlatformPartnersBodyUpdateAccount } from "./../platform/SchedulePlatformPartnersBodyUpdateAccount.js"; import type { SchedulePlatformPartnersBodyUpdateContact } from "./../platform/SchedulePlatformPartnersBodyUpdateContact.js"; import type { SchedulePlatformPartnersBodyUpdateType } from "./../platform/SchedulePlatformPartnersBodyUpdateType.js"; export type SchedulePlatformPartnersBodyUpdate = { name?: string; contact?: SchedulePlatformPartnersBodyUpdateContact; type?: SchedulePlatformPartnersBodyUpdateType; account?: SchedulePlatformPartnersBodyUpdateAccount; defaultContractId?: string; memo?: string; tags?: string[]; userDefinedProperties?: PlatformProperties; };