mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 09:35:22 +00:00
38 lines
910 B
HTML
38 lines
910 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Vality Payments API</title>
|
|
<!-- needed for adaptive design -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
|
|
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js">
|
|
</script>
|
|
<!--
|
|
ReDoc doesn't change outer page styles
|
|
-->
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id='redoc'></div>
|
|
<script type="text/javascript">
|
|
Redoc.init('./swagger.json', {
|
|
theme: {
|
|
breakpoints: {
|
|
//3-panel view fix
|
|
medium: '75rem',
|
|
}
|
|
}
|
|
}, document.getElementById('redoc'));
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|