Header¶
- 
class oci.waas.models.Header(**kwargs)¶
- Bases: - object- An HTTP header with name and value. - Methods - __init__(**kwargs)- Initializes a new Header object with values from keyword arguments. - Attributes - name- [Required] Gets the name of this Header. - value- [Required] Gets the value of this Header. - 
__init__(**kwargs)¶
- Initializes a new Header object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - name (str) – The value to assign to the name property of this Header.
- value (str) – The value to assign to the value property of this Header.
 
 - 
name¶
- [Required] Gets the name of this Header. The name of the header. - Returns: - The name of this Header. - Return type: - str 
 - 
value¶
- [Required] Gets the value of this Header. The value of the header. - Returns: - The value of this Header. - Return type: - str 
 
-