Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manually added scheduled_query_run file object #157

Merged
merged 2 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions openapi/fixtures3.json
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,8 @@
"object": "issuing.settlement",
"settlement_service": "international",
"transaction_count": 2,
"transaction_volume": 3656
"transaction_volume": 3656,
"status": "complete"
},
"issuing.token": {
"card": "ic_1Pgag5B7WZ01zgkWephORn8N",
Expand Down Expand Up @@ -3537,7 +3538,24 @@
"scheduled_query_run": {
"created": 1234567890,
"data_load_time": 1234567890,
"file": null,
"file": {
"created": 1721948551,
"expires_at": null,
"filename": "path",
"id": "file_1Pgag7B7WZ01zgkWJbdoNCXR",
"links": {
"data": [],
"has_more": false,
"object": "list",
"url": "/v1/file_links?file=file_1Pgag7B7WZ01zgkWJbdoNCXR"
},
"object": "file",
"purpose": "sigma_scheduled_query",
"size": 500,
"title": null,
"type": "csv",
"url": "https://sangeekp-15t6ai--upload-mydev.dev.stripe.me/v1/files/file_1Pgag7B7WZ01zgkWJbdoNCXR/contents"
},
"id": "sqr_1Pgc7AB7WZ01zgkWvpIic1Di",
"livemode": false,
"object": "scheduled_query_run",
Expand Down
18 changes: 17 additions & 1 deletion openapi/fixtures3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2136,6 +2136,7 @@ resources:
settlement_service: international
transaction_count: 2
transaction_volume: 3656
status: complete
issuing.token:
card: ic_1Pgag5B7WZ01zgkWephORn8N
created: 1234567890
Expand Down Expand Up @@ -3047,7 +3048,22 @@ resources:
scheduled_query_run:
created: 1234567890
data_load_time: 1234567890
file: null
file:
created: 1721948551
expires_at:
filename: path
id: file_1Pgag7B7WZ01zgkWJbdoNCXR
links:
data: []
has_more: false
object: list
url: /v1/file_links?file=file_1Pgag7B7WZ01zgkWJbdoNCXR
object: file
purpose: sigma_scheduled_query
size: 500
title: null
type: csv
url: https://sangeekp-15t6ai--upload-mydev.dev.stripe.me/v1/files/file_1Pgag7B7WZ01zgkWJbdoNCXR/contents
id: sqr_1Pgc7AB7WZ01zgkWvpIic1Di
livemode: false
object: scheduled_query_run
Expand Down