条带对象元数据字段的任务是什么?
What is the mission of stripe objects metadata field?
在 API description 中 Java,我找到了下一个信息:
metadata optional, default is { }
A set of key/value pairs that you can attach to a recipient object. It
can be useful for storing additional information about the recipient
in a structured format.
它会影响付款流程吗?此数据是否由 Stripe 系统处理?
所有可更新的 Stripe 对象都支持 metadata
字段,您可以使用该字段存储任意 key/value 对。
Stripe 根本不使用此信息:它供您自己使用。例如,您可以使用元数据将内部订单 ID 附加到您创建的每笔费用。这可能有助于会计目的,或者只是为了在您的仪表板中查看费用时的清晰度。
您可以在此处找到有关元数据的文档:https://stripe.com/docs/api#metadata
在 API description 中 Java,我找到了下一个信息:
metadata optional, default is { }
A set of key/value pairs that you can attach to a recipient object. It can be useful for storing additional information about the recipient in a structured format.
它会影响付款流程吗?此数据是否由 Stripe 系统处理?
所有可更新的 Stripe 对象都支持 metadata
字段,您可以使用该字段存储任意 key/value 对。
Stripe 根本不使用此信息:它供您自己使用。例如,您可以使用元数据将内部订单 ID 附加到您创建的每笔费用。这可能有助于会计目的,或者只是为了在您的仪表板中查看费用时的清晰度。
您可以在此处找到有关元数据的文档:https://stripe.com/docs/api#metadata