// Generated Source import NavigationInfoUri from "./NavigationInfoUri"; interface NavigationInfo { /** * Canonical URI for the first page of the list */ firstPage?: NavigationInfoUri; /** * Canonical URI for the next page of the list */ nextPage?: NavigationInfoUri; /** * Canonical URI for the previous page of the list */ previousPage?: NavigationInfoUri; /** * Canonical URI for the last page of the list */ lastPage?: NavigationInfoUri; } export default NavigationInfo;