This document describes the data formats exchanged between Alvio and Admvalue for the following event types:
updateavailability_requestmeeting
These formats are designed to be:
| <svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"> | |
| <defs> | |
| <linearGradient id="bg" x1="0" y1="0" x2="1" y2="1"> | |
| <stop offset="0" stop-color="#F6F8FF"/> | |
| <stop offset="1" stop-color="#EEF6F3"/> | |
| </linearGradient> | |
| <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%"> | |
| <feDropShadow dx="0" dy="12" stdDeviation="18" flood-color="#111827" flood-opacity="0.16"/> | |
| </filter> | |
| </defs> |
| { | |
| "name": "test-driven-carousel", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "test": "jest" | |
| }, | |
| "keywords": [], | |
| "author": "", |
| var React = require('react'); | |
| var ReactRouter = require('react-router-dom'); | |
| var Router = ReactRouter.BrowserRouter; | |
| var Route = ReactRouter.Route; | |
| var Switch = ReactRouter.Switch; | |
| var Nav = require('./Nav'); | |
| var Home = require('./Home'); | |
| var Battle = require('./Battle'); | |
| var Popular = require('./Popular'); |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include "./ex00/ft_strdup.c" | |
| #include "./ex01/ft_range.c" | |
| int main(void) | |
| { | |
| int i; |
| # Give me the DB handler -> gem | |
| require 'sqlite3' | |
| # Create / Connect with DB | |
| DB = SQLite3::Database::new('db.sqlite') | |
| # transform the results into a hash | |
| #DB.results_as_hash = true | |
| # get all the cities |