Package com.adyen.model.openbanking
Class Provider
- java.lang.Object
-
- com.adyen.model.openbanking.Provider
-
public class Provider extends Object
Provider
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_LOGO_U_R_Lstatic StringJSON_PROPERTY_NAME
-
Constructor Summary
Constructors Constructor Description Provider()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Return true if this Provider object is equal to o.static ProviderfromJson(String jsonString)Create an instance of Provider given an JSON stringStringgetLogoURL()The URL of the organization's or brand's logo.StringgetName()The official or commonly used name of the organization, brand, or entity.inthashCode()ProviderlogoURL(String logoURL)The URL of the organization's or brand's logo.Providername(String name)The official or commonly used name of the organization, brand, or entity.voidsetLogoURL(String logoURL)The URL of the organization's or brand's logo.voidsetName(String name)The official or commonly used name of the organization, brand, or entity.StringtoJson()Convert an instance of Provider to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_LOGO_U_R_L
public static final String JSON_PROPERTY_LOGO_U_R_L
- See Also:
- Constant Field Values
-
JSON_PROPERTY_NAME
public static final String JSON_PROPERTY_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
logoURL
public Provider logoURL(String logoURL)
The URL of the organization's or brand's logo. This URL typically points to an image file (e.g., .png, .jpg, .svg) that can be displayed to visually represent the entity.- Parameters:
logoURL- The URL of the organization's or brand's logo. This URL typically points to an image file (e.g., .png, .jpg, .svg) that can be displayed to visually represent the entity.- Returns:
- the current
Providerinstance, allowing for method chaining
-
getLogoURL
public String getLogoURL()
The URL of the organization's or brand's logo. This URL typically points to an image file (e.g., .png, .jpg, .svg) that can be displayed to visually represent the entity.- Returns:
- logoURL The URL of the organization's or brand's logo. This URL typically points to an image file (e.g., .png, .jpg, .svg) that can be displayed to visually represent the entity.
-
setLogoURL
public void setLogoURL(String logoURL)
The URL of the organization's or brand's logo. This URL typically points to an image file (e.g., .png, .jpg, .svg) that can be displayed to visually represent the entity.- Parameters:
logoURL- The URL of the organization's or brand's logo. This URL typically points to an image file (e.g., .png, .jpg, .svg) that can be displayed to visually represent the entity.
-
name
public Provider name(String name)
The official or commonly used name of the organization, brand, or entity.- Parameters:
name- The official or commonly used name of the organization, brand, or entity.- Returns:
- the current
Providerinstance, allowing for method chaining
-
getName
public String getName()
The official or commonly used name of the organization, brand, or entity.- Returns:
- name The official or commonly used name of the organization, brand, or entity.
-
setName
public void setName(String name)
The official or commonly used name of the organization, brand, or entity.- Parameters:
name- The official or commonly used name of the organization, brand, or entity.
-
equals
public boolean equals(Object o)
Return true if this Provider object is equal to o.
-
fromJson
public static Provider fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of Provider given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of Provider
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to Provider
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of Provider to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-