/** * Response serializer for setting platform configurations */ export type PlatformConfigurationSetResponse = { readonly platform_key: string; /** * Results for each configuration item */ readonly results: Array>; /** * Total number of configurations set */ readonly total_set: number; };