Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

Alignment.md

File metadata and controls

33 lines (24 loc) · 1.12 KB

Alignment

Aggregation Alignment Options. Specifies how the aggregation grid is aligned.

Properties

Name Type Description Notes
at AlignAt [optional]
shift AlignShift [optional]
freq AlignmentGridInterval [optional]
timezone AlignmentTimezone [optional]

Example

from waylay.services.queries.models.alignment import Alignment

# TODO update the JSON string below
json = "{}"
# create an instance of Alignment from a JSON string
alignment_instance = Alignment.from_json(json)
# print the JSON string representation of the object
print Alignment.to_json()

# convert the object into a dict
alignment_dict = alignment_instance.to_dict()
# create an instance of Alignment from a dict
alignment_form_dict = alignment.from_dict(alignment_dict)

[Back to Model list] [Back to API list] [Back to README]