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; };