export interface Hash {
    hash: HashDetails;
}
export interface HashDetails {
    '@alg': string;
    '#text': string;
}
