14 lines
		
	
	
		
			346 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			346 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export const relayerApiFeeRecipientsResponseSchema = {
 | 
						|
    id: '/relayerApiFeeRecipientsResponseSchema',
 | 
						|
    type: 'object',
 | 
						|
    allOf: [
 | 
						|
        { $ref: '/paginatedCollectionSchema' },
 | 
						|
        {
 | 
						|
            properties: {
 | 
						|
                records: { $ref: '/addressSchema' },
 | 
						|
            },
 | 
						|
            required: ['records'],
 | 
						|
        },
 | 
						|
    ],
 | 
						|
};
 |