/** * Arbitrary name/value pairs associated with an API product, team, developer or app. */ export declare type attributes = Array<{ /** * Attribute name, access is a special value as it governs access control to the product. */ name: string; /** * Value of the attribute. */ value: string; }>;