Skip to content

Commit

Permalink
feat: P4ADEV-1615 updated entity (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksiybozhykntt authored Dec 12, 2024
2 parents f4b4195 + 27757f4 commit 9d84bd8
Show file tree
Hide file tree
Showing 2 changed files with 123 additions and 119 deletions.
241 changes: 122 additions & 119 deletions openapi/generated.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -705,125 +705,6 @@
}
}
},
"PersonalisationFe": {
"type": "object",
"properties": {
"headerAssistanceUrl": {
"type": "string"
},
"footerDescText": {
"type": "string"
},
"footerPrivacyInfoUrl": {
"type": "string"
},
"footerGDPRUrl": {
"type": "string"
},
"footerTermsCondUrl": {
"type": "string"
},
"footerAccessibilityUrl": {
"type": "string"
}
}
},
"EntityModelBroker": {
"type": "object",
"properties": {
"brokerId": {
"type": "integer",
"format": "int64"
},
"organizationId": {
"type": "integer",
"format": "int64"
},
"brokerFiscalCode": {
"type": "string"
},
"brokerName": {
"type": "string"
},
"pagoPaInteractionModel": {
"type": "string",
"enum": [
"SYNC",
"SYNC_ACA",
"SYNC$GPDPRELOAD",
"SYNC_ACA$GPDPRELOAD",
"ASYNC_GPD"
]
},
"stationId": {
"type": "string"
},
"broadcastStationId": {
"type": "string"
},
"syncKey": {
"type": "string",
"format": "byte"
},
"gpdKey": {
"type": "string",
"format": "byte"
},
"acaKey": {
"type": "string",
"format": "byte"
},
"personalisationFe": {
"$ref": "#/components/schemas/PersonalisationFe"
},
"_links": {
"$ref": "#/components/schemas/Links"
}
}
},
"PageMetadata": {
"type": "object",
"properties": {
"size": {
"type": "integer",
"format": "int64"
},
"totalElements": {
"type": "integer",
"format": "int64"
},
"totalPages": {
"type": "integer",
"format": "int64"
},
"number": {
"type": "integer",
"format": "int64"
}
}
},
"PagedModelEntityModelBroker": {
"type": "object",
"properties": {
"_embedded": {
"type": "object",
"properties": {
"broker": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityModelBroker"
}
}
}
},
"_links": {
"$ref": "#/components/schemas/Links"
},
"page": {
"$ref": "#/components/schemas/PageMetadata"
}
}
},
"EntityModelOrganization": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -937,6 +818,27 @@
}
}
},
"PageMetadata": {
"type": "object",
"properties": {
"size": {
"type": "integer",
"format": "int64"
},
"totalElements": {
"type": "integer",
"format": "int64"
},
"totalPages": {
"type": "integer",
"format": "int64"
},
"number": {
"type": "integer",
"format": "int64"
}
}
},
"PagedModelEntityModelOrganization": {
"type": "object",
"properties": {
Expand All @@ -959,6 +861,107 @@
}
}
},
"PersonalisationFe": {
"type": "object",
"properties": {
"headerAssistanceUrl": {
"type": "string"
},
"logoFooterImg": {
"type": "string"
},
"footerDescText": {
"type": "string"
},
"footerPrivacyInfoUrl": {
"type": "string"
},
"footerGDPRUrl": {
"type": "string"
},
"footerTermsCondUrl": {
"type": "string"
},
"footerAccessibilityUrl": {
"type": "string"
}
}
},
"EntityModelBroker": {
"type": "object",
"properties": {
"brokerId": {
"type": "integer",
"format": "int64"
},
"organizationId": {
"type": "integer",
"format": "int64"
},
"brokerFiscalCode": {
"type": "string"
},
"brokerName": {
"type": "string"
},
"pagoPaInteractionModel": {
"type": "string",
"enum": [
"SYNC",
"SYNC_ACA",
"SYNC$GPDPRELOAD",
"SYNC_ACA$GPDPRELOAD",
"ASYNC_GPD"
]
},
"stationId": {
"type": "string"
},
"broadcastStationId": {
"type": "string"
},
"syncKey": {
"type": "string",
"format": "byte"
},
"gpdKey": {
"type": "string",
"format": "byte"
},
"acaKey": {
"type": "string",
"format": "byte"
},
"personalisationFe": {
"$ref": "#/components/schemas/PersonalisationFe"
},
"_links": {
"$ref": "#/components/schemas/Links"
}
}
},
"PagedModelEntityModelBroker": {
"type": "object",
"properties": {
"_embedded": {
"type": "object",
"properties": {
"broker": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EntityModelBroker"
}
}
}
},
"_links": {
"$ref": "#/components/schemas/Links"
},
"page": {
"$ref": "#/components/schemas/PageMetadata"
}
}
},
"BrokerRequestBody": {
"type": "object",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
public class PersonalisationFe implements Serializable {

private String headerAssistanceUrl;
private String logoFooterImg;
private String footerDescText;
private String footerPrivacyInfoUrl;
private String footerGDPRUrl;
Expand Down

0 comments on commit 9d84bd8

Please sign in to comment.