@foxy.io/sdk
Version:
Universal SDK for a full server-side and a limited in-browser access to Foxy hAPI.
29 lines (25 loc) • 791 B
TypeScript
import type { Graph } from '../../core';
import type { PropertyHelpers } from './property_helpers';
export interface Timezones extends Graph {
curie: 'fx:timezones';
links: {
/** This resource. */
'self': Timezones;
/** Various predefined property values. */
'fx:property_helpers': PropertyHelpers;
};
props: {
/** A small, human readable explanation of this property helper. */
message: string;
/** JSON object with an array of timezones. */
values: {
/** Valid entries for the store resource's timezone property. */
timezone: {
/** The value you can use for the store's timezone property. */
timezone: string;
/** The full description of this timezone. */
description: string;
}[];
};
};
}