import { _Origin, _UnmarshalledOrigin } from "./_Origin"; /** *
A complex type that contains information about origins and origin groups for this distribution.
*/ export interface _Origins { /** *The number of origins or origin groups for this distribution.
*/ Quantity: number; /** *A complex type that contains origins or origin groups for this distribution.
*/ Items: Array<_Origin> | Iterable<_Origin>; } export interface _UnmarshalledOrigins extends _Origins { /** *A complex type that contains origins or origin groups for this distribution.
*/ Items: Array<_UnmarshalledOrigin>; }