ManualPaymentMethod
Type: schema
TypeScript Definition
typescript
ManualPaymentMethod: {{
id: string;
name: string;
payment_instructions?: string | null;
type: string;
payment_provider_slug: string;
details: Record<string, never>[];
order_params?: Record<string, never>;
};
/** MeasurementUnit */
}OpenAPI Schema
json
{
"title": "ManualPaymentMethod",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/ManualPaymentMethod",
"description": "API reference for the ManualPaymentMethod schema"
},
"required": [
"id",
"name",
"type",
"payment_provider_slug",
"details"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"payment_instructions": {
"type": [
"string",
"null"
]
},
"type": {
"type": "string"
},
"payment_provider_slug": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"type": "object"
}
},
"order_params": {
"type": "object"
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions